diff options
author | Pieter van den Abeele <pvdabeel@gentoo.org> | 2003-06-19 09:26:36 +0000 |
---|---|---|
committer | Pieter van den Abeele <pvdabeel@gentoo.org> | 2003-06-19 09:26:36 +0000 |
commit | 7e0dd04beef5652368522b3f3f20db77c70f0478 (patch) | |
tree | 71d89c07883c477d7c43775c71974469e9efe3eb /app-text/bow/bow-20020213.ebuild | |
parent | removing empty dir (diff) | |
download | gentoo-2-7e0dd04beef5652368522b3f3f20db77c70f0478.tar.gz gentoo-2-7e0dd04beef5652368522b3f3f20db77c70f0478.tar.bz2 gentoo-2-7e0dd04beef5652368522b3f3f20db77c70f0478.zip |
new ebuild
Diffstat (limited to 'app-text/bow/bow-20020213.ebuild')
-rw-r--r-- | app-text/bow/bow-20020213.ebuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app-text/bow/bow-20020213.ebuild b/app-text/bow/bow-20020213.ebuild new file mode 100644 index 000000000000..d757d57518e3 --- /dev/null +++ b/app-text/bow/bow-20020213.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/bow/bow-20020213.ebuild,v 1.1 2003/06/19 09:26:36 pvdabeel Exp $ + +DESCRIPTION="Bag of words library - Statistical language modeling, text retrieval, Classification and clustering" +HOMEPAGE="http://www-2.cs.cmu.edu/~mccallum/bow/" +SRC_URI="http://www-2.cs.cmu.edu/~mccallum/bow/src/${P}.tar.gz" + +SLOT="0" +KEYWORDS="x86 ppc" +LICENSE="GPL-2" +IUSE="" +DEPEND="virtual/glibc" +RDEPEND=${DEPEND} + +src_compile() { + econf --prefix=${D}/usr --datadir=${D}/usr/share || die +} + +src_install() { + make prefix=${D}/usr install +} |