diff options
author | Marinus Schraal <foser@gentoo.org> | 2003-08-18 23:08:09 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2003-08-18 23:08:09 +0000 |
commit | 686f494c13d27d8ad33b0c8d96460861c470ffdc (patch) | |
tree | 46f98361eeec2dbd88a631ef713c9d0e23e431fc /app-text/ots | |
parent | new version, fixed deps (diff) | |
download | gentoo-2-686f494c13d27d8ad33b0c8d96460861c470ffdc.tar.gz gentoo-2-686f494c13d27d8ad33b0c8d96460861c470ffdc.tar.bz2 gentoo-2-686f494c13d27d8ad33b0c8d96460861c470ffdc.zip |
new version, fixed deps
Diffstat (limited to 'app-text/ots')
-rw-r--r-- | app-text/ots/ChangeLog | 7 | ||||
-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 |
5 files changed, 23 insertions, 11 deletions
diff --git a/app-text/ots/ChangeLog b/app-text/ots/ChangeLog index 476cf8bff243..7eb729c300ba 100644 --- a/app-text/ots/ChangeLog +++ b/app-text/ots/ChangeLog @@ -1,6 +1,11 @@ # 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.2 2003/07/09 14:06:58 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ChangeLog,v 1.3 2003/08/18 23:07:58 foser Exp $ + +*ots-0.4.1 (19 Aug 2003) + + 19 Aug 2003; foser <foser@gentoo.org> ots-0.4.1.ebuild : + New version, updated deps, as requested in #26823 *ots-0.2.0 (09 Jul 2003) 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 |