summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2010-04-10 19:15:20 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2010-04-10 19:15:20 +0000
commitae05d0518974d30c20b65f21fc1657be6af5045f (patch)
tree49a51bed011fa35adb9372bf19d5678bc12e1bc9 /dev-libs/hyphen/hyphen-2.5.ebuild
parentVersion bump. (diff)
downloadgentoo-2-ae05d0518974d30c20b65f21fc1657be6af5045f.tar.gz
gentoo-2-ae05d0518974d30c20b65f21fc1657be6af5045f.tar.bz2
gentoo-2-ae05d0518974d30c20b65f21fc1657be6af5045f.zip
Version bump.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/hyphen/hyphen-2.5.ebuild')
-rw-r--r--dev-libs/hyphen/hyphen-2.5.ebuild28
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-libs/hyphen/hyphen-2.5.ebuild b/dev-libs/hyphen/hyphen-2.5.ebuild
new file mode 100644
index 000000000000..06edb3575b75
--- /dev/null
+++ b/dev-libs/hyphen/hyphen-2.5.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/hyphen/hyphen-2.5.ebuild,v 1.1 2010/04/10 19:15:20 ssuominen Exp $
+
+EAPI=2
+
+DESCRIPTION="hyphenation library to use converted TeX hyphenation patterns"
+HOMEPAGE="http://sourceforge.net/projects/hunspell/"
+SRC_URI="mirror://sourceforge/hunspell/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1 MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+src_configure() {
+ econf \
+ --disable-dependency-tracking \
+ --disable-static
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ dodoc AUTHORS ChangeLog NEWS README* THANKS TODO
+ insinto /usr/share/doc/${PF}/pdf
+ doins doc/*.pdf
+ find "${D}"/usr -name '*.la' -delete
+}