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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-8.1.2.ebuild,v 1.5 2008/03/18 10:35:29 armin76 Exp $
inherit eutils nsplugins
DESCRIPTION="Adobe's PDF reader"
HOMEPAGE="http://www.adobe.com/products/acrobat/"
IUSE="cups ldap nsplugin"
SRC_HEAD="http://ardownload.adobe.com/pub/adobe/reader/unix/8.x/${PV}"
SRC_FOOT="-${PV}-1.i486.tar.bz2"
LINGUA_LIST="da:dan de:deu en:enu es:esp fi:suo fr:fra it:ita ja:jpn ko:kor nb:nor nl:nld pt:ptb sv:sve zh_CN:chs zh_TW:cht"
DEFAULT_URI="${SRC_HEAD}/enu/AdobeReader_enu${SRC_FOOT}"
for ll in ${LINGUA_LIST} ; do
iuse_l="linguas_${ll/:*}"
src_l=${ll/*:}
IUSE="${IUSE} ${iuse_l}"
DEFAULT_URI="!${iuse_l}? ( ${DEFAULT_URI} )"
SRC_URI="${SRC_URI}
${iuse_l}? ( ${SRC_HEAD}/${src_l}/AdobeReader_${src_l}${SRC_FOOT} )"
done
SRC_URI="${SRC_URI}
${DEFAULT_URI}
x86? ( !cups? ( mirror://gentoo/libcups.so-i386.bz2 ) )"
LICENSE="Adobe"
SLOT="0"
KEYWORDS="-* amd64 x86"
RESTRICT="strip mirror"
# Needs libgtkembedmoz.so, which can come from xulrunner, mozilla-firefox or
# seamonkey. In the case of mozilla-firefox and seamonkey, we need to create
# /etc/gre.d/gre.conf with GRE_PATH set. On amd64 currently only seamonkey-bin
# provides a 32bit libgtkembedmoz.so.
RDEPEND="x86? ( >=x11-libs/gtk+-2.0
cups? ( net-print/cups )
ldap? ( net-nds/openldap )
|| ( net-libs/xulrunner
www-client/mozilla-firefox
www-client/seamonkey
www-client/seamonkey-bin ) )
amd64? ( >=app-emulation/emul-linux-x86-baselibs-2.4.2
>=app-emulation/emul-linux-x86-gtklibs-2.0
www-client/seamonkey-bin )"
QA_TEXTRELS="opt/Adobe/Reader8/Reader/intellinux/plug_ins/PPKLite.api
opt/Adobe/Reader8/Browser/intellinux/nppdf.so
opt/netscape/plugins/nppdf.so"
QA_EXECSTACK="opt/Adobe/Reader8/Reader/intellinux/plug_ins/Annots.api
opt/Adobe/Reader8/Reader/intellinux/plug_ins/PPKLite.api
opt/Adobe/Reader8/Reader/intellinux/bin/acroread
opt/Adobe/Reader8/Reader/intellinux/bin/SynchronizerApp-binary
opt/Adobe/Reader8/Reader/intellinux/lib/libsccore.so
opt/Adobe/Reader8/Reader/intellinux/lib/libcrypto.so.0.9.7"
INSTALLDIR=/opt
S="${WORKDIR}/AdobeReader"
# Actually, ahv segfaults when run standalone so presumably
# it isn't intended for direct use - so the only launcher is
# acroread after all.
LAUNCHERS="Adobe/Reader8/bin/acroread"
# Adobe/HelpViewer/1.0/intellinux/bin/ahv"
pkg_setup() {
# x86 binary package, ABI=x86
# Danny van Dyk <kugelfang@gentoo.org> 2005/03/25
has_multilib_profile && ABI="x86"
}
# Determine lingua from filename
acroread_get_ll() {
local f_src_l ll lingua src_l
f_src_l=${1/${SRC_FOOT}}
f_src_l=${f_src_l/*_}
for ll in ${LINGUA_LIST} ; do
lingua=${ll/:*}
src_l=${ll/*:}
if [[ ${src_l} == ${f_src_l} ]] ; then
echo ${lingua}
return
fi
done
die "Failed to match file $1 to a LINGUA; please report"
}
src_unpack() {
local ll linguas fl launcher
# Unpack all into the same place; overwrite common files.
fl=""
for pkg in ${A} ; do
cd "${WORKDIR}"
unpack ${pkg}
cd "${S}"
if [[ ${pkg} =~ ^AdobeReader_ ]] ; then
tar xf ILINXR.TAR ||
die "Failed to unpack ILINXR.TAR; is distfile corrupt?"
tar xf COMMON.TAR ||
die "Failed to unpack COMMON.TAR; is distfile corrupt?"
ll=$(acroread_get_ll ${pkg})
for launcher in ${LAUNCHERS} ; do
mv ${launcher} ${launcher}.${ll}
done
if [[ -z ${fl} ]] ; then
fl=${ll}
linguas="${ll}"
else
linguas="${linguas} ${ll}"
fi
fi
done
if [[ ${linguas} == ${fl} ]] ; then
# Only one lingua selected - skip building the wrappers
for launcher in ${LAUNCHERS} ; do
mv ${launcher}.${fl} ${launcher} ||
die "Failed to put ${launcher}.${fl} back to ${launcher}; please report"
done
else
# Build wrappers. Launch the acroread for the environment variable
# LANG (matched with a trailing * so that for example 'de_DE' matches
# 'de', 'en_GB' matches 'en' etc).
#
# This is a bit premature at the moment on 8.1.1, for two reasons:
# 1) The only language issued so far by Adobe is English, and the
# provided launcher doesn't bring out its strings separately
# (indicating internationalisation hasn't yet begin for 8.1.1)
# 2) HelpViewer is new - I don't know if Adobe are likely to
# internationalise it or not.
for launcher in ${LAUNCHERS} ; do
cat > ${launcher} <<-EOF
#!/bin/bash
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
#
# Automatically generated by ${CATEGORY}/${PF}
# Exec the acroread script for the language chosen in
# LC_ALL/LC_MESSAGES/LANG (first found takes precedence, as in glibc)
L=\${LC_ALL}
L=\${L:-\${LC_MESSAGES}}
L=\${L:-\${LANG}}
case \${L} in
EOF
for ll in ${linguas} ; do
echo "${ll}*) exec ${INSTALLDIR}/${launcher}.${ll} \"\$@\";;" >> ${launcher}
done
# default to English (in particualr for LANG=C)
cat >> ${launcher} <<-EOF
*) exec ${INSTALLDIR}/${launcher}.${fl} "\$@";;
esac
EOF
chmod 755 ${launcher}
done
fi
}
src_install() {
local dir
# Install desktop files
domenu Adobe/Reader8/Resource/Support
# Install Icons - choose 48x48 since that's what the previous versions
# supplied.
doicon Adobe/Reader8/Resource/Icons/48x48
dodir /opt
chown -R --dereference -L root:0 Adobe
cp -dpR Adobe "${D}"opt/
# The Browser_Plugin_HowTo.txt is now in a subdirectory, which
# is named according to the language the user is using.
# Ie. for German, it is in a DEU directory. See bug #118015
dodoc Adobe/Reader8/Browser/HowTo/*/Browser_Plugin_HowTo.txt
if use nsplugin ; then
exeinto /opt/netscape/plugins
doexe Adobe/Reader8/Browser/intellinux/nppdf.so
inst_plugin /opt/netscape/plugins/nppdf.so
fi
if ! use ldap ; then
rm "${D}"${INSTALLDIR}/Adobe/Reader8/Reader/intellinux/plug_ins/PPKLite.api
fi
# libcups is needed for printing support (bug 118417)
if use x86 && ! use cups ; then
mv "${WORKDIR}"/libcups.so-i386 "${WORKDIR}"/libcups.so.2
exeinto ${INSTALLDIR}/Adobe/Reader8/Reader/intellinux/lib
doexe "${WORKDIR}"/libcups.so.2
dosym libcups.so.2 ${INSTALLDIR}/Adobe/Reader8/Reader/intellinux/lib/libcups.so
fi
dodir /opt/bin
for launcher in ${LAUNCHERS} ; do
dosym /opt/${launcher} /opt/bin/${launcher/*bin\/}
done
}
pkg_postinst () {
local ll lc
grep -q GRE_PATH= /etc/gre.d/* 2> /dev/null
if [[ $? != "0" ]] ; then
if use x86 ; then
for lib in /opt/seamonkey /usr/lib/seamonkey /usr/lib/mozilla-firefox ; do
if [[ -f ${lib}/libgtkembedmoz.so ]] ; then
mkdir -p /etc/gre.d
cat > /etc/gre.d/gre.conf <<-EOF
GRE_PATH=${lib}
EOF
elog "Adobe Reader depends on libgtkembedmoz.so, which I've found on"
elog "your system in ${lib}, and configured in /etc/gre.d/gre.conf."
break # don't search any more libraries
fi
done
fi
if use amd64 ; then
for lib in /opt/seamonkey ; do
if [[ -f ${lib}/libgtkembedmoz.so ]] ; then
mkdir -p /etc/gre.d
cat > /etc/gre.d/gre.conf <<-EOF
GRE_PATH=${lib}
EOF
elog "Adobe Reader depends on libgtkembedmoz.so, which I've found on"
elog "your system in ${lib}, and configured in /etc/gre.d/gre.conf."
break # don't search any more libraries
fi
done
fi
fi
use ldap ||
elog "The Adobe Reader security plugin can be enabled with USE=ldap"
use nsplugin ||
elog "The Adobe Reader browser plugin can be enabled with USE=nsplugin"
lc=0
for ll in ${LINGUA_LIST} ; do
use linguas_${ll/:*} && (( lc = ${lc} + 1 ))
done
if [[ ${lc} > 1 ]] ; then
elog "Multiple languages have been installed, selected via a wrapper script."
elog "The language is selected according to the LANG environment variable"
elog "(defaulting to English if LANG is not set, or no matching language"
elog "version is installed). Users may need to remove their preferences in"
elog "~/.adobe to switch languages."
fi
grep -q GRE_PATH= /etc/gre.d/* 2> /dev/null
if [[ $? != "0" ]] ; then
ewarn "Adobe Reader depends dynamically on libgtkembedmoz.so, which should come"
ewarn "with Mozilla Firefox, XULRunner or Seamonkey, however it couldn't be found."
ewarn "The first time you start acroread, it will complain about this, telling you"
ewarn "to add the path to it to your preferences. Clear the error dialog, close the"
ewarn "beyond Adobe Reader dialog, go to Edit -> Preferences -> Internet and set the"
ewarn "libgtkembedmoz directory to the place where it exists, then close and restart"
ewarn "acroread."
fi
}
|