mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
563f09302e
- New MASTER_SITES, old one gone - provide a new web site - add license (BSD 2 clause) - take MAINTAINER, currently ports@ - pkg-descr - additions, and reflow PR: 211412 Submitted by: Chris Hutchinson <portmaster@bsdforge.com>
36 lines
770 B
Makefile
36 lines
770 B
Makefile
# Created by: bkhl
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sheerdns
|
|
PORTVERSION= 1.04
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://bsdforge.com/projects/source/dns/sheerdns/
|
|
|
|
MAINTAINER= portmaster@BSDforge.com
|
|
COMMENT= Lightweight, simple, and fast master DNS server
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILES= ${WRKSRC}/LICENSE
|
|
|
|
DOCS= sheerdns.ps sheerdns.html
|
|
PORTDOCS= *
|
|
|
|
USES= gmake tar:xz
|
|
|
|
PLIST_FILES= man/man8/sheerdns.8.gz sbin/sheerdns sbin/sheerdnshash
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_DEFAULT= DOCS
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/sheerdns
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/sheerdnshash
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|