mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
0263b9d868
both current (fc4) and future linux (f8) distributions at one ports tree. The patch contains full changes to ports/Mk files and all ports involved. But only infrastructure is changed. The resulting packages are the same as before. Hence no need to bump PORTREVISIONs. The idea was taken from bsd.gnome.mk and others. More than 130 ports are switched to follow a new linux infrastructure introduced by changes to bsd.port.mk, bsd.linux-rpm.mk and a new bsd.linux-apps.mk. Thanks for all who was involved and helped me with this work. And help from Alexander Leidinger was incredible. Other changes are coming. Stay tuned! PR: ports/132510 Submitted by: bsam (me) Exp-run by: portmgr (pav)
81 lines
2.6 KiB
Makefile
81 lines
2.6 KiB
Makefile
# New ports collection makefile for: Sun Linux JRE 1.5.x
|
|
# Date created: 5 October 2007
|
|
# Whom: Jung-uk Kim <jkim@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jre
|
|
PORTVERSION= ${DL_JRE_VERSION:S/_/./g}
|
|
CATEGORIES= java
|
|
MASTER_SITES= #
|
|
PKGNAMEPREFIX= linux-sun-
|
|
DISTNAME= jre-${DL_JRE_VERSION:S/./_/g}-linux-i586
|
|
EXTRACT_SUFX= .bin
|
|
|
|
MAINTAINER= java@FreeBSD.org
|
|
COMMENT= Sun Java Runtime Environment 1.5 for Linux
|
|
|
|
EXTRACT_DEPENDS=${LINUX_BASE_PORT}
|
|
RUN_DEPENDS= javavm:${PORTSDIR}/java/javavmwrapper
|
|
|
|
NO_CDROM= License does not allow distribution with fee
|
|
RESTRICTED= Redistribution of repackaged binaries not permitted
|
|
LATEST_LINK= linux-sun-jre15
|
|
|
|
WRKSRC= ${WRKDIR}/jre${DL_JRE_VERSION}
|
|
PLIST_SUB+= T=${APP_HOME:S/^${PREFIX}\///} PORTVERSION=${PORTVERSION}
|
|
PKGINSTALL= ${WRKDIR}/pkg-install
|
|
|
|
NO_BUILD= yes
|
|
USE_LINUX= yes
|
|
USE_LINUX_APPS= xorglibs
|
|
JRE_VERSION= 1.5.0
|
|
JRE_REVISION= 13
|
|
DL_JRE_VERSION= ${JRE_VERSION}_${JRE_REVISION}
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
DOWNLOAD_URL?= http://java.sun.com/javase/downloads/index_jdk5.jsp
|
|
APP_HOME= ${PREFIX}/${PKGNAMEPREFIX}${PORTNAME}${JRE_VERSION}
|
|
PACKED_JARS= lib/charsets.jar lib/deploy.jar lib/ext/localedata.jar lib/javaws.jar lib/jsse.jar lib/plugin.jar lib/rt.jar
|
|
UNPACK_CMD= ${APP_HOME}/bin/unpack200
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING)
|
|
IGNORE?=You must manually fetch the JRE self-extracting file for the Linux platform (${DISTNAME}${EXTRACT_SUFX}) from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again
|
|
.endif
|
|
|
|
pre-everything::
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKDIR}
|
|
@cd ${WRKDIR} \
|
|
&& ${TAIL} -n +647 ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} > ${WRKDIR}/install.sfx \
|
|
&& ${CHMOD} +x ${WRKDIR}/install.sfx \
|
|
&& ${WRKDIR}/install.sfx > /dev/null
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name '*.orig' -print | ${XARGS} ${RM} -f
|
|
|
|
# XXX: This is missing a "${BRANDELF} -t Linux <executables>".
|
|
|
|
do-install:
|
|
${MKDIR} ${APP_HOME}
|
|
cd ${WRKSRC} && ${FIND} . -print \
|
|
| ${CPIO} -pdmu -R ${LIBOWN}:${LIBGRP} ${APP_HOME}
|
|
for i in ${PACKED_JARS}; do \
|
|
if [ -f ${APP_HOME}/`dirname $$i`/`basename $$i .jar`.pack ]; then \
|
|
${UNPACK_CMD} ${APP_HOME}/`dirname $$i`/`basename $$i .jar`.pack ${APP_HOME}/$$i; \
|
|
${RM} -f ${APP_HOME}/`dirname $$i`/`basename $$i .jar`.pack; \
|
|
fi \
|
|
done
|
|
|
|
post-install:
|
|
${LOCALBASE}/bin/registervm "${APP_HOME}/bin/java # Linux-Sun-JRE${PORTVERSION}"
|
|
${SED} -e "s:%%JRE_HOME%%:${APP_HOME}:g" \
|
|
< ${FILESDIR}/pkg-install.in > ${PKGINSTALL}
|
|
${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
.include <bsd.port.post.mk>
|