blob: d712dd1c7eb2d602bf106c3f0b06c036685c4589 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-7.0.5-r1.ebuild,v 1.2 2006/01/17 19:45:18 genstef Exp $
inherit eutils nsplugins rpm versionator
DESCRIPTION="Adobe's PDF reader"
HOMEPAGE="http://www.adobe.com/products/acrobat/"
SRC_HEAD="http://ardownload.adobe.com/pub/adobe/reader/unix/7x/7.0.5"
SRC_FOOT="-$(replace_version_separator 3 "-")-1.i386.rpm"
SRC_URI="nls? ( linguas_de? ( ${SRC_HEAD}/deu/AdobeReader_deu${SRC_FOOT} )
!linguas_de? ( linguas_fr? ( ${SRC_HEAD}/fra/AdobeReader_fra${SRC_FOOT} )
!linguas_fr? ( linguas_ja? ( ${SRC_HEAD}/jpn/AdobeReader_jpn${SRC_FOOT} )
!linguas_ja? ( linguas_ko? ( ${SRC_HEAD}/kor/AdobeReader_kor${SRC_FOOT} )
!linguas_ko? ( ${SRC_HEAD}/enu/AdobeReader_enu${SRC_FOOT} ) ) ) ) )
!nls? ( ${SRC_HEAD}/enu/AdobeReader_enu${SRC_FOOT} )
x86? ( !cups? ( mirror://gentoo/libcups.so-i386.bz2 ) )"
LICENSE="Adobe"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE="cups ldap nsplugin nls"
RESTRICT="nostrip"
RDEPEND="virtual/libc
x86? ( >=x11-libs/gtk+-2.0
cups? ( net-print/cups )
ldap? ( net-nds/openldap ) )
amd64? ( >=app-emulation/emul-linux-x86-baselibs-2.4.2
>=app-emulation/emul-linux-x86-gtklibs-2.0 )"
PROVIDE="virtual/pdfviewer"
INSTALLDIR=/opt/Acrobat7
S=${WORKDIR}/usr/local/Adobe/Acrobat7.0
pkg_setup() {
# x86 binary package, ABI=x86
# Danny van Dyk <kugelfang@gentoo.org> 2005/03/25
has_multilib_profile && ABI="x86"
}
src_unpack() {
rpm_src_unpack
cd ${S}
epatch ${FILESDIR}/acroread-scim.patch
}
src_install() {
local i
cp Resource/Support/AdobeReader_KDE.desktop AdobeReader.desktop
domenu AdobeReader.desktop
doicon Resource/Icons/AdobeReader.png
dodir ${INSTALLDIR}
DIRS="Reader Resource"
for i in ${DIRS}
do
if [ -d ${i} ] ; then
chown -R --dereference -L root:0 ${i}
mv ${i} ${D}${INSTALLDIR}
fi
done
exeinto ${INSTALLDIR}
doexe bin/acroread || die "doexe failed"
# 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 Browser/${LANG_TAG}/Browser_Plugin_HowTo.txt
if use nsplugin ; then
exeinto /opt/netscape/plugins
doexe Browser/intellinux/nppdf.so
inst_plugin /opt/netscape/plugins/nppdf.so
fi
if ! use ldap ; then
rm ${D}${INSTALLDIR}/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}/Reader/intellinux/lib
doexe ${WORKDIR}/libcups.so.2
dosym libcups.so.2 ${INSTALLDIR}/Reader/intellinux/lib/libcups.so
fi
dodir /usr/bin
dosym ${INSTALLDIR}/acroread /usr/bin/acroread
}
pkg_postinst () {
# fix wrong directory permissions (bug #25931)
find ${INSTALLDIR}/. -type d | xargs chmod 755 || die
einfo "The Acrobat(TM) Security Plugin will be enabled with USE=ldap"
einfo "The Acrobat(TM) Browser Plugin will be enabled with USE=nsplugin"
}
|