wok annotate c_icap/receipt @ rev 11941

c_icap: Add initscript & fix configfile
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Mar 01 07:01:35 2012 +0100 (2012-03-01)
parents 055d964cbc4c
children 2142911d2464
rev   line source
erjo@11890 1 # SliTaz package receipt.
erjo@11890 2
erjo@11890 3 PACKAGE="c_icap"
erjo@11890 4 VERSION="0.1.7"
erjo@11890 5 CATEGORY="network"
erjo@11890 6 SHORT_DESC="Implementation of an ICAP server."
erjo@11890 7 MAINTAINER="erjo@slitaz.org"
erjo@11890 8 WEB_SITE="http://c-icap.sourceforge.net/"
erjo@11890 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@11890 10 WGET_URL="$SF_MIRROR/c-icap/$TARBALL"
erjo@11890 11
erjo@11890 12 DEPENDS=""
erjo@11890 13 BUILD_DEPENDS=""
erjo@11890 14
erjo@11890 15 # Rules to configure and make the package.
erjo@11890 16 compile_rules()
erjo@11890 17 {
erjo@11890 18 ./configure --sysconfdir=/etc/c-icap \
erjo@11890 19 --enable-large-files \
erjo@11890 20 $CONFIGURE_ARGS && make && make install
erjo@11890 21 }
erjo@11890 22
erjo@11890 23 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@11890 24 genpkg_rules()
erjo@11890 25 {
erjo@11941 26 mkdir -p $fs/usr/lib/$PACKAGE \
erjo@11941 27 $fs/etc/init.d
erjo@11941 28
erjo@11890 29 cp -a $install/usr/bin $fs/usr
erjo@11890 30 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@11890 31 cp -a $install/usr/lib/$PACKAGE/*.so* $fs/usr/lib/$PACKAGE
erjo@11890 32
erjo@11890 33 cp -pa $install/etc $fs/
erjo@11941 34 cp -pa $stuff/c-icapd $fs/etc/init.d
erjo@11890 35
erjo@11890 36 # Cleanup
erjo@11890 37 rm -f $fs/usr/bin/c-icap-config
erjo@11941 38
erjo@11941 39 # Fix config file
erjo@11941 40 sed -i -e "s|YourServerName|localhost|" \
erjo@11941 41 -e "s|/usr/var/log/|/var/log/c-icap|" \
erjo@11941 42 -e "s|/usr/etc|/etc/c-icap|" $fs/etc/c-icap/c-icap.conf
erjo@11941 43 chmod -x $fs/etc/c-icap/*
erjo@11941 44
erjo@11890 45 }
erjo@11941 46
erjo@11941 47 post_install()
erjo@11941 48 {
erjo@11941 49 [ -z $1 ] && /etc/init.d/c-icapd start
erjo@11941 50
erjo@11941 51 cat <<EOF
erjo@11941 52
erjo@11941 53 ----
erjo@11941 54 To start $PACKAGE server you can run :
erjo@11941 55
erjo@11941 56 /etc/init.d/$PACKAGE start
erjo@11941 57
erjo@11941 58 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf
erjo@11941 59 ----
erjo@11941 60 EOF
erjo@11941 61 }
erjo@11941 62
erjo@11941 63 pre_remove(){
erjo@11941 64
erjo@11941 65 echo "Stopping daemon..."
erjo@11941 66 if (ps | grep -q c-icap); then
erjo@11941 67 /etc/init.d/c-icapd stop
erjo@11941 68 fi
erjo@11941 69 }
erjo@11941 70 post_remove()
erjo@11941 71 {
erjo@11941 72 echo "Removing stalled files..."
erjo@11941 73 test -d /var/log/c-icap && rm -rf /var/log/c-icap
erjo@11941 74 test -d /usr/run/c-icap && rm -rf /usr/run/c-icap
erjo@11941 75 }