diff options
author | pawel <pawel@FreeBSD.org> | 2013-12-21 03:31:11 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2013-12-21 03:31:11 +0800 |
commit | 2b48e6f477ad6dcfe10b71006dad258ed6a30933 (patch) | |
tree | 7cdaa51c08adb9c3c13cf01b53139f6cef7c69f7 | |
parent | 63ebfef77090f1ca8c5287bbd6b71f36a4a0ef2c (diff) | |
download | freebsd-ports-gnome-2b48e6f477ad6dcfe10b71006dad258ed6a30933.tar.gz freebsd-ports-gnome-2b48e6f477ad6dcfe10b71006dad258ed6a30933.tar.zst freebsd-ports-gnome-2b48e6f477ad6dcfe10b71006dad258ed6a30933.zip |
- Respect CC/CFLAGS
- Add LICENSE
- Support staging
PR: ports/184882
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
-rw-r--r-- | security/sniff/Makefile | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/security/sniff/Makefile b/security/sniff/Makefile index 7922f3a9adc7..41b2cebe3760 100644 --- a/security/sniff/Makefile +++ b/security/sniff/Makefile @@ -1,23 +1,30 @@ # Created by: Rick & Samu # $FreeBSD$ -PORTNAME= sniff -PORTVERSION= 1.0 -CATEGORIES= security -MASTER_SITES= LOCAL/fenner +PORTNAME= sniff +PORTVERSION= 1.0 +CATEGORIES= security +MASTER_SITES= LOCAL/fenner -MAINTAINER= ports@FreeBSD.org -COMMENT= Program to sniff logins and passwords +MAINTAINER= ports@FreeBSD.org +COMMENT= Program to sniff logins and passwords -MAN1= sniff.1 +LICENSE= GPLv2 -HAS_CONFIGURE= yes -CONFIGURE_SCRIPT= configure +GNU_CONFIGURE= yes -PLIST_FILES= sbin/sniff +PLIST_FILES= sbin/sniff man/man1/sniff.1.gz -NO_STAGE= yes post-patch: - @${REINPLACE_CMD} -e 's|PREFIX=/usr/local|PREFIX=${PREFIX}|g' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e \ + 's|^CC.*|CC=@CC@| ; \ + s|^CFLAGS.*|CFLAGS=@CFLAGS@| ; \ + s|^PREFIX.*|PREFIX=@PREFIX@|' ${WRKSRC}/Makefile.in + +do-install: + (cd ${WRKSRC} && ${INSTALL_PROGRAM} sniff \ + ${STAGEDIR}${PREFIX}/sbin) + (cd ${WRKSRC} && ${INSTALL_MAN} sniff.1 \ + ${STAGEDIR}${MANPREFIX}/man/man1) .include <bsd.port.mk> |