diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-07-19 14:12:31 +0200 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-07-19 14:12:31 +0200 |
commit | 8e104f6c2e738f4ec811969bc6f1656e7fd46a93 (patch) | |
tree | c5eecdca395564fb31268eb701faae6fd209e57a | |
parent | [app-office/libreoffice] This damn patch does not need to be conditional. (diff) | |
download | scarabeus-8e104f6c2e738f4ec811969bc6f1656e7fd46a93.tar.gz scarabeus-8e104f6c2e738f4ec811969bc6f1656e7fd46a93.tar.bz2 scarabeus-8e104f6c2e738f4ec811969bc6f1656e7fd46a93.zip |
[app-text/mythes] Add dependency for the libreoffice, so we wont use bundled lib.
-rw-r--r-- | app-text/mythes/Manifest | 2 | ||||
-rw-r--r-- | app-text/mythes/mythes-1.2.1.ebuild | 28 |
2 files changed, 30 insertions, 0 deletions
diff --git a/app-text/mythes/Manifest b/app-text/mythes/Manifest new file mode 100644 index 0000000..2a38b34 --- /dev/null +++ b/app-text/mythes/Manifest @@ -0,0 +1,2 @@ +DIST mythes-1.2.1.tar.gz 4894265 RMD160 2bf9ebad5b407b158bf9d37f4e92e6aa5347bc96 SHA1 ad4f0e626af272d714d7eb9b3aa2f4c86a06b382 SHA256 4b8b4e494b9dff1416270e044c20a5f5a16229f3da7029a5a6d16ffaf4de79e9 +EBUILD mythes-1.2.1.ebuild 554 RMD160 db06535bbbdb9924b1d200142c468538fb39df7b SHA1 1b06fc767ec6dc2e4c01863c2a49408ebe7e0fb5 SHA256 4a5685a4deeee4be4a716fb7cde92b3153118d662813447ca81adc3bb76aea05 diff --git a/app-text/mythes/mythes-1.2.1.ebuild b/app-text/mythes/mythes-1.2.1.ebuild new file mode 100644 index 0000000..7bd611a --- /dev/null +++ b/app-text/mythes/mythes-1.2.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=4 + +DESCRIPTION="A simple thesaurus" +HOMEPAGE="http://hunspell.sourceforge.net/" +SRC_URI="mirror://sourceforge/hunspell/MyThes/${PV}/${P}.tar.gz" + +LICENSE="AS-IS" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +DEPEND="app-text/hunspell" +RDEPEND="${DEPEND}" + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + + find "${ED}" -name '*.la' -exec rm -f {} + +} |