diff options
author | sf <sf@FreeBSD.org> | 2001-05-30 15:23:57 +0000 |
---|---|---|
committer | sf <sf@FreeBSD.org> | 2001-05-30 15:23:57 +0000 |
commit | cd8dab9c1cbc9dfc4919f8d365e6ffd42c987058 (patch) | |
tree | 0e89f9e9446816a680c36c9cfd03b68d10fed0c4 /x11/wrapper | |
parent | 329117b7a60f8c4858cf46fc68aa187daa627641 (diff) | |
download | FreeBSD-ports-cd8dab9c1cbc9dfc4919f8d365e6ffd42c987058.zip FreeBSD-ports-cd8dab9c1cbc9dfc4919f8d365e6ffd42c987058.tar.gz |
mark as FORBIDDEN if ${XFREE86_VERSION} == 3.
add dummy MASTER_SITES and DISTFILES to make portlint happy.
Diffstat (limited to 'x11/wrapper')
-rw-r--r-- | x11/wrapper/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/x11/wrapper/Makefile b/x11/wrapper/Makefile index 9f228ad..439c15c 100644 --- a/x11/wrapper/Makefile +++ b/x11/wrapper/Makefile @@ -9,12 +9,20 @@ PORTNAME= wrapper PORTVERSION= 1.0 PORTREVISION= 1 CATEGORIES= x11 +MASTER_SITES= # none +DISTFILES= # none MAINTAINER= trevor@FreeBSD.org NO_WRKSUBDIR= yes USE_X_PREFIX= yes +.include <bsd.port.pre.mk> + +.if ${XFREE86_VERSION} == 3 +FORBIDDEN= This port is for XFree86-4. +.endif + do-fetch: do-build: @@ -24,4 +32,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/Xwrapper ${PREFIX}/bin @PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL -.include <bsd.port.mk> +.include <bsd.port.post.mk> |