blob: e5fcc7ae33b3812288977f7a3dc3be3ed88b0114 (
plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/diablo-jdk/diablo-jdk-1.6.0.07.02.ebuild,v 1.7 2012/05/10 18:34:12 aballier Exp $
EAPI="3"
inherit java-vm-2 eutils versionator
DESCRIPTION="Java Development Kit"
HOMEPAGE="http://www.FreeBSDFoundation.org/downloads/java.shtml"
MY_PV=$(replace_version_separator 3 '_')
MY_PVL=$(get_version_component_range 1-3)
javafile32="diablo-caffe-freebsd7-i386-$(replace_version_separator 4 '-b' ${MY_PV}).tar.bz2"
javafile64="diablo-caffe-freebsd7-amd64-$(replace_version_separator 4 '-b' ${MY_PV}).tar.bz2"
SRC_URI="x86-fbsd? ( ${javafile32} ) amd64-fbsd? ( ${javafile64} )"
LICENSE="sun-bcla-java-vm"
SLOT="1.6"
KEYWORDS="-* ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd"
RESTRICT="fetch"
IUSE="X examples nsplugin jce"
QA_TEXTRELS_x86="opt/${P}/jre/lib/i386/motif21/libmawt.so opt/${P}/jre/lib/i386/server/libjvm.so opt/${P}/jre/lib/i386/client/libjvm.so"
DEPEND="jce? ( =dev-java/sun-jce-bin-1.6.0* )"
RDEPEND="X? ( x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXau
x11-libs/libXdmcp
x11-libs/libXext
x11-libs/libXi
x11-libs/libXp
x11-libs/libXt
x11-libs/libXtst
)
!prefix? ( >=sys-freebsd/freebsd-lib-7 )
${DEPEND}"
JAVA_PROVIDE="jdbc-stdext jdbc-rowset"
S="${WORKDIR}/diablo-jdk$(get_version_component_range 1-4 ${MY_PV})"
pkg_nofetch() {
case ${CHOST} in
x86_64*) javafile=${javafile64};;
*) javafile=${javafile32}
esac
einfo "Please download ${javafile} from:"
einfo "${HOMEPAGE}"
einfo "and move it to ${DISTDIR}"
}
src_install() {
local dirs="bin include jre lib man"
dodir /opt/${P}
for i in $dirs ; do
cp -pPR $i "${ED}"/opt/${P}/ || die "failed to build"
done
dodoc COPYRIGHT README.html
dohtml README.html
dodir /opt/${P}/share/
cp -pPR src.zip "${ED}"/opt/${P}/share/
if use examples; then
cp -pPR demo "${ED}"/opt/${P}/share/
cp -pRR sample "${ED}"/opt/${P}/share/
fi
if use jce ; then
cd "${ED}"/opt/${P}/jre/lib/security
dodir /opt/${P}/jre/lib/security/strong-jce
mv "${ED}"/opt/${P}/jre/lib/security/US_export_policy.jar "${ED}"/opt/${P}/jre/lib/security/strong-jce
mv "${ED}"/opt/${P}/jre/lib/security/local_policy.jar "${ED}"/opt/${P}/jre/lib/security/strong-jce
dosym /opt/sun-jce-bin-1.6.0/jre/lib/security/unlimited-jce/US_export_policy.jar /opt/${P}/jre/lib/security/
dosym /opt/sun-jce-bin-1.6.0/jre/lib/security/unlimited-jce/local_policy.jar /opt/${P}/jre/lib/security/
fi
local arch=i386
use amd64-fbsd && arch=amd64
if use nsplugin; then
install_mozilla_plugin /opt/${P}/jre/plugin/${arch}/ns7/libjavaplugin_oji.so
fi
# Change libz.so.4 to libz.so.1
scanelf -qR -N libz.so.4 -F "#N" "${ED}"/opt/${P}/ | \
while read i; do
if [[ $(strings "$i" | fgrep -c libz.so.4) -ne 1 ]]; then
export SANITY_CHECK_LIBZ_FAILED=1
break
fi
sed -i -e 's/libz\.so\.4/libz.so.1/g' "$i"
done
[[ "$SANITY_CHECK_LIBZ_FAILED" = "1" ]] && die "failed to change libz.so.4 to libz.so.1"
if [[ -n ${EPREFIX} ]] ; then
# create wrappers such that we can set LD_LIBRARY_PATH because all
# objects are created without RPATH we could tamper with :(
local d bin
for d in "${ED}"/opt/${P}/bin "${ED}"/opt/${P}/jre/bin ; do
cd "${d}" || die
mkdir real-bins || die
for bin in * ; do
[[ ${bin} == real-bins ]] && continue
mv ${bin} real-bins/ || die
cat > ${bin} <<- _EOD
#!${EPREFIX}/bin/sh
export LD_LIBRARY_PATH="\${LD_LIBRARY_PATH}\${LD_LIBRARY_PATH+:}${EPREFIX}/lib"
exec /${d#${D}}/real-bins/${bin} "\$@"
_EOD
chmod 755 ${bin}
done
done
fi
# create dir for system preferences
dodir /opt/${P}/jre/.systemPrefs
# Create files used as storage for system preferences.
touch "${ED}"/opt/${P}/jre/.systemPrefs/.system.lock
chmod 644 "${ED}"/opt/${P}/jre/.systemPrefs/.system.lock
touch "${ED}"/opt/${P}/jre/.systemPrefs/.systemRootModFile
chmod 644 "${ED}"/opt/${P}/jre/.systemPrefs/.systemRootModFile
# install control panel for Gnome/KDE
sed -e "s/INSTALL_DIR\/JRE_NAME_VERSION/\/opt\/${P}\/jre/" \
-e "s/\(Name=Java\)/\1 Control Panel ${SLOT}/" \
"${ED}"/opt/${P}/jre/plugin/desktop/sun_java.desktop > \
"${T}"/sun_java-${SLOT}.desktop
domenu "${T}"/sun_java-${SLOT}.desktop
set_java_env
}
pkg_postinst() {
# Set as default VM if none exists
java-vm-2_pkg_postinst
if ! use X; then
local xwarn="X11 libraries and/or"
fi
echo
ewarn "Some parts of Sun's JRE require ${xwarn} net-print/cups or net-print/lprng to be installed."
ewarn "Be careful which Java libraries you attempt to use."
}
|