diff options
author | joerg <joerg> | 2010-01-27 16:52:13 +0000 |
---|---|---|
committer | joerg <joerg> | 2010-01-27 16:52:13 +0000 |
commit | 3e260982685001c528721ed091cb7168a8fea3e4 (patch) | |
tree | 9d6ef92caa3f4da88fc91862fe8a5c808dff16ed /security/ssldump | |
parent | fdda69261d45ec9a6f1f1ae0abb87118c83d44e3 (diff) | |
download | pkgsrc-3e260982685001c528721ed091cb7168a8fea3e4.tar.gz |
DESTDIR support
Diffstat (limited to 'security/ssldump')
-rw-r--r-- | security/ssldump/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/ssldump/Makefile b/security/ssldump/Makefile index 4bf9fc6909c..e12362b80d8 100644 --- a/security/ssldump/Makefile +++ b/security/ssldump/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2010/01/17 12:02:44 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2010/01/27 16:55:04 joerg Exp $ # DISTNAME= ssldump-0.9b3 @@ -10,6 +10,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.rtfm.com/ssldump/ COMMENT= SSLv3/TLS network protocol analyzer +PKG_DESTDIR_SUPPORT= user-destdir + GNU_CONFIGURE= YES USE_TOOLS+= gmake @@ -18,6 +20,9 @@ CONFIGURE_ARGS+=--with-pcap-inc=${BUILDLINK_PREFIX.libpcap}/include \ --with-openssl-inc=${BUILDLINK_PREFIX.openssl}/include \ --with-openssl-lib=${BUILDLINK_PREFIX.openssl}/lib +INSTALL_MAKE_FLAGS+= BINDIR=${DESTDIR}${PREFIX}/sbin \ + MANDIR=${DESTDIR}${PREFIX}/${PKGMANDIR} + .include "../../net/libpcap/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |