summaryrefslogtreecommitdiffstats
path: root/solaris/gen-prototypes.sh
diff options
context:
space:
mode:
authorDan Foster <dan.foster@bristol.ac.uk>2012-03-09 19:00:41 -0600
committerSol Jerome <sol.jerome@gmail.com>2012-03-09 19:00:41 -0600
commitfc5eb3232c2ca9479192b8fcff6e6c8c213ce291 (patch)
treea24fdac2ee62e924257737fe0a78b6b1088881b3 /solaris/gen-prototypes.sh
parent0e9e0b523ceeea001838ffd1279c71a7e0b59772 (diff)
downloadbcfg2-fc5eb3232c2ca9479192b8fcff6e6c8c213ce291.tar.gz
bcfg2-fc5eb3232c2ca9479192b8fcff6e6c8c213ce291.tar.bz2
bcfg2-fc5eb3232c2ca9479192b8fcff6e6c8c213ce291.zip
solaris: Fix building on Solaris 10
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'solaris/gen-prototypes.sh')
-rw-r--r--solaris/gen-prototypes.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/solaris/gen-prototypes.sh b/solaris/gen-prototypes.sh
new file mode 100644
index 000000000..ea0b4bb13
--- /dev/null
+++ b/solaris/gen-prototypes.sh
@@ -0,0 +1,24 @@
+#!/bin/sh
+cd build
+PP="./"`ls -1d lib/*`"/site-packages/"
+
+#bcfg2
+echo "i pkginfo=./pkginfo.bcfg2" > ../prototype.tmp
+find . | grep man[15] | pkgproto >> ../prototype.tmp
+echo "./bin" | pkgproto >> ../prototype.tmp
+echo "./bin/bcfg2" | pkgproto >> ../prototype.tmp
+echo "${PP}Bcfg2" | pkgproto >> ../prototype.tmp
+ls -1 ${PP}Bcfg2/*.py | pkgproto >> ../prototype.tmp
+find ${PP}Bcfg2/Client/ ! -name "*.pyc" | pkgproto >> ../prototype.tmp
+sed "s/`id | sed 's/uid=[0-9]*(\(.*\)) gid=[0-9]*(\(.*\))/\1 \2/'`/bin bin/" ../prototype.tmp > ../prototype.bcfg2
+
+#bcfg2-server
+echo "i pkginfo=./pkginfo.bcfg2-server" > ../prototype.tmp
+find . | grep man8 | pkgproto >> ../prototype.tmp
+find share/bcfg2 | pkgproto >> ../prototype.tmp
+echo "./bin" | pkgproto >> ../prototype.tmp
+ls -1 bin/bcfg2-* | pkgproto >> ../prototype.tmp
+find ${PP}Bcfg2/Server/ ! -name "*.pyc" | pkgproto >> ../prototype.tmp
+sed "s/`id | sed 's/uid=[0-9]*(\(.*\)) gid=[0-9]*(\(.*\))/\1 \2/'`/bin bin/" ../prototype.tmp > ../prototype.bcfg2-server
+
+rm ../prototype.tmp