diff options
author | glewis <glewis@FreeBSD.org> | 2003-03-06 17:43:24 +0000 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2003-03-06 17:43:24 +0000 |
commit | 402a353f2e266bfc58d6892ce7e699751c3aa971 (patch) | |
tree | bf6bc04cdd7af7deaa3dbf73f289c47703e6a125 /java | |
parent | 76e3226c0e9d8e1c109f5db7cac4c9e70d531467 (diff) | |
download | FreeBSD-ports-402a353f2e266bfc58d6892ce7e699751c3aa971.zip FreeBSD-ports-402a353f2e266bfc58d6892ce7e699751c3aa971.tar.gz |
. Allow package building on bento to bypass the distfile check.
Requested by: kris
Diffstat (limited to 'java')
-rw-r--r-- | java/jdk12/Makefile | 2 | ||||
-rw-r--r-- | java/linux-ibm-jdk14/Makefile | 2 | ||||
-rw-r--r-- | java/linux-sun-jdk12/Makefile | 2 | ||||
-rw-r--r-- | java/linux-sun-jdk14/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/java/jdk12/Makefile b/java/jdk12/Makefile index d92e738..59df588 100644 --- a/java/jdk12/Makefile +++ b/java/jdk12/Makefile @@ -77,7 +77,7 @@ PLIST_SUB+= DEBUG:="" .include <bsd.port.pre.mk> # Check for JDK sources -.if !exists(${DISTDIR}/${SRCFILE}) +.if !exists(${DISTDIR}/${SRCFILE}) && !defined(PACKAGE_BUILDING) ECHO_MSG=/usr/bin/printf IGNORE= :\n\ Because of licensing restrictions, you must fetch the source distribution\n\ diff --git a/java/linux-ibm-jdk14/Makefile b/java/linux-ibm-jdk14/Makefile index 20c782f..0f4b38f 100644 --- a/java/linux-ibm-jdk14/Makefile +++ b/java/linux-ibm-jdk14/Makefile @@ -37,7 +37,7 @@ CPIO?= /usr/bin/cpio .include <bsd.port.pre.mk> -.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING) ECHO_MSG=/usr/bin/printf IGNORE=:\n\ Because of licensing restrictions, you must manually fetch the IBM Java SDK\n\ diff --git a/java/linux-sun-jdk12/Makefile b/java/linux-sun-jdk12/Makefile index 852819b..0b2e776 100644 --- a/java/linux-sun-jdk12/Makefile +++ b/java/linux-sun-jdk12/Makefile @@ -33,7 +33,7 @@ DOWNLOAD_URL= http://java.sun.com/Download5?config-file=${PORTNAME}-${JDK_VERSIO .include <bsd.port.pre.mk> -.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING) IGNORE=You must manually fetch the Sun Java 2 Standard Edition SDK ${JDK_VERSION} for Linux archive (${DISTNAME}${EXTRACT_SUFX}) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again. .endif diff --git a/java/linux-sun-jdk14/Makefile b/java/linux-sun-jdk14/Makefile index 4505499..99fce6b 100644 --- a/java/linux-sun-jdk14/Makefile +++ b/java/linux-sun-jdk14/Makefile @@ -41,7 +41,7 @@ CPIO?= /usr/bin/cpio .include <bsd.port.pre.mk> -.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING) IGNORE=You must manually fetch the J2SE v1.4 SDK Linux GNUZIP Tar shell script (${DISTNAME}${EXTRACT_SUFX}) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again .endif |