wok view samba-pam/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents 8e4c74abdf74
children e9130cce9043
line source
1 # SliTaz package receipt.
3 PACKAGE="samba-pam"
4 VERSION="3.6.7"
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 cifs-utils 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 \
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 $MAKEFLAGS &&
32 make DESTDIR=$DESTDIR install || return 1
33 #rm -f $DESTDIR/usr/*bin/*.old
34 #ln -s libwbclient.so $DESTDIR/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 $install/etc $fs
42 cp -a $install/var $fs
43 cp -a $install/lib $fs
44 cp -a $install/usr/lib $fs/usr
45 cp -a $install/usr/sbin $fs/usr
46 cp -a $install/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 }