# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-9.5.5.ebuild,v 1.4 2013/07/13 19:07:04 zmedico Exp $ EAPI=5 inherit eutils gnome2-utils nsplugins DESCRIPTION="Adobe's PDF reader" SRC_URI="http://ardownload.adobe.com/pub/adobe/reader/unix/9.x/${PV}/enu/AdbeRdr${PV}-1_i486linux_enu.tar.bz2" HOMEPAGE="http://www.adobe.com/products/reader/" LICENSE="Adobe" KEYWORDS="-* amd64 x86 ~amd64-linux ~x86-linux" SLOT="0" IUSE="cups html ldap nsplugin" # asian fonts from separate package: IUSE+=" linguas_zh_CN linguas_zh_TW linguas_ja linguas_ko" RESTRICT="strip mirror" DEPEND="dev-util/bsdiff" RDEPEND="media-libs/fontconfig x86? ( =dev-libs/openssl-0.9.8* ) cups? ( net-print/cups ) x86? ( x11-libs/gtk+:2 x11-libs/pango[X] net-dns/libidn || ( x11-libs/pangox-compat "${WORKDIR}/nppdf.so.patch" << ENDOFFILE QlNESUZGNDBIAAAAAAAAAC8AAAAAAAAAYL0CAAAAAABCWmg5MUFZJlNZFBL6EAAAFvBh+DwgDAgQ QAAAEABAIAAgACICaGjJtQoaaYAFPzpGDIjiUXSFYEuGy1ix8XckU4UJAUEvoQBCWmg5MUFZJlNZ jrYrlQABYGAAwAAIAAAIIAAwzAUppgKbECni7kinChIR1sVyoEJaaDkxQVkmU1kzGPRGAAAAEYAA AIYFAwAgACIHqbUIYAdBF8XckU4UJAzGPRGA ENDOFFILE einfo "Patching nppdf.so" mv Adobe/Reader9/Browser/intellinux/nppdf.so Adobe/Reader9/Browser/intellinux/nppdf.so.orig || die bspatch Adobe/Reader9/Browser/intellinux/nppdf.so.orig Adobe/Reader9/Browser/intellinux/nppdf.so "${WORKDIR}/nppdf.so.patch" || die rm Adobe/Reader9/Browser/intellinux/nppdf.so.orig || die } src_install() { local LAUNCHER="Adobe/Reader9/bin/acroread" # Install desktop files domenu Adobe/Reader9/Resource/Support/AdobeReader.desktop # Install commonly used icon sizes for res in 16x16 22x22 32x32 48x48 64x64 128x128 ; do insinto /usr/share/icons/hicolor/${res}/apps doins Adobe/Reader9/Resource/Icons/${res}/* done dodir /opt chown -R --dereference -L root:0 Adobe cp -dpR Adobe "${ED}"opt/ || die # remove some bundled libs for mylib in ${REMOVELIBS}; do einfo Removing bundled ${mylib} rm -v "${ED}"/opt/Adobe/Reader9/Reader/intellinux/lib/${mylib}* done doman Adobe/Reader9/Resource/Shell/acroread.1.gz if use nsplugin; then exeinto /opt/netscape/plugins doexe Adobe/Reader9/Browser/intellinux/nppdf.so inst_plugin /opt/netscape/plugins/nppdf.so fi dodir /opt/bin dosym /opt/${LAUNCHER} /opt/bin/${LAUNCHER/*bin\/} # We need to set a MOZILLA_COMP_PATH for seamonkey and firefox since # they don't install a configuration file for libgtkembedmoz.so # detection in /etc/gre.d/ like xulrunner did. if use x86 && use html; then for lib in /opt/seamonkey /usr/lib/seamonkey /usr/lib/mozilla-firefox; do if [[ -f ${lib}/libgtkembedmoz.so ]] ; then echo "MOZILLA_COMP_PATH=${lib}" >> "${ED}"${INSTALLDIR}/Adobe/Reader9/Reader/GlobalPrefs/mozilla_config elog "Adobe Reader depends on libgtkembedmoz.so, which I've found on" elog "your system in ${lib}, and configured in ${INSTALLDIR}/Adobe/Reader9/Reader/GlobalPrefs/mozilla_config." break # don't search any more libraries fi done fi } pkg_preinst() { gnome2_icon_savelist } pkg_postinst () { if use x86 && ! use html; then echo ewarn "If you want html support and/or view the Adobe Reader help you have" ewarn "to re-emerge acroread with USE=\"html\"." echo fi if use amd64 && use nsplugin && ! has_version www-plugins/nspluginwrapper; then echo elog "If you're running a 64bit browser you may also want to install" elog "\"www-plugins/nspluginwrapper\" to be able to use the Adobe Reader" elog "browser plugin." echo fi gnome2_icon_cache_update } pkg_postrm() { gnome2_icon_cache_update }