wok view netatalk-pam/receipt @ rev 4353

Update: java-* - remove files that are already in dependent packages
author Matthew Sheets <rcx@zoominternet.net>
date Sat Oct 03 22:00:35 2009 +0000 (2009-10-03)
parents 2c679ce49f4c
children 5b44af8c1257
line source
1 # SliTaz package receipt.
3 PACKAGE="netatalk-pam"
4 VERSION="2.0.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="The AppleTalk Protocol Suite using PAM."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 DEPENDS="perl libdb libcrypto cups gnutls libgcrypt libgpg-error \
9 libwrap zlib pam"
10 BUILD_DEPENDS="db-dev libcrypto-dev pam pam-dev"
11 SOURCE="netatalk"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WEB_SITE="http://netatalk.sourceforge.net/"
14 WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL"
15 CONFIG_FILES="/etc/netatalk/AppleVolumes.* /etc/netatalk/*.conf"
16 PROVIDE="netatalk:pam"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 [ -f done.netatalk-2.0.3-newer-db.patch ] || \
23 patch -p1 < ../../$SOURCE/stuff/netatalk-2.0.3-newer-db.patch
24 touch done.netatalk-2.0.3-newer-db.patch
25 ./configure --with-pam --prefix=/usr --sysconfdir=/etc \
26 --libexecdir=/usr/lib/netatalk \
27 --mandir=/usr/share/man $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/share $fs/usr/lib
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/sbin $fs/usr
38 cp -a $_pkg/usr/lib/netatalk $fs/usr/lib
39 cp -a $_pkg/etc $fs
40 cp -a stuff/etc $fs
41 rm -f $fs/etc/netatalk/uams/*a
42 }
44 # Pre and post install commands for Tazpkg.
45 post_install()
46 {
47 cat <<EOF
48 ----
49 To start $PACKAGE server you can run :
51 /etc/init.d/$PACKAGE start
53 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf
54 ----
55 EOF
56 }