freebsd-ports/java/linux-sun-jdk12/Makefile
Greg Lewis ba8c398f70 Fix problems I created with the previous change:
. Add a post-patch target to clean up *.orig files (taken from the
  linux-sun-jdk13 port).
. Fix the name of the installation location to be consistent with other
  JDK ports and to not move with, for example, PORTREVISION changes.

Approved by:	znerd (maintainer)
2002-06-13 19:25:48 +00:00

61 lines
1.8 KiB
Makefile

# New ports collection makefile for: linux-sun-jdk
# Date created: 27 April 2002
# Whom: Ernst de Haan <znerd@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= jdk
PORTVERSION= ${JDK_VERSION}
PORTREVISION= 1
CATEGORIES= java
MASTER_SITES= #
PKGNAMEPREFIX= linux-sun-
DISTNAME= ${PORTNAME}-${JDK_VERSION:S/./_/g}-linux-${ARCH}
MAINTAINER= znerd@FreeBSD.org
BUILD_DEPENDS= ${LOCALBASE}/bin/javavm:${PORTSDIR}/java/javavmwrapper
RUN_DEPENDS= ${LOCALBASE}/bin/javavm:${PORTSDIR}/java/javavmwrapper
WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION:R}
PLIST_SUB+= T=${APP_HOME:S/^${PREFIX}\///}
NO_BUILD= yes
USE_LINUX= yes
JDK_VERSION= 1.2.2.012
ONLY_FOR_ARCHS= i386
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
APP_HOME= ${PREFIX}/${PKGNAMEPREFIX}jdk1.2.2
DOWNLOAD_URL= http://java.sun.com/Download5?config-file=${PORTNAME}-${JDK_VERSION:S/./_/g}.config&platform=linux-${ARCH}
.include <bsd.port.pre.mk>
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
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
post-patch:
@${FIND} ${WRKSRC} -name '*.orig' -print | xargs ${RM} -f
do-install:
@${ECHO} -n "Creating destination directory ${APP_HOME}..."
@${MKDIR} ${APP_HOME}
@${ECHO} " [ DONE ]"
@${ECHO} -n "Copying files..."
@${CP} -R ${WRKSRC}/* ${APP_HOME}
@${ECHO} " [ DONE ]"
@${ECHO} -n "Registering with javavm..."
@${LOCALBASE}/bin/registervm "${APP_HOME}/bin/java # Sun-JDK${PORTVERSION}_${PORTREVISION}"
@${ECHO} " [ DONE ]"
.include <bsd.port.post.mk>