diff options
author | linimon <linimon@FreeBSD.org> | 2003-10-29 04:12:51 +0000 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-10-29 04:12:51 +0000 |
commit | 9055ee0a31dd14f18556c6dc25830f4d7f531bef (patch) | |
tree | debf490a2066ea2f85ff0eb3ed6f246757a4c414 /net/tridiavnc | |
parent | 07eb728f37c5bf5901f56ca5f3bf8b54c6a4b013 (diff) | |
download | FreeBSD-ports-9055ee0a31dd14f18556c6dc25830f4d7f531bef.zip FreeBSD-ports-9055ee0a31dd14f18556c6dc25830f4d7f531bef.tar.gz |
Move inclusion of bsd.port.pre.mk past the variable definitions.
Diffstat (limited to 'net/tridiavnc')
-rw-r--r-- | net/tridiavnc/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/tridiavnc/Makefile b/net/tridiavnc/Makefile index 06f3c8e..495f846 100644 --- a/net/tridiavnc/Makefile +++ b/net/tridiavnc/Makefile @@ -18,12 +18,6 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Display X and Win32 desktops on remote X/Win32/Java displays -.include <bsd.port.pre.mk> - -.if ${MACHINE_ARCH} != i386 -BROKEN= "Does not compile on ${MACHINE_ARCH}" -.endif - USE_PERL5= yes WRKSRC= ${WRKDIR}/unix/vnc_unixsrc USE_IMAKE= yes @@ -31,6 +25,12 @@ ALL_TARGET= World NO_INSTALL_MANPAGES= yes XFREE86_HTML_MAN= no +.include <bsd.port.pre.mk> + +.if ${MACHINE_ARCH} != i386 +BROKEN= "Does not compile on ${MACHINE_ARCH}" +.endif + post-patch: .for file in vncviewer/Imakefile Xvnc/config/cf/vnclibs.def Xvnc/config/cf/Imake.tmpl @${PERL} -pi -e "s,%%LOCALBASE%%,${LOCALBASE},g" ${WRKSRC}/${file} |