diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-20 20:27:11 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-20 20:27:11 +0000 |
commit | 7edd63f7e8df6cb7d02d3891861eb5a56d5081f0 (patch) | |
tree | fd4c47fcb1dc52d603dc23a1f7ab48f8f285a2e0 | |
parent | Add ~x86-fbsd keyword as per bug #141142. (diff) | |
download | gentoo-2-7edd63f7e8df6cb7d02d3891861eb5a56d5081f0.tar.gz gentoo-2-7edd63f7e8df6cb7d02d3891861eb5a56d5081f0.tar.bz2 gentoo-2-7edd63f7e8df6cb7d02d3891861eb5a56d5081f0.zip |
Fix installation on non-GNU systems (bug #138157) and add ~x86-fbsd keyword.
(Portage version: 2.1.1_pre3-r1)
-rw-r--r-- | mail-client/mozilla-thunderbird/ChangeLog | 6 | ||||
-rw-r--r-- | mail-client/mozilla-thunderbird/mozilla-thunderbird-1.5.0.4.ebuild | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/mail-client/mozilla-thunderbird/ChangeLog b/mail-client/mozilla-thunderbird/ChangeLog index 9ca383be3229..83c7a2566250 100644 --- a/mail-client/mozilla-thunderbird/ChangeLog +++ b/mail-client/mozilla-thunderbird/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for mail-client/mozilla-thunderbird # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/mozilla-thunderbird/ChangeLog,v 1.119 2006/06/12 02:18:27 anarchy Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/mozilla-thunderbird/ChangeLog,v 1.120 2006/07/20 20:27:11 flameeyes Exp $ + + 20 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> + mozilla-thunderbird-1.5.0.4.ebuild: + Fix installation on non-GNU systems (bug #138157) and add ~x86-fbsd keyword. 12 Jun 2006; Jory A. Pratt <anarchy@gentoo.org> -mozilla-thunderbird-1.0.7-r1.ebuild, diff --git a/mail-client/mozilla-thunderbird/mozilla-thunderbird-1.5.0.4.ebuild b/mail-client/mozilla-thunderbird/mozilla-thunderbird-1.5.0.4.ebuild index 21e69ee252ea..18b4d240c102 100644 --- a/mail-client/mozilla-thunderbird/mozilla-thunderbird-1.5.0.4.ebuild +++ b/mail-client/mozilla-thunderbird/mozilla-thunderbird-1.5.0.4.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/mozilla-thunderbird/mozilla-thunderbird-1.5.0.4.ebuild,v 1.6 2006/06/15 00:55:02 anarchy Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/mozilla-thunderbird/mozilla-thunderbird-1.5.0.4.ebuild,v 1.7 2006/07/20 20:27:11 flameeyes Exp $ -unset ALLOWED_FLAGS # stupid extra-functions.sh ... bug 49179 +unset ALLOWED_FLAGS # stupid extra-functions.sh ... bug 49179 inherit flag-o-matic toolchain-funcs eutils mozconfig-2 mozilla-launcher makeedit multilib autotools PVER="0.1" @@ -96,7 +96,7 @@ src_compile() { #################################### append-flags -freorder-blocks -fno-reorder-functions - # Export CPU_ARCH_TEST as it is not exported by default. + # Export CPU_ARCH_TEST as it is not exported by default. case $(tc-arch) in amd64) [[ ${ABI} == "x86" ]] && CPU_ARCH_TEST="x86" || CPU_ARCH_TEST="x86_64" ;; ia64) CPU_ARCH_TEST="ia64" ;; @@ -133,7 +133,7 @@ src_install() { # Most of the installation happens here dodir ${MOZILLA_FIVE_HOME} - cp -RL --no-preserve=links ${S}/dist/bin/* ${D}${MOZILLA_FIVE_HOME} + cp -RL "${S}/dist/bin/"* "${D}${MOZILLA_FIVE_HOME}" || die "Copy of files failed" # Create directory structure to support portage-installed extensions. # See update_chrome() in mozilla-launcher |