freebsd-ports/java/j2sdkee13/Makefile
Alfred Perlstein 05746372fd Don't use a leading zero in PORTREVISION, it confuses the pkg* tools and
portupgrade with "missing origin".

Properly detect that the distfile doesn't exist.  We can't use
${DISTDIR}/${DISTFILES} because it's not defined until after
bsd.port.post.mk, but after inclusion of bsd.port.post.mk we
can not define IGNORE.  To fix use the already known variables
as so: ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}

Reviewed by: maintainer timeout.
PR: ports/60652
2004-01-02 19:11:16 +00:00

40 lines
985 B
Makefile

# Ports collection makefile for: j2sdkee13
# Date created: 2003-06-27
# Whom: des
#
# $FreeBSD$
#
PORTNAME= j2sdkee
PORTVERSION= 1.3.1
PORTREVISION= 3
CATEGORIES= java
MASTER_SITES= # http://java.sun.com/j2ee/sdk_1.3/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/./_/g}-linux
MAINTAINER= des@freebsd.org
COMMENT= Java 2 SDK Enterprise Edition
USE_JAVA= 1.3+
NO_BUILD= YES
RESTRICTED= "Redistribution is not permitted"
NO_CDROM= "Redistribution is not permitted"
J2SDKEEVERSION=${PORTVERSION}_02
DOWNLOAD_URL= http://java.sun.com/j2ee/sdk_1.3/
.include <bsd.port.pre.mk>
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING)
IGNORE= You must manually fetch the Java 2 SDK Enterprise Edition\
${J2SDKEEVERSION} tarball from ${DOWNLOAD_URL}; download\
the \"Linux Install\" into ${DISTDIR} and run ${MAKE} again
.endif
do-install:
(cd ${WRKDIR} && ${TAR} cf - ${PORTNAME}${PORTVERSION} |\
${TAR} xf - -C ${PREFIX})
.include <bsd.port.post.mk>