freebsd-ports/www/jdresolve/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

38 lines
970 B
Makefile

# Created by: Christophe Labouisse <christophe@labouisse.org>
# $FreeBSD$
PORTNAME= jdresolve
PORTVERSION= 0.6.1
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://www.jdrowell.com/projects/jdresolve/
PATCH_SITES= ${MASTER_SITES}
PATCHFILES= patch-0.6.2b1.diff
MAINTAINER= christophe@labouisse.org
COMMENT= IP addresse to hostname program for httpd log files
BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS
RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= perl5 shebangfix
NO_BUILD= yes
SHEBANG_FILES= jdresolve
DOC1= AUTHORS BUGS CHANGELOG COPYING CREDITS INSTALL README TODO
OPTIONS_DEFINE= DOCS
do-install:
.for file in jdresolve rhost
${INSTALL_SCRIPT} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${file}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
.endfor
post-install-DOCS-on:
${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/jdresolve
.for i in ${DOC1}
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/share/doc/jdresolve
.endfor
.include <bsd.port.mk>