diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-11 20:27:54 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-11 20:27:54 +0000 |
commit | 6f215f42ceb049c2c98825f7ebca28c05775ed24 (patch) | |
tree | 3095abeb9182e8c2628748338904d67b4c12eee2 /app-office | |
parent | Call has_multilib_profile from pkg_setup instead of global scope. (diff) | |
download | historical-6f215f42ceb049c2c98825f7ebca28c05775ed24.tar.gz historical-6f215f42ceb049c2c98825f7ebca28c05775ed24.tar.bz2 historical-6f215f42ceb049c2c98825f7ebca28c05775ed24.zip |
Call has_multilib_profile from pkg_setup instead of global scope.
Package-Manager: portage-2.0.51.22
Diffstat (limited to 'app-office')
4 files changed, 26 insertions, 18 deletions
diff --git a/app-office/mozilla-sunbird-bin/ChangeLog b/app-office/mozilla-sunbird-bin/ChangeLog index f4e169483b33..9f47a432a41f 100644 --- a/app-office/mozilla-sunbird-bin/ChangeLog +++ b/app-office/mozilla-sunbird-bin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-office/mozilla-sunbird-bin # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/mozilla-sunbird-bin/ChangeLog,v 1.9 2005/07/27 16:22:40 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/mozilla-sunbird-bin/ChangeLog,v 1.10 2005/08/11 20:27:54 flameeyes Exp $ + + 11 Aug 2005; Diego Pettenò <flameeyes@gentoo.org> + mozilla-sunbird-bin-0.2.ebuild, mozilla-sunbird-bin-0.2.20050724.ebuild: + Call has_multilib_profile from pkg_setup instead of global scope. *mozilla-sunbird-bin-0.2.20050724 (27 Jul 2005) diff --git a/app-office/mozilla-sunbird-bin/Manifest b/app-office/mozilla-sunbird-bin/Manifest index 5874faa87b4a..98c78ba0515a 100644 --- a/app-office/mozilla-sunbird-bin/Manifest +++ b/app-office/mozilla-sunbird-bin/Manifest @@ -1,19 +1,19 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 cf64d048ef08a377e7b83b4105681575 mozilla-sunbird-bin-0.2.20050724.ebuild 2010 -MD5 355345b3ea1aca237df7e010998e7e99 ChangeLog 2039 +MD5 2976a36768636c85ac287550400d2472 ChangeLog 2238 +MD5 1eeffcd3ff167327159ba35f72ec0017 mozilla-sunbird-bin-0.2.ebuild 1818 +MD5 f3b96ee305fb7e3d3b082cf90f203c5a mozilla-sunbird-bin-0.2.20050724.ebuild 2032 MD5 ce23390351fe8020387d93ee29e09a3d metadata.xml 160 -MD5 9c8d929107f0f3f041c975dea0a1e9e6 mozilla-sunbird-bin-0.2.ebuild 1796 MD5 19aa4d6cfb9d80bd12d521ff72517722 files/app-chrome.manifest-0.2.20050724 1288 MD5 4b0b77beb6e9d3122c6101aa5f37b6a2 files/digest-mozilla-sunbird-bin-0.2 84 MD5 5a39653cb1d47b96143a679acb9dfd7f files/digest-mozilla-sunbird-bin-0.2.20050724 90 MD5 4496a3c35ce5936332ac41702c3e32f7 files/icon/mozillasunbird-bin.desktop 199 MD5 fa424078d248f495300ecc507858beb2 files/icon/mozillasunbird-bin-icon.png 6418 -----BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) +Version: GnuPG v1.4.2 (GNU/Linux) -iD8DBQFC57TpBXaUFmZvwyMRAqgZAKCqhNQXQ56KrhYJqy4hlbkVzeUo2ACg3a3S -8hmQt9t/DMoSrVQrDSxZPyc= -=bvT9 +iD8DBQFC+7Toj5H05b2HAEkRApLlAKCSHaqWmXSmaehEHIgb+ozo93nCEQCeLPv8 +pl7QTRB+46jA3WtLSlNS9+s= +=drhG -----END PGP SIGNATURE----- diff --git a/app-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.20050724.ebuild b/app-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.20050724.ebuild index bfe972b8c92f..8ed52e5a5c48 100644 --- a/app-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.20050724.ebuild +++ b/app-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.20050724.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-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.20050724.ebuild,v 1.1 2005/07/27 16:22:40 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.20050724.ebuild,v 1.2 2005/08/11 20:27:54 flameeyes Exp $ inherit mozilla-launcher multilib @@ -28,10 +28,12 @@ RDEPEND="virtual/x11 S=${WORKDIR}/sunbird -# This is a binary x86 package => ABI=x86 -# Please keep this in future versions -# Danny van Dyk <kugelfang@gentoo.org> 2005/03/26 -has_multilib_profile && ABI="x86" +pkg_config() { + # This is a binary x86 package => ABI=x86 + # Please keep this in future versions + # Danny van Dyk <kugelfang@gentoo.org> 2005/03/26 + has_multilib_profile && ABI="x86" +} src_install() { declare MOZILLA_FIVE_HOME=/opt/sunbird diff --git a/app-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.ebuild b/app-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.ebuild index 39edeee384d5..d1442fc9190f 100644 --- a/app-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.ebuild +++ b/app-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.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-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.ebuild,v 1.2 2005/07/25 03:49:18 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/mozilla-sunbird-bin/mozilla-sunbird-bin-0.2.ebuild,v 1.3 2005/08/11 20:27:54 flameeyes Exp $ inherit mozilla-launcher multilib @@ -28,10 +28,12 @@ RDEPEND="virtual/x11 S=${WORKDIR}/sunbird -# This is a binary x86 package => ABI=x86 -# Please keep this in future versions -# Danny van Dyk <kugelfang@gentoo.org> 2005/03/26 -has_multilib_profile && ABI="x86" +pkg_config() { + # This is a binary x86 package => ABI=x86 + # Please keep this in future versions + # Danny van Dyk <kugelfang@gentoo.org> 2005/03/26 + has_multilib_profile && ABI="x86" +} src_install() { declare MOZILLA_FIVE_HOME=/opt/sunbird |