diff options
author | Maho Nakata <maho@FreeBSD.org> | 2004-08-23 11:13:50 +0800 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2004-08-23 11:13:50 +0800 |
commit | 4522902afa3c91614c0ef946d6b4fb7240afb4e4 (patch) | |
tree | 547a4e55053ad9187211563533f6c7a6740967d0 /editors | |
parent | f1213a30253a67e117095a1b76082ab46e572e8d (diff) | |
download | freebsd-ports-gnome-4522902afa3c91614c0ef946d6b4fb7240afb4e4.tar.gz freebsd-ports-gnome-4522902afa3c91614c0ef946d6b4fb7240afb4e4.tar.zst freebsd-ports-gnome-4522902afa3c91614c0ef946d6b4fb7240afb4e4.zip |
Add knob WITHOUT_JAVA (passing configure to --disable-java).
Diffstat (limited to 'editors')
-rw-r--r-- | editors/openoffice-1.1-devel/Makefile | 13 | ||||
-rw-r--r-- | editors/openoffice-1.1/Makefile | 13 | ||||
-rw-r--r-- | editors/openoffice.org-1.1-devel/Makefile | 13 | ||||
-rw-r--r-- | editors/openoffice.org-1.1/Makefile | 13 |
4 files changed, 40 insertions, 12 deletions
diff --git a/editors/openoffice-1.1-devel/Makefile b/editors/openoffice-1.1-devel/Makefile index 6c5d623d2538..c520b2af8e31 100644 --- a/editors/openoffice-1.1-devel/Makefile +++ b/editors/openoffice-1.1-devel/Makefile @@ -77,8 +77,10 @@ CC= gcc32 CXX= g++32 .endif -BUILD_DEPENDS+= ${JDKDIR}/bin/java:${PORTSDIR}/java/jdk14 \ - zip:${PORTSDIR}/archivers/zip \ +.if !defined(WITHOUT_JAVA) +BUILD_DEPENDS+= ${JDKDIR}/bin/java:${PORTSDIR}/java/jdk14 +.endif +BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip \ gcp:${PORTSDIR}/sysutils/coreutils \ ${ANT}:${PORTSDIR}/devel/apache-ant \ @@ -108,7 +110,12 @@ DISPLAYHACK=localhost:1001 CONFIGURE_ENV= PTHREAD_CFLAGS=${PTHREAD_CFLAGS} \ PTHREAD_LIBS=${PTHREAD_LIBS} -CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp --with-jdk-home=${JDKDIR} +CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp +.if defined(WITHOUT_JAVA) +CONFIGURE_ARGS+= --disable-java +.else +CONFIGURE_ARGS+= --with-jdk-home=${JDKDIR} +.endif .if defined(WITHOUT_MOZILLA) CONFIGURE_ARGS+= --disable-mozilla .endif diff --git a/editors/openoffice-1.1/Makefile b/editors/openoffice-1.1/Makefile index c057eb47d365..086b4c0990cd 100644 --- a/editors/openoffice-1.1/Makefile +++ b/editors/openoffice-1.1/Makefile @@ -77,8 +77,10 @@ CC= gcc32 CXX= g++32 .endif -BUILD_DEPENDS+= ${JDKDIR}/bin/java:${PORTSDIR}/java/jdk14 \ - zip:${PORTSDIR}/archivers/zip \ +.if !defined(WITHOUT_JAVA) +BUILD_DEPENDS+= ${JDKDIR}/bin/java:${PORTSDIR}/java/jdk14 +.endif +BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip \ gcp:${PORTSDIR}/sysutils/coreutils \ ${ANT}:${PORTSDIR}/devel/apache-ant \ @@ -108,7 +110,12 @@ DISPLAYHACK=localhost:1001 CONFIGURE_ENV= PTHREAD_CFLAGS=${PTHREAD_CFLAGS} \ PTHREAD_LIBS=${PTHREAD_LIBS} -CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp --with-jdk-home=${JDKDIR} +CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp +.if defined(WITHOUT_JAVA) +CONFIGURE_ARGS+= --disable-java +.else +CONFIGURE_ARGS+= --with-jdk-home=${JDKDIR} +.endif .if defined(WITHOUT_MOZILLA) CONFIGURE_ARGS+= --disable-mozilla .endif diff --git a/editors/openoffice.org-1.1-devel/Makefile b/editors/openoffice.org-1.1-devel/Makefile index 6c5d623d2538..c520b2af8e31 100644 --- a/editors/openoffice.org-1.1-devel/Makefile +++ b/editors/openoffice.org-1.1-devel/Makefile @@ -77,8 +77,10 @@ CC= gcc32 CXX= g++32 .endif -BUILD_DEPENDS+= ${JDKDIR}/bin/java:${PORTSDIR}/java/jdk14 \ - zip:${PORTSDIR}/archivers/zip \ +.if !defined(WITHOUT_JAVA) +BUILD_DEPENDS+= ${JDKDIR}/bin/java:${PORTSDIR}/java/jdk14 +.endif +BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip \ gcp:${PORTSDIR}/sysutils/coreutils \ ${ANT}:${PORTSDIR}/devel/apache-ant \ @@ -108,7 +110,12 @@ DISPLAYHACK=localhost:1001 CONFIGURE_ENV= PTHREAD_CFLAGS=${PTHREAD_CFLAGS} \ PTHREAD_LIBS=${PTHREAD_LIBS} -CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp --with-jdk-home=${JDKDIR} +CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp +.if defined(WITHOUT_JAVA) +CONFIGURE_ARGS+= --disable-java +.else +CONFIGURE_ARGS+= --with-jdk-home=${JDKDIR} +.endif .if defined(WITHOUT_MOZILLA) CONFIGURE_ARGS+= --disable-mozilla .endif diff --git a/editors/openoffice.org-1.1/Makefile b/editors/openoffice.org-1.1/Makefile index c057eb47d365..086b4c0990cd 100644 --- a/editors/openoffice.org-1.1/Makefile +++ b/editors/openoffice.org-1.1/Makefile @@ -77,8 +77,10 @@ CC= gcc32 CXX= g++32 .endif -BUILD_DEPENDS+= ${JDKDIR}/bin/java:${PORTSDIR}/java/jdk14 \ - zip:${PORTSDIR}/archivers/zip \ +.if !defined(WITHOUT_JAVA) +BUILD_DEPENDS+= ${JDKDIR}/bin/java:${PORTSDIR}/java/jdk14 +.endif +BUILD_DEPENDS+= zip:${PORTSDIR}/archivers/zip \ unzip:${PORTSDIR}/archivers/unzip \ gcp:${PORTSDIR}/sysutils/coreutils \ ${ANT}:${PORTSDIR}/devel/apache-ant \ @@ -108,7 +110,12 @@ DISPLAYHACK=localhost:1001 CONFIGURE_ENV= PTHREAD_CFLAGS=${PTHREAD_CFLAGS} \ PTHREAD_LIBS=${PTHREAD_LIBS} -CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp --with-jdk-home=${JDKDIR} +CONFIGURE_ARGS+= --with-gnu-cp=${LOCALBASE}/bin/gcp +.if defined(WITHOUT_JAVA) +CONFIGURE_ARGS+= --disable-java +.else +CONFIGURE_ARGS+= --with-jdk-home=${JDKDIR} +.endif .if defined(WITHOUT_MOZILLA) CONFIGURE_ARGS+= --disable-mozilla .endif |