blob: 2398999699b67fd2be949526d2ae8e27b24bf57f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
PORTNAME= openjdk17
PORTVERSION= 17.0.1.12.1
CATEGORIES= java devel
MASTER_SITES= LOCAL/glewis/bootstrap-openjdk17 \
LOCAL/pkubaj/bootstrap-openjdk17
PKGNAMEPREFIX= bootstrap-
DISTNAME= ${JDK_PORT}-${JDK_ARCH}-${PORTVERSION}
MAINTAINER= java@FreeBSD.org
COMMENT= Java Development Kit 17
WWW= https://openjdk.java.net/
LICENSE= GPLv2
ONLY_FOR_ARCHS= aarch64 amd64 i386 powerpc powerpc64 powerpc64le
USES= tar:xz
NO_BUILD= yes
PLIST_SUB= JDK_ROOT=${JDK_ROOT}
WRKSRC= ${WRKDIR}/${JDK_ROOT}
JDK_PORT= ${PKGNAMEPREFIX}${PORTNAME}
JDK_ROOT= ${PKGNAMEPREFIX}${PORTNAME}
JDK_ARCH= ${ARCH:C/armv.*/arm/}
INSTALLDIR= ${STAGEDIR}${PREFIX}/${JDK_ROOT}
.include <bsd.port.options.mk>
.if ${ARCH} == powerpc
PLIST_SUB+= NOT_PPC="@comment "
.else
PLIST_SUB+= NOT_PPC=""
.endif
.if ${ARCH:Mpowerpc64*}
PLIST_SUB+= NOT_PPC64="@comment "
.else
PLIST_SUB+= NOT_PPC64=""
.endif
.if ${ARCH} == i386
PLIST_SUB+= NOT_I386="@comment "
.else
PLIST_SUB+= NOT_I386=""
.endif
do-install:
@cd ${WRKSRC} && ${COPYTREE_SHARE} . ${INSTALLDIR}
@cd ${WRKSRC} && ${COPYTREE_BIN} bin ${INSTALLDIR}
@${CHMOD} a+x ${INSTALLDIR}/lib/jspawnhelper
.include <bsd.port.mk>
|