diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2014-12-27 21:18:50 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2014-12-27 21:18:50 +0000 |
commit | b56d5f625723e7c280c4dac90cbb63b441a7e3fe (patch) | |
tree | 527dd95c04b37ad1e5dde02b2013274ab51b3016 /app-text | |
parent | Improve dependencies (diff) | |
download | gentoo-2-b56d5f625723e7c280c4dac90cbb63b441a7e3fe.tar.gz gentoo-2-b56d5f625723e7c280c4dac90cbb63b441a7e3fe.tar.bz2 gentoo-2-b56d5f625723e7c280c4dac90cbb63b441a7e3fe.zip |
Version bump, bug 530506
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 84AD142F)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/mythes/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/mythes/mythes-1.2.4.ebuild | 28 |
2 files changed, 35 insertions, 2 deletions
diff --git a/app-text/mythes/ChangeLog b/app-text/mythes/ChangeLog index 868508ad1325..8e96c1a499c9 100644 --- a/app-text/mythes/ChangeLog +++ b/app-text/mythes/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/mythes -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/mythes/ChangeLog,v 1.17 2012/12/08 12:25:25 maekke Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/mythes/ChangeLog,v 1.18 2014/12/27 21:18:50 dilfridge Exp $ + +*mythes-1.2.4 (27 Dec 2014) + + 27 Dec 2014; Andreas K. Huettel <dilfridge@gentoo.org> +mythes-1.2.4.ebuild: + Version bump, bug 530506 08 Dec 2012; Markus Meier <maekke@gentoo.org> mythes-1.2.3.ebuild: add ~arm, bug #440908 diff --git a/app-text/mythes/mythes-1.2.4.ebuild b/app-text/mythes/mythes-1.2.4.ebuild new file mode 100644 index 000000000000..c34f7a444531 --- /dev/null +++ b/app-text/mythes/mythes-1.2.4.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/mythes/mythes-1.2.4.ebuild,v 1.1 2014/12/27 21:18:50 dilfridge Exp $ + +EAPI=5 + +DESCRIPTION="A simple thesaurus for Libreoffice" +HOMEPAGE="http://hunspell.sourceforge.net/" +SRC_URI="mirror://sourceforge/hunspell/MyThes/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +RDEPEND="app-text/hunspell" +DEPEND="${DEPEND} + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${ED}" -name '*.la' -exec rm -f {} + +} |