wok view samba-pam/receipt @ rev 2510

qemu: update depends
author Julien Rabier <taziden@slitaz.org>
date Mon Mar 16 16:44:07 2009 +0100 (2009-03-16)
parents 03359dbf979c
children b51677fcfa18
line source
1 # SliTaz package receipt.
3 PACKAGE="samba-pam"
4 VERSION="3.2.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="File and print services with SMB/CIFS using PAM."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 SOURCE="samba"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://samba.org/"
11 WGET_URL="${WEB_SITE}$SOURCE/ftp/stable/$TARBALL"
12 BUILD_DEPENDS="libldap openldap-dev cups cups-dev pam pam-dev"
13 DEPENDS="libldap smbclient perl cups glibc-extra-samba ncurses popt zlib pam"
14 CONFIG_FILES="/etc/samba"
15 PROVIDE="samba:pam"
16 BUGS="Open directory needs MIT kerberos support (krb5)"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src/source
22 ./configure --prefix=/usr --infodir=/usr/share/info \
23 --with-piddir=/var/run/samba --with-lockdir=/var/run/samba \
24 --with-winbind --with-ldap --with-fhs --enable-cups --enable-swat \
25 --enable-shared-libs --with-libtalloc --with-libtdb \
26 --with-libsmbsharemodes --with-libsmbclient \
27 --with-pam --with-pammodulesdir=/lib/security \
28 --sysconfdir=/etc --localstatedir=/var \
29 --mandir=/usr/share/man $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$PWD/../_pkg install || return 1
32 rm -f ../_pkg/usr/*bin/*.old
33 ln -s libwbclient.so $PWD/../_pkg/usr/lib/libwbclient.so.0
34 cp ../../../$SOURCE/stuff/*.files-list ..
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr
41 cp -a $_pkg/etc $fs
42 cp -a $_pkg/var $fs
43 cp -a $_pkg/lib $fs
44 cp -a $_pkg/usr/lib $fs/usr
45 cp -a $_pkg/usr/sbin $fs/usr
46 cp -a $_pkg/usr/bin $fs/usr
47 cp -a ../$SOURCE/stuff/etc $fs
48 cat $src/*.files-list | while read file; do
49 rm -rf $fs$file
50 done
51 }
53 # Pre and post install commands for Tazpkg.
54 post_install()
55 {
56 cat <<EOF
57 ----
58 The main configuration file is /etc/samba/smb.conf
59 ----
60 To start $PACKAGE server you can run :
62 /etc/init.d/$PACKAGE start
64 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf
65 ----
66 EOF
67 }