freebsd-ports/security/fakeident/Makefile
Mathieu Arnold f899c758a6 When there is a do-install target, do not use a post-install target, do
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
2016-07-19 11:04:13 +00:00

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>