diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-11 20:22:54 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-11 20:22:54 +0000 |
commit | 7ef8c9f8a4a130b59b580ec939525c4318067b9f (patch) | |
tree | 1f5ef773d5d4f56750b8f2aa91be650b0d70a937 /app-text/acroread | |
parent | Initial import. Closes #35725. (diff) | |
download | gentoo-2-7ef8c9f8a4a130b59b580ec939525c4318067b9f.tar.gz gentoo-2-7ef8c9f8a4a130b59b580ec939525c4318067b9f.tar.bz2 gentoo-2-7ef8c9f8a4a130b59b580ec939525c4318067b9f.zip |
Call has_multilib_profile from pkg_setup instead of global scope.
(Portage version: 2.0.51.22)
Diffstat (limited to 'app-text/acroread')
-rw-r--r-- | app-text/acroread/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/acroread/acroread-5.10.ebuild | 10 | ||||
-rw-r--r-- | app-text/acroread/acroread-7.0.0.2-r2.ebuild | 10 |
3 files changed, 17 insertions, 9 deletions
diff --git a/app-text/acroread/ChangeLog b/app-text/acroread/ChangeLog index faffb6ca3328..ed20224eb036 100644 --- a/app-text/acroread/ChangeLog +++ b/app-text/acroread/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/acroread # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/ChangeLog,v 1.58 2005/08/04 22:50:16 herbs Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/ChangeLog,v 1.59 2005/08/11 20:21:39 flameeyes Exp $ + + 11 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> acroread-5.10.ebuild, + acroread-7.0.0.2-r2.ebuild: + Call has_multilib_profile from pkg_setup instead of global scope. 04 Aug 2005; Herbie Hopkins <herbs@gentoo.org> acroread-7.0.0.2-r2.ebuild: Don't disable security plugin on amd64 any more since we have openldap in diff --git a/app-text/acroread/acroread-5.10.ebuild b/app-text/acroread/acroread-5.10.ebuild index e1d20e4bf6f7..65dfc2baf98f 100644 --- a/app-text/acroread/acroread-5.10.ebuild +++ b/app-text/acroread/acroread-5.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-5.10.ebuild,v 1.7 2005/03/28 15:54:53 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-5.10.ebuild,v 1.8 2005/08/11 20:21:39 flameeyes Exp $ inherit nsplugins eutils @@ -25,9 +25,11 @@ INSTALLDIR=/opt/Acrobat5 S="${WORKDIR}/installers" -# x86 binary package, ABI=x86 -# Danny van Dyk <kugelfang@gentoo.org> 2005/03/25 -has_multilib_profile && ABI="x86" +pkg_setup() { + # x86 binary package, ABI=x86 + # Danny van Dyk <kugelfang@gentoo.org> 2005/03/25 + has_multilib_profile && ABI="x86" +} pkg_setup() { if ! use noplugin ; then diff --git a/app-text/acroread/acroread-7.0.0.2-r2.ebuild b/app-text/acroread/acroread-7.0.0.2-r2.ebuild index f4a36b4e7760..4e55de4bad35 100644 --- a/app-text/acroread/acroread-7.0.0.2-r2.ebuild +++ b/app-text/acroread/acroread-7.0.0.2-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-7.0.0.2-r2.ebuild,v 1.5 2005/08/04 22:50:16 herbs Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/acroread/acroread-7.0.0.2-r2.ebuild,v 1.6 2005/08/11 20:21:39 flameeyes Exp $ inherit nsplugins eutils rpm versionator @@ -32,9 +32,11 @@ INSTALLDIR=/opt/Acrobat7 S=${WORKDIR}/usr/local/Adobe/Acrobat7.0 -# x86 binary package, ABI=x86 -# Danny van Dyk <kugelfang@gentoo.org> 2005/03/25 -has_multilib_profile && ABI="x86" +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 |