wok-next rev 6390
Fixed openssl and nmap. Added depends that are need for nmap to build. Enable md2 in openssl to fix nmap compiling problems.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Sep 23 22:53:20 2010 +0000 (2010-09-23) |
parents | abe84aa3f283 |
children | c33e161d1fdb |
files | nmap/receipt openssl/receipt |
line diff
1.1 --- a/nmap/receipt Thu Sep 23 18:31:29 2010 +0000 1.2 +++ b/nmap/receipt Thu Sep 23 22:53:20 2010 +0000 1.3 @@ -5,8 +5,8 @@ 1.4 CATEGORY="security" 1.5 SHORT_DESC="The Network Mapper." 1.6 MAINTAINER="erjo@slitaz.org" 1.7 -DEPENDS="openssl pcre gcc-lib-base" 1.8 -BUILD_DEPENDS="python-dev" 1.9 +DEPENDS="openssl lua libpcap pcre gcc-lib-base" 1.10 +BUILD_DEPENDS="$DEPENDS python-dev lua-dev openssl-dev pcre-dev" 1.11 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.12 WEB_SITE="http://nmap.org/" 1.13 WGET_URL="http://download.insecure.org/nmap/dist/$TARBALL" 1.14 @@ -19,7 +19,8 @@ 1.15 ./configure --prefix=/usr \ 1.16 --infodir=/usr/share/info \ 1.17 --cache-file=$PWD/config.cache \ 1.18 - --mandir=/usr/share/man $CONFIGURE_ARGS && 1.19 + --mandir=/usr/share/man \ 1.20 + --without-liblua $CONFIGURE_ARGS && 1.21 make -j 4 && 1.22 make DESTDIR=$PWD/_pkg install-nmap 1.23 }
2.1 --- a/openssl/receipt Thu Sep 23 18:31:29 2010 +0000 2.2 +++ b/openssl/receipt Thu Sep 23 22:53:20 2010 +0000 2.3 @@ -9,7 +9,7 @@ 2.4 WEB_SITE="http://www.openssl.org/" 2.5 WGET_URL="http://www.openssl.org/source/$TARBALL" 2.6 DEPENDS="libcrypto libssl" 2.7 -BUILD_DEPENDS="perl" 2.8 +BUILD_DEPENDS="perl zlib-dev" 2.9 TAGS="ssl security" 2.10 2.11 # Rules to configure and make the package. 2.12 @@ -21,7 +21,7 @@ 2.13 # see http://marc.info/?l=openssl-dev&m=128118163216952&w=2 2.14 # and http://marc.info/?l=openssl-dev&m=128128256314328&w=2 2.15 patch -p0 -i ../stuff/fix-double-free.patch 2.16 - ./config --prefix=/usr --openssldir=/etc/ssl shared 2.17 + ./config --prefix=/usr --openssldir=/etc/ssl shared zlib enable-md2 2.18 sed -i 's/\(basename .*\)`/\1 || true `/' Makefile 2.19 make && 2.20 make INSTALL_PREFIX=$PWD/_pkg MANDIR=$PWD/_pkg/usr/share/man install