wok annotate c_icap/receipt @ rev 23983

linld: fix strtol
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 24 08:47:45 2020 +0000 (2020-11-24)
parents 0cf279b4394a
children 9af0e03b8ad0
rev   line source
erjo@11890 1 # SliTaz package receipt.
erjo@11890 2
erjo@11890 3 PACKAGE="c_icap"
Hans-G?nter@22576 4 VERSION="0.5.6"
erjo@11890 5 CATEGORY="network"
erjo@11890 6 SHORT_DESC="Implementation of an ICAP server."
erjo@11890 7 MAINTAINER="erjo@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
erjo@11890 9 WEB_SITE="http://c-icap.sourceforge.net/"
Hans-G?nter@20757 10
erjo@11890 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@11890 12 WGET_URL="$SF_MIRROR/c-icap/$TARBALL"
erjo@11890 13
erjo@11890 14 DEPENDS=""
erjo@11890 15 BUILD_DEPENDS=""
erjo@11890 16
erjo@11890 17 # Rules to configure and make the package.
erjo@11890 18 compile_rules()
erjo@11890 19 {
Hans-G?nter@22576 20 ./configure \
Hans-G?nter@22576 21 --sysconfdir=/etc/c-icap \
Hans-G?nter@22576 22 --enable-large-files \
Hans-G?nter@20757 23 $CONFIGURE_ARGS &&
Hans-G?nter@20757 24 make &&
Hans-G?nter@20757 25 make install
erjo@11890 26 }
erjo@11890 27
erjo@11890 28 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@11890 29 genpkg_rules()
erjo@11890 30 {
Hans-G?nter@22576 31 mkdir -p $fs/usr/lib/$PACKAGE
Hans-G?nter@22576 32 mkdir -p $fs/etc/init.d
Hans-G?nter@22576 33 mkdir -p $fs/var/log/c-icap
Hans-G?nter@22576 34
Hans-G?nter@22576 35 cp -a $install/usr/bin $fs/usr
Hans-G?nter@22576 36 cp -a $install/usr/lib/*.so* $fs/usr/lib
Hans-G?nter@22576 37 cp -a $install/usr/lib/$PACKAGE/*.so* $fs/usr/lib/$PACKAGE
Hans-G?nter@22576 38 cp -pa $install/etc $fs/
Hans-G?nter@22576 39 cp -pa $stuff/c-icapd $fs/etc/init.d
Hans-G?nter@22576 40
erjo@11890 41 # Cleanup
erjo@11890 42 rm -f $fs/usr/bin/c-icap-config
Hans-G?nter@22576 43
Hans-G?nter@22576 44 # Fix configuration file
Hans-G?nter@22576 45 sed -i -e "s|YourServerName|localhost|" \
Hans-G?nter@22576 46 -e "s|/usr/var/log|/var/log/c-icap/|" \
Hans-G?nter@22576 47 -e "s|/usr/var/run/|/var/run/c-icap|" \
Hans-G?nter@22576 48 -e "s|/usr/etc|/etc/c-icap|" \
Hans-G?nter@22576 49 $fs/etc/c-icap/c-icap.conf
erjo@11941 50 chmod -x $fs/etc/c-icap/*
erjo@11890 51 }
erjo@11941 52
erjo@11941 53 post_install()
erjo@11941 54 {
Hans-G?nter@22576 55 [ -z "$1" -a ! -s /aufs-umount.sh ] &&
Hans-G?nter@22576 56 /etc/init.d/c-icapd start
Hans-G?nter@22576 57
erjo@11941 58 cat <<EOF
erjo@11941 59
erjo@11941 60 ----
erjo@11941 61 To start $PACKAGE server you can run :
erjo@11941 62
erjo@11941 63 /etc/init.d/$PACKAGE start
erjo@11941 64
erjo@11941 65 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf
erjo@11941 66 ----
erjo@11941 67 EOF
erjo@11941 68 }
erjo@11941 69
Hans-G?nter@22576 70 pre_remove()
Hans-G?nter@22576 71 {
erjo@11941 72 echo "Stopping daemon..."
Hans-G?nter@22576 73 if (ps | grep -q c-icap)
Hans-G?nter@22576 74 then
pascal@17552 75 chroot "$1/" /etc/init.d/c-icapd stop
erjo@11941 76 fi
erjo@11941 77 }
Hans-G?nter@22576 78
erjo@11941 79 post_remove()
erjo@11941 80 {
erjo@11941 81 echo "Removing stalled files..."
pascal@18730 82 test -d "$1/var/log/c-icap" && rm -rf "$1/var/log/c-icap"
pascal@18730 83 test -d "$1/usr/run/c-icap" && rm -rf "$1/usr/run/c-icap"
erjo@11941 84 }