diff options
author | maho <maho@FreeBSD.org> | 2005-06-20 11:16:16 +0800 |
---|---|---|
committer | maho <maho@FreeBSD.org> | 2005-06-20 11:16:16 +0800 |
commit | d1556ce69528acf6ba22e9420388c94a5e603f65 (patch) | |
tree | b45ce42311733dec7f989719f413e310f97bfe04 /editors/openoffice.org-3-devel | |
parent | fc54155bb20757159ffa04f5ec8ba28f29fbc2ea (diff) | |
download | freebsd-ports-graphics-d1556ce69528acf6ba22e9420388c94a5e603f65.tar.gz freebsd-ports-graphics-d1556ce69528acf6ba22e9420388c94a5e603f65.tar.zst freebsd-ports-graphics-d1556ce69528acf6ba22e9420388c94a5e603f65.zip |
Add warning if x11-toolkits/fltk is installed build fails.
Corrected: Mike Durian <durian@shadetreesoftware.com> (again)
Diffstat (limited to 'editors/openoffice.org-3-devel')
-rw-r--r-- | editors/openoffice.org-3-devel/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/openoffice.org-3-devel/Makefile b/editors/openoffice.org-3-devel/Makefile index e295fa92025..e524f7ff875 100644 --- a/editors/openoffice.org-3-devel/Makefile +++ b/editors/openoffice.org-3-devel/Makefile @@ -45,8 +45,8 @@ JAVA_BUILD= jdk .if (${OSVERSION} < 503001 && ${OSVERSION} >= 500000) || (${OSVERSION} <= 492000) BROKEN= "rtld depends on _end symbol. type make -DTRYBROKEN to see how to upgrade your rtld" .endif -.if exists(${LOCALBASE}/bin/epm) -BROKEN= "Please deinstall epm, now it is a part of OpenOffice.org and causes a trouble" +.if exists(${X11BASE}/bin/fltk-config) +BROKEN= "Please deinstall fltk, currently causes a build failure" .endif CODELINE= 680 @@ -102,7 +102,7 @@ TCSH?= /bin/tcsh PKGMESSAGE= ${WRKDIR}/pkg-message NUMOFPROCESSES?= 1 -CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp --with-gnu-patch=${LOCALBASE}/bin/gpatch +CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp --with-gnu-patch=${LOCALBASE}/bin/gpatch --with-epm=internal .include <${FILESDIR}/Makefile.knobs> |