diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2012-06-01 06:16:11 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2012-06-01 06:16:11 +0000 |
commit | ed7c308c7853aec5762821d069033079cb31b2c4 (patch) | |
tree | 98d040e1036ed088c8bc32874b03ca839372d1bf /app-office/libreoffice-l10n | |
parent | marked x86 per bug 418085 (diff) | |
download | gentoo-2-ed7c308c7853aec5762821d069033079cb31b2c4.tar.gz gentoo-2-ed7c308c7853aec5762821d069033079cb31b2c4.tar.bz2 gentoo-2-ed7c308c7853aec5762821d069033079cb31b2c4.zip |
Fix command-not-found msgs. Thanks to Nikoli.
(Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
Diffstat (limited to 'app-office/libreoffice-l10n')
-rw-r--r-- | app-office/libreoffice-l10n/ChangeLog | 6 | ||||
-rw-r--r-- | app-office/libreoffice-l10n/libreoffice-l10n-3.5.4.ebuild | 23 |
2 files changed, 8 insertions, 21 deletions
diff --git a/app-office/libreoffice-l10n/ChangeLog b/app-office/libreoffice-l10n/ChangeLog index fac3faa3c9c9..673f588af77d 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-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/ChangeLog,v 1.47 2012/05/31 10:08:17 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/ChangeLog,v 1.48 2012/06/01 06:16:11 scarabeus Exp $ + + 01 Jun 2012; Tomáš Chvátal <scarabeus@gentoo.org> + libreoffice-l10n-3.5.4.ebuild: + Fix command-not-found msgs. Thanks to Nikoli. 31 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> metadata.xml: Silence repoman wrt local desc in metadata. diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-3.5.4.ebuild b/app-office/libreoffice-l10n/libreoffice-l10n-3.5.4.ebuild index 7182c36d0c46..9b6a00a3b88a 100644 --- a/app-office/libreoffice-l10n/libreoffice-l10n-3.5.4.ebuild +++ b/app-office/libreoffice-l10n/libreoffice-l10n-3.5.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 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.5.4.ebuild,v 1.3 2012/05/31 10:07:26 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/libreoffice-l10n-3.5.4.ebuild,v 1.4 2012/06/01 06:16:11 scarabeus Exp $ EAPI=4 @@ -52,13 +52,10 @@ done RDEPEND="${SPELL_DICTS_DEPEND}" unset X SPELL_DICTS SPELL_DICTS_DEPEND -# blockers for old libreoffice with bundled linguas RDEPEND+=" - !=app-office/libreoffice-3.4.9999-r1 - !=app-office/libreoffice-9999-r1 || ( - >=app-office/libreoffice-3.4.4.2-r1 - >=app-office/libreoffice-bin-3.4.4.2-r1 + >=app-office/libreoffice-$(get_version_component_range 1-2 ${MY_PV}) + >=app-office/libreoffice-bin-$(get_version_component_range 1-2 ${MY_PV}) ) " @@ -93,10 +90,6 @@ src_unpack() { rpm_unpack ./"${rpmdir}/"*.rpm fi done - OO_EXTENSIONS=() - for i in ${ooextused[@]}; do - OO_EXTENSIONS+=( ${i} ) - done } src_prepare() { :; } @@ -113,14 +106,4 @@ src_install() { fi # remove extensions that are in the l10n for some weird reason rm -rf "${ED}"/usr/$(get_libdir)/${PN/-l10n/}/share/extensions/ - - echo "${OO_EXTENSIONS[@]}" - office-ext_src_install -} - -pkg_postinst() { - office-ext_pkg_postinst -} -pkg_prerm() { - office-ext_pkg_prerm } |