wok annotate samba-pam/receipt @ rev 15145
expect: filter wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Aug 15 12:52:35 2013 +0000 (2013-08-15) |
parents | 2b9f96603415 |
children | 02b1ad052225 |
rev | line source |
---|---|
pascal@2190 | 1 # SliTaz package receipt. |
pascal@2190 | 2 |
pascal@2190 | 3 PACKAGE="samba-pam" |
slaxemulator@13268 | 4 VERSION="3.6.7" |
pascal@2190 | 5 CATEGORY="system-tools" |
pascal@2190 | 6 SHORT_DESC="File and print services with SMB/CIFS using PAM." |
pascal@2190 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14999 | 8 LICENSE="GPL3" |
pascal@2190 | 9 SOURCE="samba" |
pascal@2190 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@2190 | 11 WEB_SITE="http://samba.org/" |
pascal@2192 | 12 WGET_URL="${WEB_SITE}$SOURCE/ftp/stable/$TARBALL" |
pascal@14772 | 13 TAZPANEL_DAEMON="man::samba|edit::/etc/samba/smb.conf|web::$WEB_SITE" |
pascal@2610 | 14 SUGGESTED="gamin" |
pascal@2190 | 15 CONFIG_FILES="/etc/samba" |
pascal@2190 | 16 PROVIDE="samba:pam" |
pascal@2190 | 17 BUGS="Open directory needs MIT kerberos support (krb5)" |
pascal@2190 | 18 |
pascal@15038 | 19 BUILD_DEPENDS="libldap openldap openldap-dev cups cups-dev pam pam-dev krb5" |
pascal@14772 | 20 DEPENDS="libldap samba-common glibc-extra-samba ncursesw popt zlib cifs-utils acl pam perl cups krb5" |
pascal@14772 | 21 |
pascal@2190 | 22 # Rules to configure and make the package. |
pascal@2190 | 23 compile_rules() |
pascal@2190 | 24 { |
erjo@4784 | 25 cd $src/source3 |
pascal@2190 | 26 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@2190 | 27 --with-piddir=/var/run/samba --with-lockdir=/var/run/samba \ |
pascal@2190 | 28 --with-winbind --with-ldap --with-fhs --enable-cups --enable-swat \ |
slaxemulator@13268 | 29 --enable-shared-libs --with-libtalloc --with-libtdb \ |
pascal@2190 | 30 --with-libsmbsharemodes --with-libsmbclient \ |
pascal@2190 | 31 --with-pam --with-pammodulesdir=/lib/security \ |
pascal@2190 | 32 --sysconfdir=/etc --localstatedir=/var \ |
pascal@2190 | 33 --mandir=/usr/share/man $CONFIGURE_ARGS && |
gokhlayeh@11574 | 34 make $MAKEFLAGS && |
slaxemulator@10342 | 35 make DESTDIR=$DESTDIR install || return 1 |
slaxemulator@13268 | 36 #rm -f $DESTDIR/usr/*bin/*.old |
slaxemulator@13268 | 37 #ln -s libwbclient.so $DESTDIR/usr/lib/libwbclient.so.0 |
pascal@2190 | 38 } |
pascal@2190 | 39 |
pascal@2190 | 40 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2190 | 41 genpkg_rules() |
pascal@2190 | 42 { |
pascal@2190 | 43 mkdir -p $fs/usr |
slaxemulator@13268 | 44 cp -a $install/etc $fs |
slaxemulator@13268 | 45 cp -a $install/var $fs |
slaxemulator@13268 | 46 cp -a $install/lib $fs |
slaxemulator@13268 | 47 cp -a $install/usr/lib $fs/usr |
slaxemulator@13268 | 48 cp -a $install/usr/sbin $fs/usr |
slaxemulator@13268 | 49 cp -a $install/usr/bin $fs/usr |
slaxemulator@10342 | 50 cp -a $WOK/$SOURCE/stuff/etc $fs |
slaxemulator@10342 | 51 cat $WOK/$SOURCE/stuff/*.files-list | while read file; do |
pascal@2190 | 52 rm -rf $fs$file |
pascal@2190 | 53 done |
pascal@2190 | 54 } |
pascal@2190 | 55 |
pascal@2190 | 56 # Pre and post install commands for Tazpkg. |
pascal@2190 | 57 post_install() |
pascal@2190 | 58 { |
pascal@2190 | 59 cat <<EOF |
pascal@2190 | 60 ---- |
pascal@2190 | 61 The main configuration file is /etc/samba/smb.conf |
pascal@2190 | 62 ---- |
pascal@2190 | 63 To start $PACKAGE server you can run : |
pascal@2190 | 64 |
pascal@2190 | 65 /etc/init.d/$PACKAGE start |
pascal@2190 | 66 |
pascal@2190 | 67 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf |
pascal@2190 | 68 ---- |
pascal@2190 | 69 EOF |
pascal@2190 | 70 } |