diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-01-01 22:16:28 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-01-01 22:16:28 +0000 |
commit | 88d78c401e6ee4a777388d5cdd174c980978b5c2 (patch) | |
tree | 2b5a6b468d3cfdb76a10eecac6670ca3a6bca876 /java/forte | |
parent | Remove a patch that I have missed in the previous commit to fix the build. (diff) |
Fix package building by adding a dependency on Xvfb in the
PACKAGE_BUILDING case. The package build scripts then DTRT and ensure
this is running at build-time so a DISPLAY is available.
Approved by: portmgr (self)
Diffstat (limited to 'java/forte')
-rw-r--r-- | java/forte/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/java/forte/Makefile b/java/forte/Makefile index 5914b2872d97..c6155934581c 100644 --- a/java/forte/Makefile +++ b/java/forte/Makefile @@ -17,6 +17,10 @@ EXTRACT_ONLY= MAINTAINER= ports@FreeBSD.org COMMENT= A Sun's powerful and extensible IDE for Java +.if defined(PACKAGE_BUILDING) +BUILD_DEPENDS+= Xvfb:${X_VFBSERVER_PORT} +.endif + USE_JAVA= 1.3+ JAVAVM= ${JAVA_HOME}/bin/java |