diff options
author | 2003-08-18 23:08:09 +0000 | |
---|---|---|
committer | 2003-08-18 23:08:09 +0000 | |
commit | 09f2b0df7c5938b3ade8387e0e7c03cd8318cb49 (patch) | |
tree | 025291525a0ca0e5703728c3eecd1b123770363b /app-text | |
parent | new version, fixed deps (diff) | |
download | historical-09f2b0df7c5938b3ade8387e0e7c03cd8318cb49.tar.gz historical-09f2b0df7c5938b3ade8387e0e7c03cd8318cb49.tar.bz2 historical-09f2b0df7c5938b3ade8387e0e7c03cd8318cb49.zip |
new version, fixed deps
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/ots/Manifest | 6 | ||||
-rw-r--r-- | app-text/ots/files/digest-ots-0.2.0 | 1 | ||||
-rw-r--r-- | app-text/ots/files/digest-ots-0.4.1 | 1 | ||||
-rw-r--r-- | app-text/ots/ots-0.4.1.ebuild (renamed from app-text/ots/ots-0.2.0.ebuild) | 19 |
4 files changed, 17 insertions, 10 deletions
diff --git a/app-text/ots/Manifest b/app-text/ots/Manifest index 1ca263021c86..01f06f21bfe4 100644 --- a/app-text/ots/Manifest +++ b/app-text/ots/Manifest @@ -1,5 +1,3 @@ -MD5 b2c0bd7280e0fe27f2acfb8289e403ba ots-0.2.0.ebuild 762 -MD5 50f2080602a3725a0b9b98abccc98b63 ots-0.4.1.ebuild 777 -MD5 e1051d607622edf24e077f405206ccf0 ChangeLog 563 -MD5 2279a8a9b28185c308ce194d2d615076 files/digest-ots-0.2.0 61 +MD5 6791fb1c30091efc747182710272356e ots-0.4.1.ebuild 897 +MD5 4f652e9faef5f3d91828760fda8b5797 ChangeLog 699 MD5 4fb352a699bbaed36ab4cd3ae199aca5 files/digest-ots-0.4.1 61 diff --git a/app-text/ots/files/digest-ots-0.2.0 b/app-text/ots/files/digest-ots-0.2.0 deleted file mode 100644 index 57271f65e6f3..000000000000 --- a/app-text/ots/files/digest-ots-0.2.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 39f51b35665109864093beed308535d4 ots-0.2.0.tar.gz 244327 diff --git a/app-text/ots/files/digest-ots-0.4.1 b/app-text/ots/files/digest-ots-0.4.1 new file mode 100644 index 000000000000..f7d987635b58 --- /dev/null +++ b/app-text/ots/files/digest-ots-0.4.1 @@ -0,0 +1 @@ +MD5 f5768210dfcb4c2afade80803877145c ots-0.4.1.tar.gz 274304 diff --git a/app-text/ots/ots-0.2.0.ebuild b/app-text/ots/ots-0.4.1.ebuild index 7667ae70d49d..ac04b34cc2cb 100644 --- a/app-text/ots/ots-0.2.0.ebuild +++ b/app-text/ots/ots-0.4.1.ebuild @@ -1,10 +1,9 @@ # 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.2 2003/07/09 08:20:44 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ots-0.4.1.ebuild,v 1.1 2003/08/18 23:07:58 foser Exp $ -IUSE="" +IUSE="doc" -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" @@ -14,14 +13,24 @@ LICENSE="GPL-2" KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~arm" -DEPEND="=dev-libs/glib-2*" +RDEPEND="=dev-libs/glib-2* + >=dev-libs/libxml2-2.4.23 + >=dev-libs/popt-1.5" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( >=dev-util/gtk-doc-0.9 )" src_compile() { - econf || die + + econf `use_enable doc gtk-doc` || die + make || die + } src_install() { + einstall || die rm -rf ${D}/usr/share/doc/libots |