]> gitweb.fluxo.info Git - slackbuilds.git/commitdiff
postgresql: added init script ; clamav small fix
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>
Mon, 30 Oct 2006 13:51:55 +0000 (13:51 +0000)
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>
Mon, 30 Oct 2006 13:51:55 +0000 (13:51 +0000)
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@546 370017ae-e619-0410-ac65-c121f96126d4

clamav/clamav.SlackBuild
postgresql/postgresql.SlackBuild

index 7561a0587102ace5881b81c88c3bd4a1cfa6a78f..c4af9541c883beccba5dfef76e86ec40a253dbb8 100755 (executable)
@@ -123,7 +123,6 @@ echo '( if ! grep -qe "^clamav:" etc/group; then echo creating group clamav... ;
 echo '( if ! grep -qe "^clamav:" etc/passwd; then echo creating user clamav... ; chroot . /usr/sbin/useradd clamav -g clamav; fi )' >> install/doinst.sh
 echo '( if [ ! -f "etc/clamd.conf" ]; then mv etc/clamd.conf.new etc/clamd.conf; fi )' >> install/doinst.sh
 echo '( if [ ! -f "etc/freshclam.conf" ]; then mv etc/freshclam.conf.new etc/freshclam.conf; fi )' >> install/doinst.sh
-echo '( mkdir -p var/log/munin var/run/munin var/munin )' >> install/doinst.sh
 
 makepkg -c y -l y $REPOS/$PACKAGE-$VERSION-$ARCH-$BUILD.tgz
 
index d6f0065f1f6ee94b6fc068ee977781be043fc1e6..d008a5a55a7ad27cd3728800c6d16bb5e8f66e16 100755 (executable)
@@ -83,7 +83,7 @@ if [ -f "$CWD/$PACKAGE-$VERSION.diff" ]; then
   patch -p1 < $CWD/$PACKAGE-$VERSION.diff || exit $ERROR_PATCH
 fi
 
-./configure --prefix=/usr --sysconfdir=/etc --libdir=$LIBDIR || exit $ERROR_CONF
+./configure --prefix=/usr --sysconfdir=/etc --libdir=$LIBDIR --enable-thread-safety || exit $ERROR_CONF
 make || exit $ERROR_MAKE
 make DESTDIR=$TMP/package-$PACKAGE install || exit $ERROR_INSTALL
 
@@ -91,6 +91,12 @@ CWD="`pwd`"
 
 cd $TMP/package-$PACKAGE
 
+mkdir -p etc/rc.d
+sed -e 's/\/usr\/local\/pgsql\/data/\/var\/lib\/pgsql\/data/' \
+    -e 's/\/usr\/local\/pgsql/\/usr/' $CWD/contrib/start-scripts/linux > etc/rc.d/rc.postgresql.new
+
+chmod 755 etc/rc.d/rc.postgresql.new
+
 find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
 find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
 
@@ -126,6 +132,11 @@ for file in $DOCS; do
   cp $CWD/$file* usr/doc/$PACKAGE-$VERSION/
 done
 
+# install script
+echo '( if ! grep -qe "^postgres:" etc/group; then echo creating group postgres... ; chroot . /usr/sbin/groupadd postgres; fi )' >> install/doinst.sh
+echo '( if ! grep -qe "^postgres:" etc/passwd; then echo creating user postgres... ; chroot . /usr/sbin/useradd postgres -g postgres; fi )' >> install/doinst.sh
+echo '( if [ ! -f "etc/rc.d/rc.postgresql" ]; then mv etc/rc.d/rc.postgresql.new etc/rc.d/rc.postgresql; fi )' >> install/doinst.sh
+
 makepkg -c y -l y $REPOS/$PACKAGE-$VERSION-$ARCH-$BUILD.tgz || exit $ERROR_MKPKG
 
 if [ "$CLEANUP" == "yes" ]; then