wok-stable annotate samba/receipt @ rev 10595

samba: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 26 12:47:25 2011 +0200 (2011-05-26)
parents b921c461b865
children 6d9bce2a1a70
rev   line source
pascal@1250 1 # SliTaz package receipt.
pascal@1250 2
pascal@1250 3 PACKAGE="samba"
slaxemulator@9158 4 VERSION="3.5.8"
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@1250 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1250 9 WEB_SITE="http://samba.org/"
pascal@1250 10 WGET_URL="${WEB_SITE}$PACKAGE/ftp/stable/$TARBALL"
erjo@5147 11
pascal@5135 12 SUGGESTED="gamin cups perl"
pascal@1250 13 CONFIG_FILES="/etc/samba"
pascal@1250 14 BUGS="Open directory needs MIT kerberos support (krb5)"
pascal@1250 15
pascal@10595 16 BUILD_DEPENDS="openldap openldap-dev libcomerr-dev cups-dev talloc-dev pkg-config libldap"
pascal@10454 17 DEPENDS="libldap samba-common glibc-extra-samba ncursesw popt zlib smbfs acl krb5"
pascal@10454 18
pascal@1250 19 # Rules to configure and make the package.
pascal@1250 20 compile_rules()
pascal@1250 21 {
erjo@4784 22 cd $src/source3
pascal@1250 23 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1250 24 --with-piddir=/var/run/samba --with-lockdir=/var/run/samba \
pascal@1250 25 --with-winbind --with-ldap --with-fhs --enable-cups --enable-swat \
slaxemulator@7157 26 --enable-shared-libs --enable-external-libtalloc --with-libtdb --with-cifsumount \
pascal@2190 27 --with-libsmbsharemodes --with-libsmbclient --without-pam \
pascal@1250 28 --sysconfdir=/etc --localstatedir=/var \
slaxemulator@10342 29 --mandir=/usr/share/man $CONFIGURE_ARGS &&
slaxemulator@8460 30 make -j1 &&
slaxemulator@8458 31 make -j1 DESTDIR=$DESTDIR install || return 1
pascal@1520 32 rm -f ../_pkg/usr/*bin/*.old
erjo@4124 33 #ln -s libwbclient.so $PWD/../_pkg/usr/lib/libwbclient.so.0
pascal@1250 34 }
pascal@1250 35
pascal@1250 36 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1250 37 genpkg_rules()
pascal@1250 38 {
pascal@1250 39 mkdir -p $fs/usr
pascal@1250 40 cp -a $_pkg/etc $fs
pascal@1250 41 cp -a $_pkg/var $fs
pascal@1250 42 cp -a $_pkg/usr/lib $fs/usr
pascal@1250 43 cp -a $_pkg/usr/sbin $fs/usr
pascal@1250 44 cp -a $_pkg/usr/bin $fs/usr
slaxemulator@8928 45 cp -a $stuff/etc $fs
slaxemulator@8928 46 cat $stuff/*.files-list | while read file; do
pascal@1250 47 rm -rf $fs$file
pascal@1250 48 done
pascal@1250 49 }
pascal@1250 50
pascal@1250 51 # Pre and post install commands for Tazpkg.
pascal@1250 52 post_install()
pascal@1250 53 {
pascal@1250 54 cat <<EOF
pascal@1250 55 ----
pascal@1250 56 The main configuration file is /etc/samba/smb.conf
pascal@1250 57 ----
pascal@1250 58 To start $PACKAGE server you can run :
pascal@1250 59
pascal@1250 60 /etc/init.d/$PACKAGE start
pascal@1250 61
pascal@1250 62 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf
pascal@1250 63 ----
pascal@1250 64 EOF
pascal@1250 65 }