freebsd-ports/java/linux-oracle-jdk18/Makefile
Stefan Eßer b7f05445c0 Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
2022-09-07 23:10:59 +02:00

109 lines
3.2 KiB
Makefile

PORTNAME= jdk
PORTVERSION= ${JDK_VERSION}.${JDK_UPDATE_VERSION}
CATEGORIES= java devel
MASTER_SITES= #
PKGNAMEPREFIX= linux-${JDK_VENDOR}-
DISTNAME= jdk-${JDK_VERSION}u${JDK_UPDATE_VERSION}-linux-${JAVA_DISTFILE_ARCH}
MAINTAINER= java@FreeBSD.org
COMMENT= Oracle Java ${JDK_VERSION} Development Kit for Linux
WWW= https://www.oracle.com/java/
# Converted from RESTRICTED
LICENSE= jdk
LICENSE_NAME= jdk
LICENSE_TEXT= Redistribution of repackaged binaries not permitted
LICENSE_PERMS= auto-accept
RUN_DEPENDS= javavm:java/javavmwrapper
OPTIONS_DEFINE= DEMO
DEMO_DESC= Install demos and samples
PKGNAMESUFFIX= 1${JDK_VERSION}
WRKSRC= ${WRKDIR}/jdk${DL_JDK_VERSION}
PLIST_SUB= T=${APP_HOME:S/^${PREFIX}\///} \
PORTVERSION=${PORTVERSION}
NO_BUILD= yes
USES= cpe linux shebangfix
CPE_VENDOR= oracle
USE_LINUX= xorglibs
ONLY_FOR_ARCHS= i386 amd64
JDK_VENDOR= oracle
JDK_VERSION= 8
JDK_INTERNAL_VERSION= 1.${JDK_VERSION}.0
JDK_UPDATE_VERSION= 291
.if ${JDK_UPDATE_VERSION} == 0
DL_JDK_VERSION= ${JDK_INTERNAL_VERSION}
.elif ${JDK_UPDATE_VERSION} <= 9
DL_JDK_VERSION= ${JDK_INTERNAL_VERSION}_0${JDK_UPDATE_VERSION}
.else
DL_JDK_VERSION= ${JDK_INTERNAL_VERSION}_${JDK_UPDATE_VERSION}
.endif
DOWNLOAD_URL= http://www.oracle.com/technetwork/java/javase/downloads/index.html
APP_HOME= ${PREFIX}/${PKGNAMEPREFIX}${PORTNAME}${JDK_INTERNAL_VERSION}
BIN_DIRS= bin jre/bin
LIB_DIRS= ${BIN_DIRS:S|bin$|lib|}
SHEBANG_FILES= ${BIN_DIRS:S|$|/jcontrol|}
bash_CMD= ${SH}
.include <bsd.port.pre.mk>
.if ${ARCH} == i386
PLIST_SUB+= JAVA_ARCHLIBDIR="i386" \
ECLIPSE_ARCHPATH="x86" \
VISUALVM_ARCHLIBDIR="linux" \
I386_ONLY="" \
AMD64_ONLY="@comment "
JAVA_DISTFILE_ARCH= i586
.else
PLIST_SUB+= JAVA_ARCHLIBDIR="amd64" \
ECLIPSE_ARCHPATH="x86_64" \
VISUALVM_ARCHLIBDIR="linux-amd64" \
I386_ONLY="@comment " \
AMD64_ONLY=""
JAVA_DISTFILE_ARCH= x64
.endif
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE?=You must manually fetch the J2SE SDK download for the Linux platform (${DISTNAME}${EXTRACT_SUFX}) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
.endif
.if ${PORT_OPTIONS:MDEMO}
DEMO_UPDATE_VERSION= ${JDK_UPDATE_VERSION}
.if ${DEMO_UPDATE_VERSION} != ${JDK_UPDATE_VERSION}
DEMO_DISTNAME= jdk-${JDK_VERSION}u${DEMO_UPDATE_VERSION}-linux-${JAVA_DISTFILE_ARCH}-demos
DEMO_WRKSRC= ${WRKDIR}/jdk${JDK_INTERNAL_VERSION}_${DEMO_UPDATE_VERSION}
.else
DEMO_DISTNAME= ${DISTNAME}-demos
DEMO_WRKSRC= ${WRKSRC}
.endif
.if !exists(${DISTDIR}/${DEMO_DISTNAME}${EXTRACT_SUFX})
IGNORE?=You must manually fetch the J2SE demos and samples for the Linux platform (${DEMO_DISTNAME}${EXTRACT_SUFX}) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
.endif
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DEMO_DISTNAME}${EXTRACT_SUFX}
PLIST_SUB+= DEMO=""
.else
PLIST_SUB+= DEMO="@comment "
.endif
.if ${PORT_OPTIONS:MDEMO} && ${DEMO_WRKSRC} != ${WRKSRC}
post-extract:
@cd ${DEMO_WRKSRC} && ${MV} demo sample ${WRKSRC}
.endif
post-patch:
@cd ${WRKSRC}/include && ${LN} -s linux freebsd
do-install:
@${MKDIR} ${STAGEDIR}${APP_HOME}
@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${APP_HOME}
@cd ${STAGEDIR}${APP_HOME} && \
${CHMOD} ${BINMODE} ${BIN_DIRS:S|$|/*|} ${LIB_DIRS:S|$|/jexec|}
.include <bsd.port.post.mk>