diff options
author | sergei <sergei@FreeBSD.org> | 2003-11-04 23:03:14 +0800 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2003-11-04 23:03:14 +0800 |
commit | 2b5d3420be6a794be5a941d3803f81b1544a8717 (patch) | |
tree | a2b59748d4f590568de6a1b20a156d4cc10c77c5 /dns/zonecheck/Makefile | |
parent | 00e300b46b642bd6a01b27e78a0eba4897564bac (diff) | |
download | freebsd-ports-gnome-2b5d3420be6a794be5a941d3803f81b1544a8717.tar.gz freebsd-ports-gnome-2b5d3420be6a794be5a941d3803f81b1544a8717.tar.zst freebsd-ports-gnome-2b5d3420be6a794be5a941d3803f81b1544a8717.zip |
- Update to 2.0.0b9
- Fix broken dependency
- Properly handle docs and respect NOPORTDOCS
PR: 58921
Submitted by: maintainer
Diffstat (limited to 'dns/zonecheck/Makefile')
-rw-r--r-- | dns/zonecheck/Makefile | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/dns/zonecheck/Makefile b/dns/zonecheck/Makefile index 3bdfd20ad3d2..70d39ad99c77 100644 --- a/dns/zonecheck/Makefile +++ b/dns/zonecheck/Makefile @@ -6,30 +6,34 @@ # PORTNAME= zonecheck -PORTVERSION= 2.0.0b7 +PORTVERSION= 2.0.0b9 CATEGORIES= dns ipv6 ruby MASTER_SITES= ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR= ${PORTNAME}/src EXTRACT_SUFX= .tgz MAINTAINER= janos.mohacsi@bsd.hu -COMMENT= Perform consistency checks on DNS zone files +COMMENT= Perform consistency checks on DNS zones -RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/gtk.so:${PORTSDIR}/x11-toolkits/ruby-gtk - -BROKEN= "Broken dependency; will be removed after Feb 2" +.if defined(WITH_X11) +RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/gtk2.so:${PORTSDIR}/x11-toolkits/ruby-gtk2 +.endif -WRKSRC= ${WRKDIR}/${PORTNAME} USE_GMAKE= yes USE_RUBY= yes -NO_BUILD= yes RUBY_VER= 1.8 -MAN1= zonecheck.1 +USE_RUBY_FEATURES= ruby18 -.include <bsd.port.pre.mk> +NO_BUILD= yes +WRKSRC= ${WRKDIR}/${PORTNAME} + +MAN1= zonecheck.1 +DOCS= BUGS INSTALL README TODO -.if ${RUBY_DEFAULT_VER} != ${RUBY_VER} -BROKEN= Broken dependency. This might be only a package building issue. The problem is that the default Ruby version for i386 is ${RUBY_DEFAULT_VER}, while the default version for the other architectures is ${RUBY_VER}. This port requires Ruby ${RUBY_VER}. If you are using the right Ruby version, please remove the BROKEN line from the Makefile and try again. +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |