freebsd-ports/net/doc/Makefile
Chris Piazza 35006c4895 Doc is an automated tool for verifying (to an extent) that a
domain is configured and functioning correctly.  It makes no
attempt to validate the data inside a domain, only the structure.

PR:		15256
Submitted by:	MIHIRA Yoshiro <sanpei@sanpei.org>
1999-12-04 20:43:27 +00:00

36 lines
845 B
Makefile

# New ports collection makefile for: doc
# Version required: 2.1.4
# Date created: 28 November 1999
# Whom: MIHIRA Yoshiro <sanpei@jp.FreeBSD.org>
#
# $FreeBSD$
#
DISTNAME= doc-2.1.4
CATEGORIES= net
MASTER_SITES= ftp://ftp.his.com/pub/brad/dns/
MAINTAINER= sanpei@jp.FreeBSD.org
AUX_DIR= lib/doc
AUX_FILES= doc1.awk doc3.awk doc4.awk INFO RFC.XXXX
MAN8= doc.8
do-build:
@${MV} ${WRKSRC}/doc ${WRKSRC}/doc.org
@${SED} -e 's|$${PREFIX}|${PREFIX}|g' -e 's|$${AUX_DIR}|${AUX_DIR}|g' ${WRKSRC}/doc.org \
> ${WRKSRC}/doc
do-install:
@${MKDIR} ${PREFIX}/${AUX_DIR}
@${INSTALL_SCRIPT} ${WRKSRC}/doc ${PREFIX}/bin/doc
@for file in ${AUX_FILES}; do \
${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/${AUX_DIR}/ ; \
done
.if !defined(NOPORTDOCS)
@${INSTALL_DATA} ${WRKSRC}/doc.8 ${PREFIX}/man/man8/doc.8
.endif
.include <bsd.port.mk>