diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2006-01-17 19:45:18 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2006-01-17 19:45:18 +0000 |
commit | 3897611ffca61f86b9bef0e7effb9c7867207a8b (patch) | |
tree | 7a42cc34b81d2ef989adfc18825b28973fb1bb64 /app-text/acroread | |
parent | Fix chmod thanks to Alexander Skwar <askwar@digitalprojects.com> in bug 118015 (diff) | |
download | gentoo-2-3897611ffca61f86b9bef0e7effb9c7867207a8b.tar.gz gentoo-2-3897611ffca61f86b9bef0e7effb9c7867207a8b.tar.bz2 gentoo-2-3897611ffca61f86b9bef0e7effb9c7867207a8b.zip |
also fix -r1
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'app-text/acroread')
-rw-r--r-- | app-text/acroread/acroread-7.0.5-r1.ebuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app-text/acroread/acroread-7.0.5-r1.ebuild b/app-text/acroread/acroread-7.0.5-r1.ebuild index 43782553ed65..d712dd1c7eb2 100644 --- a/app-text/acroread/acroread-7.0.5-r1.ebuild +++ b/app-text/acroread/acroread-7.0.5-r1.ebuild @@ -1,6 +1,6 @@ # 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.1 2006/01/12 12:51:22 herbs Exp $ +# $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 @@ -57,14 +57,17 @@ src_install() { for i in ${DIRS} do if [ -d ${i} ] ; then - chown -R --dereference root:0 ${i} + chown -R --dereference -L root:0 ${i} mv ${i} ${D}${INSTALLDIR} fi done exeinto ${INSTALLDIR} doexe bin/acroread || die "doexe failed" - dodoc Browser/Browser_Plugin_HowTo.txt + # 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 @@ -90,7 +93,7 @@ src_install() { pkg_postinst () { # fix wrong directory permissions (bug #25931) - find ${INSTALLDIR} -type d | xargs chmod 755 || die + 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" |