diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2005-09-03 00:41:27 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2005-09-03 00:41:27 +0000 |
commit | 1ed991dad88cc40685f16f2918931314c11a5e34 (patch) | |
tree | 3cbaf864009a2dad2f6092345e1348649da61123 /app-text/ots/ots-0.4.2.ebuild | |
parent | Added ifc-9.0.021 (public) and ifc-9.0.026 (only available via premier.intel.... (diff) | |
download | gentoo-2-1ed991dad88cc40685f16f2918931314c11a5e34.tar.gz gentoo-2-1ed991dad88cc40685f16f2918931314c11a5e34.tar.bz2 gentoo-2-1ed991dad88cc40685f16f2918931314c11a5e34.zip |
bug 94893 and bug 97448
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-text/ots/ots-0.4.2.ebuild')
-rw-r--r-- | app-text/ots/ots-0.4.2.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-text/ots/ots-0.4.2.ebuild b/app-text/ots/ots-0.4.2.ebuild new file mode 100644 index 000000000000..a4d40e115d8a --- /dev/null +++ b/app-text/ots/ots-0.4.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ots-0.4.2.ebuild,v 1.1 2005/09/03 00:41:27 vanquirius Exp $ + +DESCRIPTION="Open source Text Summarizer, as used in newer releases of abiword and kword." +HOMEPAGE="http://libots.sourceforge.net/" +SRC_URI="mirror://sourceforge/libots/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~amd64" +IUSE="" + +RDEPEND="=dev-libs/glib-2* + >=dev-libs/libxml2-2.4.23 + >=dev-libs/popt-1.5" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + # bug 97448 + econf --disable-gtk-doc || die + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die + rm -rf "${D}"/usr/share/doc/libots + dodoc AUTHORS BUGS ChangeLog HACKING INSTALL NEWS README TODO + cd "${S}"/doc/html + dohtml -r ./ +} |