You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/link-grammar/link-grammar-4.2.4-r1.ebuild

37 lines
841 B

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/link-grammar-4.2.4-r1.ebuild,v 1.10 2010/03/23 14:00:43 pacho Exp $
inherit eutils
DESCRIPTION="Link Grammar Parser is a syntactic English parser based on
link grammar."
HOMEPAGE="http://www.link.cs.cmu.edu/link/"
SRC_URI="http://www.abisource.com/downloads/${PN}/${PV}/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
# Fix bug #196803
epatch "${FILESDIR}"/${P}-tokenize.patch
}
src_compile() {
econf
# broken make files :-/
emake -j1 || die "emake failed"
}
src_install() {
# broken make files :-/
emake -j1 DESTDIR="${D}" install || die "install failed"
dodoc README
}