summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2011-07-21 12:03:58 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2011-07-21 12:03:58 +0000
commit3e7fb28e5d6829712d9572497e1edc9b00e08d21 (patch)
treefb87d0b58e6d5d954ff0fb52beed279546012e62 /app-text
parentversion bump (diff)
downloadgentoo-2-3e7fb28e5d6829712d9572497e1edc9b00e08d21.tar.gz
gentoo-2-3e7fb28e5d6829712d9572497e1edc9b00e08d21.tar.bz2
gentoo-2-3e7fb28e5d6829712d9572497e1edc9b00e08d21.zip
Initial commit. Used by libreoffice so we can unbundle it.
(Portage version: 2.2.0_alpha45/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/mythes/ChangeLog10
-rw-r--r--app-text/mythes/metadata.xml5
-rw-r--r--app-text/mythes/mythes-1.2.1.ebuild27
3 files changed, 42 insertions, 0 deletions
diff --git a/app-text/mythes/ChangeLog b/app-text/mythes/ChangeLog
new file mode 100644
index 000000000000..f3b0a1386be0
--- /dev/null
+++ b/app-text/mythes/ChangeLog
@@ -0,0 +1,10 @@
+# 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.1 2011/07/21 12:03:58 scarabeus Exp $
+
+*mythes-1.2.1 (21 Jul 2011)
+
+ 21 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org> +mythes-1.2.1.ebuild,
+ +metadata.xml:
+ Initial commit. Used by libreoffice so we can unbundle it.
+
diff --git a/app-text/mythes/metadata.xml b/app-text/mythes/metadata.xml
new file mode 100644
index 000000000000..fb56680f3630
--- /dev/null
+++ b/app-text/mythes/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>openoffice</herd>
+</pkgmetadata>
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 000000000000..759f63c4218c
--- /dev/null
+++ b/app-text/mythes/mythes-1.2.1.ebuild
@@ -0,0 +1,27 @@
+# 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.1.ebuild,v 1.1 2011/07/21 12:03:58 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="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 {} +
+}