f899c758a6
everything at once. Sometime, rename post-install into a options helper target. I did not fix ports that were such a mess that I could not figure out what they really wanted to do. I also did not change ports that had some version of an auto-plist code in post-install, for the same reason. With hat: portmgr Sponsored by: Absolight
27 lines
588 B
Makefile
27 lines
588 B
Makefile
# Created by: Dean Hollister <dean@odyssey.apana.org.au>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fakeident
|
|
PORTVERSION= 1.7
|
|
PORTREVISION= 3
|
|
CATEGORIES= security
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
EXTRACT_ONLY= # empty
|
|
|
|
MAINTAINER= dean@odyssey.apana.org.au
|
|
COMMENT= Tool that replies with a standard answer to incoming identd requests
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
PLIST_FILES= sbin/identd
|
|
USE_RC_SUBR= fakeidentd
|
|
|
|
do-build:
|
|
@${MKDIR} ${WRKSRC}
|
|
${CC} ${CFLAGS} -o ${WRKSRC}/identd ${FILESDIR}/identd.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/identd ${STAGEDIR}${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|