Date: Fri, 20 Dec 2013 19:31:11 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337082 - head/security/sniff Message-ID: <201312201931.rBKJVBNd003907@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pawel Date: Fri Dec 20 19:31:11 2013 New Revision: 337082 URL: http://svnweb.freebsd.org/changeset/ports/337082 Log: - Respect CC/CFLAGS - Add LICENSE - Support staging PR: ports/184882 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Modified: head/security/sniff/Makefile (contents, props changed) Modified: head/security/sniff/Makefile ============================================================================== --- head/security/sniff/Makefile Fri Dec 20 19:25:49 2013 (r337081) +++ head/security/sniff/Makefile Fri Dec 20 19:31:11 2013 (r337082) @@ -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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312201931.rBKJVBNd003907>