wok annotate c_icap/receipt @ rev 14657

Normalize LICENSE according to wok/licenses package (bsd part)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 05 16:21:04 2013 +0200 (2013-06-05)
parents 95e0d6cca290
children 76b72f1ad63c
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@11998 27 $fs/etc/init.d \
erjo@11998 28 $fs/var/log/c-icap \
erjo@11998 29 $fs/var/run/c-icap
erjo@11998 30
erjo@11890 31 cp -a $install/usr/bin $fs/usr
erjo@11890 32 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@11890 33 cp -a $install/usr/lib/$PACKAGE/*.so* $fs/usr/lib/$PACKAGE
erjo@11890 34
erjo@11890 35 cp -pa $install/etc $fs/
erjo@11941 36 cp -pa $stuff/c-icapd $fs/etc/init.d
erjo@11890 37
erjo@11890 38 # Cleanup
erjo@11890 39 rm -f $fs/usr/bin/c-icap-config
erjo@11941 40
erjo@11941 41 # Fix config file
erjo@11941 42 sed -i -e "s|YourServerName|localhost|" \
erjo@11998 43 -e "s|/usr/var/log|/var/log/c-icap/|" \
erjo@11998 44 -e "s|/usr/var/run/|/var/run/c-icap|" \
erjo@11941 45 -e "s|/usr/etc|/etc/c-icap|" $fs/etc/c-icap/c-icap.conf
erjo@11941 46 chmod -x $fs/etc/c-icap/*
erjo@11941 47
erjo@11890 48 }
erjo@11941 49
erjo@11941 50 post_install()
erjo@11941 51 {
erjo@11941 52 [ -z $1 ] && /etc/init.d/c-icapd start
erjo@11941 53
erjo@11941 54 cat <<EOF
erjo@11941 55
erjo@11941 56 ----
erjo@11941 57 To start $PACKAGE server you can run :
erjo@11941 58
erjo@11941 59 /etc/init.d/$PACKAGE start
erjo@11941 60
erjo@11941 61 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf
erjo@11941 62 ----
erjo@11941 63 EOF
erjo@11941 64 }
erjo@11941 65
erjo@11941 66 pre_remove(){
erjo@11941 67
erjo@11941 68 echo "Stopping daemon..."
erjo@11941 69 if (ps | grep -q c-icap); then
erjo@11941 70 /etc/init.d/c-icapd stop
erjo@11941 71 fi
erjo@11941 72 }
erjo@11941 73 post_remove()
erjo@11941 74 {
erjo@11941 75 echo "Removing stalled files..."
erjo@11941 76 test -d /var/log/c-icap && rm -rf /var/log/c-icap
erjo@11941 77 test -d /usr/run/c-icap && rm -rf /usr/run/c-icap
erjo@11941 78 }