diff options
author | hubertf <hubertf@pkgsrc.org> | 1998-03-30 09:57:56 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1998-03-30 09:57:56 +0000 |
commit | c4005c293c4effd525abf5e7c5bc6b0a150b39e2 (patch) | |
tree | cbe3bd77af1ba6a95776548d8d4d0d8652beb8f7 /net/sniffit/Makefile | |
parent | 2d4d23edaeb426107af5ee87b8a432d39eec9a10 (diff) | |
download | pkgsrc-c4005c293c4effd525abf5e7c5bc6b0a150b39e2.tar.gz |
Fix for NetBSD
Diffstat (limited to 'net/sniffit/Makefile')
-rw-r--r-- | net/sniffit/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/net/sniffit/Makefile b/net/sniffit/Makefile index db2411b978d..4171b9c8ae0 100644 --- a/net/sniffit/Makefile +++ b/net/sniffit/Makefile @@ -3,23 +3,26 @@ # Date created: 28 Mar 1998 # Whom: bsdx # -# $NetBSD: Makefile,v 1.1 1998/03/30 08:47:37 hubertf Exp $ +# $NetBSD: Makefile,v 1.2 1998/03/30 09:57:56 hubertf Exp $ # FreeBSD # DISTNAME= sniffit.0.3.5 +PKGNAME= sniffit-0.3.5 CATEGORIES= security MASTER_SITES= http://reptile.rug.ac.be/~coder/sniffit/files/ MAINTAINER= packages@netbsd.org +MAN5= sniffit.5 +MAN8= sniffit.8 do-build: cd ${WRKSRC} ; ./configure ; make do-install: - cd ${WRKSRC} ; cp sniffit ${PREFIX}/sbin/sniffit - chmod 555 ${PREFIX}/sbin/sniffit - chown bin.bin ${PREFIX}/sbin/sniffit + ${INSTALL_PROGRAM} ${WRKSRC}/sniffit ${PREFIX}/sbin/sniffit + ${INSTALL_MAN} ${WRKSRC}/sniffit.5 ${PREFIX}/man/man5 + ${INSTALL_MAN} ${WRKSRC}/sniffit.8 ${PREFIX}/man/man8 .include <bsd.port.mk> |