diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-07-09 08:17:18 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-07-09 08:17:18 +0000 |
commit | 5bea51c177cc702e3e123daa69b7bae311729c00 (patch) | |
tree | 21230fea103b0a2f0c9c003c06fe8a8b9c21e3bf /app-text/ots | |
parent | new package for open source text summariser (diff) | |
download | gentoo-2-5bea51c177cc702e3e123daa69b7bae311729c00.tar.gz gentoo-2-5bea51c177cc702e3e123daa69b7bae311729c00.tar.bz2 gentoo-2-5bea51c177cc702e3e123daa69b7bae311729c00.zip |
new package for open source text summariser
Diffstat (limited to 'app-text/ots')
-rw-r--r-- | app-text/ots/ChangeLog | 10 | ||||
-rw-r--r-- | app-text/ots/Manifest | 3 | ||||
-rw-r--r-- | app-text/ots/files/digest-ots-0.2.0 | 1 | ||||
-rw-r--r-- | app-text/ots/ots-0.2.0.ebuild | 32 |
4 files changed, 45 insertions, 1 deletions
diff --git a/app-text/ots/ChangeLog b/app-text/ots/ChangeLog new file mode 100644 index 000000000000..6a2070ba0084 --- /dev/null +++ b/app-text/ots/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-text/ots +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ChangeLog,v 1.1 2003/07/09 08:16:53 seemant Exp $ + +*ots-0.2.0 (09 Jul 2003) + + 09 Jul 2003; Seemant Kulleen <seemant@gentoo.org> ots-0.2.0.ebuild: + Open source text summariser -- package author: Nadav Rotem + <nadav256@hotmail.com> requested this to be added in IRC, to me. + diff --git a/app-text/ots/Manifest b/app-text/ots/Manifest index a2159479e71b..d468e9cdd1ac 100644 --- a/app-text/ots/Manifest +++ b/app-text/ots/Manifest @@ -1,2 +1,3 @@ -MD5 2820a69773087419dcc319c58df6a1bf ots-0.2.0.ebuild 530 +MD5 b6dca1bc0a76a3a109fb8e2e0656990c ots-0.2.0.ebuild 746 +MD5 14c76ee73246f5ee4b3c061c3f69d6c9 ChangeLog 432 MD5 2279a8a9b28185c308ce194d2d615076 files/digest-ots-0.2.0 61 diff --git a/app-text/ots/files/digest-ots-0.2.0 b/app-text/ots/files/digest-ots-0.2.0 new file mode 100644 index 000000000000..57271f65e6f3 --- /dev/null +++ b/app-text/ots/files/digest-ots-0.2.0 @@ -0,0 +1 @@ +MD5 39f51b35665109864093beed308535d4 ots-0.2.0.tar.gz 244327 diff --git a/app-text/ots/ots-0.2.0.ebuild b/app-text/ots/ots-0.2.0.ebuild new file mode 100644 index 000000000000..019bae6c6e67 --- /dev/null +++ b/app-text/ots/ots-0.2.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ots-0.2.0.ebuild,v 1.1 2003/07/09 08:16:53 seemant Exp $ + +IUSE="" + +S=${WORKDIR}/${P} +DESCRIPTION="Open source Text Summarizer, as used in newer releases of abiword and kword." +HOMEPAGE="http://libots.sourcefourge.net/" +SRC_URI="mirror://sourceforge/libots/${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~arm" + + +DEPEND="=dev-libs/glib-2*" + +src_compile() { + econf || die + make || die +} + +src_install() { + einstall || die + + rm -rf ${D}/usr/share/doc/libots + + dohtml -r html + + dodoc AUTHORS BUGS COPYING ChangeLog HACKING INSTALL NEWS README TODO +} |