3e25b260e5
breaks some port that expect that directory to be linux-jdk1.3.1. This also is more consistent with other ports of JDKs/JREs out there. Reported by: olgeni
65 lines
1.8 KiB
Makefile
65 lines
1.8 KiB
Makefile
# New ports collection makefile for: linux jdk 1.3.0
|
|
# Date created: 06 December 2000
|
|
# Whom: Kevin Lo <kevlo@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jdk
|
|
PORTVERSION= ${JDK_VERSION}.${JDK_REVISION}
|
|
PORTREVISION= 1
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= #
|
|
PKGNAMEPREFIX= linux-
|
|
DISTNAME= j2sdk-${JDK_VERSION:S/./_/g}_${JDK_REVISION}-linux-${ARCH}
|
|
EXTRACT_SUFX= .bin
|
|
|
|
MAINTAINER= kevlo@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= ${LINUXBASE}/lib/libc.so.6:${PORTSDIR}/emulators/linux_base
|
|
RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper
|
|
|
|
NO_CDROM= "License doesn\'t allow distribution with fee"
|
|
RESTRICTED= "Redistribution of repackaged binaries not permitted"
|
|
|
|
.if defined(BATCH) || defined(PACKAGE_BUILDING)
|
|
IGNORE= "You can not legally distribute binaries"
|
|
.endif
|
|
|
|
EXTRACT_CMD= # empty
|
|
EXTRACT_BEFORE_ARGS= # empty
|
|
EXTRACT_AFTER_ARGS= # empty
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}${JDK_VERSION}_${JDK_REVISION}
|
|
PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///}
|
|
|
|
NO_BUILD= yes
|
|
USE_LINUX= yes
|
|
JDK_VERSION= 1.3.1
|
|
JDK_REVISION= 01
|
|
ONLY_FOR_ARCHS= i386
|
|
TARGET_DIR?= ${PREFIX}/${PKGBASE}${JDK_VERSION}
|
|
DOWNLOAD_URL?= http://java.sun.com/j2se/1.3/download-linux.html
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
|
|
IGNORE= You must manually fetch the Java 2 Development Kit ${PORTVERSION} \
|
|
for Linux archive (${DISTNAME}${EXTRACT_SUFX}) from ${DOWNLOAD_URL}, \
|
|
choose the "GUNZIP Tar shell script" one and place it in ${DISTDIR} \
|
|
and then run make again
|
|
.endif
|
|
|
|
post-fetch:
|
|
@${CHMOD} +x ${DISTDIR}/${DISTFILES}
|
|
|
|
post-patch:
|
|
@find ${WRKSRC} -name '*.orig' -print | xargs ${RM} -f
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/${PKGNAMEPREFIX}jdk${JDK_VERSION}
|
|
@${TAR} -C ${WRKSRC} -cf- . | ${TAR} -C ${PREFIX}/${PKGNAMEPREFIX}jdk${JDK_VERSION} -xpf-
|
|
@${LOCALBASE}/bin/registervm "${PREFIX}/linux-jdk${JDK_VERSION}/bin/java # Linux-JDK${JDK_VERSION}"
|
|
|
|
.include <bsd.port.post.mk>
|