1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00
freebsd-ports/dns/dnsdoctor/Makefile
Thomas Abthorpe b2d4b657d1 - Change MAINTAINER address
- Trim headers while I am here
- Clean up some trailing whitespace
2013-01-09 19:50:06 +00:00

52 lines
1.1 KiB
Makefile

# Created by: Janos.Mohacsi@bsd.hu
# $FreeBSD$
PORTNAME= dnsdoctor
PORTVERSION= 1.0.1
CATEGORIES= dns ipv6 ruby
MASTER_SITES= http://www.dnsdoctor.org/download/src/
EXTRACT_SUFX= .tgz
MAINTAINER= jmohacsi@bsd.hu
COMMENT= Perform consistency checks on DNS zones
.if defined(WITH_X11)
RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/gtk2.so:${PORTSDIR}/x11-toolkits/ruby-gtk2
.endif
USE_RUBY= yes
RUBY_VER= 1.8
USE_RUBY_FEATURES= ruby18
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
MAN1= dnsdoctor.1
DOCS= INSTALL README HISTORY doc/*.html doc/*.png
DNSDOCTOR_TARGET= configure common cli
.if defined(WITH_DNSDOCTOR_CGI)
DNSDOCTOR_TARGET+= cgi
PLIST_SUB+= DNSDOCTOR_CGI=""
.else
PLIST_SUB+= DNSDOCTOR_CGI="@comment "
pre-everything::
@${ECHO_MSG} "Use WITH_DNSDOCTOR_CGI=yes to install with CGI support"
.endif
do-install:
@cd ${INSTALL_WRKSRC} && \
${RUBY} ./installer.rb ${DNSDOCTOR_TARGET} \
-DETCDIST='-dist' -DRUBY="${RUBY}" -DPREFIX="${PREFIX}" \
-DWWWDIR="${PREFIX}/www/${PORTNAME}"
.if !defined(NOPORTDOCS)
post-install:
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>