aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorlioux <lioux@FreeBSD.org>2003-06-12 09:48:29 +0800
committerlioux <lioux@FreeBSD.org>2003-06-12 09:48:29 +0800
commit3a89e6e88354361e97517b600a4efaa0ee2c3134 (patch)
tree0b574aec082ab0ed32dae894ebfd740cd3f417ae /devel
parenta363f52a10544f6acbf5179bf27d1167d7e18622 (diff)
downloadfreebsd-ports-gnome-3a89e6e88354361e97517b600a4efaa0ee2c3134.tar.gz
freebsd-ports-gnome-3a89e6e88354361e97517b600a4efaa0ee2c3134.tar.zst
freebsd-ports-gnome-3a89e6e88354361e97517b600a4efaa0ee2c3134.zip
o Use IGNORE instead of BROKEN: Port does not support 5.x branch
o Change check for 5.x branch from OSVERSION > 500000 to OSVERSION >= 500000 o Styles changes in post-install target PR: 53177 Submitted by: maintainer
Diffstat (limited to 'devel')
-rw-r--r--devel/ups-debug/Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/devel/ups-debug/Makefile b/devel/ups-debug/Makefile
index 03eb45e19595..b6a019a756c3 100644
--- a/devel/ups-debug/Makefile
+++ b/devel/ups-debug/Makefile
@@ -28,17 +28,15 @@ ONLY_FOR_ARCHS= i386
.include <bsd.port.pre.mk>
-.if ${OSVERSION} > 500000
-BROKEN= "Does not compile on 5.X"
+.if ${OSVERSION} >= 500000
+IGNORE= "does not currently support FreeBSD 5.x"
.endif
post-install:
+ @${INSTALL_DATA} ${WRKSRC}/Ups ${X11BASE}/lib/X11/app-defaults
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
-.for file in ${DOCS}
- ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
-.endfor
+ @cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
.endif
- ${INSTALL_DATA} ${WRKSRC}/Ups ${X11BASE}/lib/X11/app-defaults
.include <bsd.port.post.mk>