wok-next view samba-pam/receipt @ rev 11036
Up; sleuthkit to 3.2.3.
| author | Christopher Rogers <slaxemulator@gmail.com> | 
|---|---|
| date | Sun Oct 16 07:24:52 2011 +0000 (2011-10-16) | 
| parents | 7b13b3b4b836 | 
| children | 8e4c74abdf74 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="samba-pam"
     4 VERSION="3.5.8"
     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 openldap-dev cups cups-dev pam pam-dev"
    13 DEPENDS="libldap samba-common glibc-extra-samba ncursesw popt zlib smbfs acl pam perl cups krb5"
    14 SUGGESTED="gamin"
    15 CONFIG_FILES="/etc/samba"
    16 PROVIDE="samba:pam"
    17 BUGS="Open directory needs MIT kerberos support (krb5)"
    19 # Rules to configure and make the package.
    20 compile_rules()
    21 {
    22 	cd $src/source3
    23 	./configure --prefix=/usr --infodir=/usr/share/info \
    24 	--with-piddir=/var/run/samba --with-lockdir=/var/run/samba \
    25 	--with-winbind --with-ldap --with-fhs --enable-cups --enable-swat \
    26 	--enable-shared-libs --with-libtalloc --with-libtdb --with-cifsumount \
    27 	--with-libsmbsharemodes --with-libsmbclient \
    28 	--with-pam --with-pammodulesdir=/lib/security \
    29 	--sysconfdir=/etc --localstatedir=/var \
    30 	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    31 	make -j 4 &&
    32 	make DESTDIR=$DESTDIR install || return 1
    33 	#rm -f ../_pkg/usr/*bin/*.old
    34 	#ln -s libwbclient.so $PWD/../_pkg/usr/lib/libwbclient.so.0
    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 $WOK/$SOURCE/stuff/etc $fs
    48 	cat $WOK/$SOURCE/stuff/*.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 }