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