diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-01-10 01:43:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-01-10 01:43:26 +0000 |
commit | 947e70e2613820a3cae4f2895fd22bcf5b559b6f (patch) | |
tree | f31edad678b33cd9e4603daae258b58c55ef6612 /app-text/dbacl/dbacl-1.3.ebuild | |
parent | static support #12978 (diff) | |
download | gentoo-2-947e70e2613820a3cae4f2895fd22bcf5b559b6f.tar.gz gentoo-2-947e70e2613820a3cae4f2895fd22bcf5b559b6f.tar.bz2 gentoo-2-947e70e2613820a3cae4f2895fd22bcf5b559b6f.zip |
update + patch #13181
Diffstat (limited to 'app-text/dbacl/dbacl-1.3.ebuild')
-rw-r--r-- | app-text/dbacl/dbacl-1.3.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app-text/dbacl/dbacl-1.3.ebuild b/app-text/dbacl/dbacl-1.3.ebuild new file mode 100644 index 000000000000..c684f402fda2 --- /dev/null +++ b/app-text/dbacl/dbacl-1.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/dbacl/dbacl-1.3.ebuild,v 1.1 2003/01/10 01:39:49 vapier Exp $ + +inherit eutils + +DESCRIPTION="dbacl is a digramic Bayesian text classifier" +HOMEPAGE="http://www.lbreyer.com/gpl.html" +SRC_URI="http://www.lbreyer.com/gpl/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${P}.patch +} + +src_compile() { + econf || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc README AUTHORS NEWS ChangeLog +} |