diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-08-25 19:31:06 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-08-25 19:31:06 +0800 |
commit | ee6ae1324a70c62b3209c7981ecced86c064d0fa (patch) | |
tree | 3c3762f4dab8d57e191944019f1c6d30471b9688 /security | |
parent | 12ad1bd586d66eeb12d43432aaf48f411d649599 (diff) | |
download | freebsd-ports-gnome-ee6ae1324a70c62b3209c7981ecced86c064d0fa.tar.gz freebsd-ports-gnome-ee6ae1324a70c62b3209c7981ecced86c064d0fa.tar.zst freebsd-ports-gnome-ee6ae1324a70c62b3209c7981ecced86c064d0fa.zip |
- Add LICENSE
- Fix program installation
Approved by: portmgr blanket
Diffstat (limited to 'security')
-rw-r--r-- | security/fakeident/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/security/fakeident/Makefile b/security/fakeident/Makefile index 94c3e6a2cce3..2f0717bb0439 100644 --- a/security/fakeident/Makefile +++ b/security/fakeident/Makefile @@ -3,7 +3,7 @@ PORTNAME= fakeident PORTVERSION= 1.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= http://www.wa.apana.org.au/~dean/sources/ \ ftp://ftp.wa.apana.org.au/pub/pc/unix/packages/ @@ -11,13 +11,15 @@ MASTER_SITES= http://www.wa.apana.org.au/~dean/sources/ \ MAINTAINER= dean@odyssey.apana.org.au COMMENT= Tool that replies with a standard answer to incoming identd requests +LICENSE= GPLv2 # or later + PLIST_FILES= etc/rc.d/fakeident.sh sbin/identd do-build: ${CC} ${CFLAGS} -o ${WRKSRC}/identd ${WRKSRC}/identd.c do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/identd ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/identd ${STAGEDIR}${PREFIX}/sbin ${INSTALL_SCRIPT} ${FILESDIR}/fakeident.sh ${STAGEDIR}${PREFIX}/etc/rc.d .include <bsd.port.mk> |