diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-12-22 10:59:02 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-12-22 10:59:02 +0000 |
commit | 4b632f2409c89c947a63f00e186a1438a1f07b0c (patch) | |
tree | 41589e65a9da4e9d8f9eb37d88d35721d6deabfa /app-text/mythes | |
parent | Add beta2, punt beta1 (most build fixes will be in beta3 so the same compile ... (diff) | |
download | gentoo-2-4b632f2409c89c947a63f00e186a1438a1f07b0c.tar.gz gentoo-2-4b632f2409c89c947a63f00e186a1438a1f07b0c.tar.bz2 gentoo-2-4b632f2409c89c947a63f00e186a1438a1f07b0c.zip |
Version bump to latest.
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Diffstat (limited to 'app-text/mythes')
-rw-r--r-- | app-text/mythes/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/mythes/mythes-1.2.2.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/app-text/mythes/ChangeLog b/app-text/mythes/ChangeLog index 3f03e4d20a28..ad280fb83c40 100644 --- a/app-text/mythes/ChangeLog +++ b/app-text/mythes/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/mythes # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/mythes/ChangeLog,v 1.8 2011/12/18 20:44:56 halcy0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/mythes/ChangeLog,v 1.9 2011/12/22 10:59:02 scarabeus Exp $ + +*mythes-1.2.2 (22 Dec 2011) + + 22 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org> +mythes-1.2.2.ebuild: + Version bump to latest. 18 Dec 2011; Mark Loeser <halcy0n@gentoo.org> mythes-1.2.1.ebuild: Stable for ppc; bug #387187 diff --git a/app-text/mythes/mythes-1.2.2.ebuild b/app-text/mythes/mythes-1.2.2.ebuild new file mode 100644 index 000000000000..13c521f2a149 --- /dev/null +++ b/app-text/mythes/mythes-1.2.2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/mythes/mythes-1.2.2.ebuild,v 1.1 2011/12/22 10:59:02 scarabeus Exp $ + +EAPI=4 + +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 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +RDEPEND="app-text/hunspell" +DEPEND="${DEPEND} + dev-util/pkgconfig" + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${ED}" -name '*.la' -exec rm -f {} + +} |