diff options
author | 2011-11-02 08:11:30 +0000 | |
---|---|---|
committer | 2011-11-02 08:11:30 +0000 | |
commit | 1fcbbe5c2c78b050ac779c34ca0d4f39e8cdc416 (patch) | |
tree | fb5055c974bfbe2e58944e5f69a6c2b92e0755a5 | |
parent | fpc has its own idea about LDFLAGS (bug #389265) (diff) | |
download | gentoo-2-1fcbbe5c2c78b050ac779c34ca0d4f39e8cdc416.tar.gz gentoo-2-1fcbbe5c2c78b050ac779c34ca0d4f39e8cdc416.tar.bz2 gentoo-2-1fcbbe5c2c78b050ac779c34ca0d4f39e8cdc416.zip |
Break away if lingua is not enabled. Fixes bug #389293.
(Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
-rw-r--r-- | app-office/libreoffice-l10n/ChangeLog | 6 | ||||
-rw-r--r-- | app-office/libreoffice-l10n/libreoffice-l10n-3.4.3-r3.ebuild | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/app-office/libreoffice-l10n/ChangeLog b/app-office/libreoffice-l10n/ChangeLog index 9b4a7ec2df24..b66c2fb33493 100644 --- a/app-office/libreoffice-l10n/ChangeLog +++ b/app-office/libreoffice-l10n/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-office/libreoffice-l10n # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/ChangeLog,v 1.9 2011/10/26 15:28:33 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/ChangeLog,v 1.10 2011/11/02 08:11:30 scarabeus Exp $ + + 02 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org> + libreoffice-l10n-3.4.3-r3.ebuild: + Break away if lingua is not enabled. Fixes bug #389293. 26 Oct 2011; Tony Vroon <chainsaw@gentoo.org> libreoffice-l10n-3.4.3-r3.ebuild: diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-3.4.3-r3.ebuild b/app-office/libreoffice-l10n/libreoffice-l10n-3.4.3-r3.ebuild index 14566982104e..850b5fa963d7 100644 --- a/app-office/libreoffice-l10n/libreoffice-l10n-3.4.3-r3.ebuild +++ b/app-office/libreoffice-l10n/libreoffice-l10n-3.4.3-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/libreoffice-l10n-3.4.3-r3.ebuild,v 1.2 2011/10/26 15:28:33 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/libreoffice-l10n-3.4.3-r3.ebuild,v 1.3 2011/11/02 08:11:30 scarabeus Exp $ EAPI=4 @@ -72,6 +72,9 @@ src_unpack() { local lang dir rpmdir for lang in ${LINGUAS}; do + # break away if not enabled; paludis support + use linguas_${lang} || continue + dir=${lang/_/-} # for english we provide just helppack, as translation is always there |