wok-current annotate libwrap/receipt @ rev 15600
Add some licenses
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Dec 05 15:25:09 2013 +0000 (2013-12-05) |
parents | d1768332cee0 |
children | 4abbe39ea1e2 |
rev | line source |
---|---|
erjo@286 | 1 # SliTaz package receipt. |
erjo@286 | 2 |
erjo@286 | 3 PACKAGE="libwrap" |
erjo@286 | 4 VERSION="7.6" |
erjo@286 | 5 CATEGORY="system-tools" |
erjo@286 | 6 SHORT_DESC="Wietse Venema's network logger." |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15600 | 8 LICENSE="BSD" |
erjo@286 | 9 SOURCE="tcp_wrappers" |
erjo@286 | 10 TARBALL="${SOURCE}_${VERSION}.tar.gz" |
erjo@286 | 11 WEB_SITE="ftp://ftp.porcupine.org/pub/security/index.html" |
erjo@286 | 12 WGET_URL="ftp://ftp.porcupine.org/pub/security/$TARBALL" |
erjo@286 | 13 |
erjo@286 | 14 # Rules to configure and make the package. |
erjo@286 | 15 compile_rules() |
erjo@286 | 16 { |
erjo@286 | 17 cd $src |
erjo@286 | 18 # Patch from Linux From Scratch |
pascal@1448 | 19 [ -f done.tcp_wrappers-7.6-shared_lib_plus_plus-1.patch ] || |
slaxemulator@9700 | 20 patch -p1 -i $stuff/tcp_wrappers-7.6-shared_lib_plus_plus-1.patch |
pascal@1448 | 21 touch done.tcp_wrappers-7.6-shared_lib_plus_plus-1.patch |
erjo@286 | 22 sed -i -e "s,^extern char \*malloc();,/* & */," scaffold.c |
erjo@286 | 23 |
erjo@286 | 24 make REAL_DAEMON_DIR=/usr/sbin STYLE=-DPROCESS_OPTIONS linux |
erjo@286 | 25 } |
erjo@286 | 26 |
erjo@286 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@286 | 28 genpkg_rules() |
erjo@286 | 29 { |
erjo@286 | 30 mkdir -p $fs/usr/lib |
erjo@286 | 31 cp -a $src/shared/*.so* $fs/usr/lib |
erjo@286 | 32 } |
erjo@286 | 33 |
erjo@286 | 34 clean_wok() |
erjo@286 | 35 { |
erjo@286 | 36 rm -rf $PWD/${SOURCE}_${VERSION} |
erjo@286 | 37 } |