diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2007-10-07 22:43:40 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2007-10-07 22:43:40 +0000 |
commit | 220ab4171ec4a9c14b80405fda7cd445bd4b33a5 (patch) | |
tree | 528ce575dcc3719c77768d527a1bbaaec9e89f7a /app-text/ots | |
parent | Add die commands to elisp-install. (diff) | |
download | gentoo-2-220ab4171ec4a9c14b80405fda7cd445bd4b33a5.tar.gz gentoo-2-220ab4171ec4a9c14b80405fda7cd445bd4b33a5.tar.bz2 gentoo-2-220ab4171ec4a9c14b80405fda7cd445bd4b33a5.zip |
bump to 0.5.0 (bug #189207)
(Portage version: 2.1.3.11)
Diffstat (limited to 'app-text/ots')
-rw-r--r-- | app-text/ots/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/ots/files/digest-ots-0.5.0 | 3 | ||||
-rw-r--r-- | app-text/ots/ots-0.5.0.ebuild | 40 |
3 files changed, 50 insertions, 1 deletions
diff --git a/app-text/ots/ChangeLog b/app-text/ots/ChangeLog index e08397daa417..4f1ca55391fa 100644 --- a/app-text/ots/ChangeLog +++ b/app-text/ots/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/ots # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ChangeLog,v 1.18 2007/02/21 23:36:33 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ChangeLog,v 1.19 2007/10/07 22:43:39 eva Exp $ + +*ots-0.5.0 (07 Oct 2007) + + 07 Oct 2007; Gilles Dartiguelongue <eva@gentoo.org> +ots-0.5.0.ebuild: + bump to 0.5.0 (bug #189207), gcc-4 fixes are in but packaging is broken wrt + to doc 21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/app-text/ots/files/digest-ots-0.5.0 b/app-text/ots/files/digest-ots-0.5.0 new file mode 100644 index 000000000000..a2ef4f2c58fd --- /dev/null +++ b/app-text/ots/files/digest-ots-0.5.0 @@ -0,0 +1,3 @@ +MD5 1e140a4bf9d720b4339a5c2bdf4976e8 ots-0.5.0.tar.gz 371126 +RMD160 e413267fc81ab9bf3da5f3787757ce20c7e0304e ots-0.5.0.tar.gz 371126 +SHA256 ea908d22256166d1200fef55a82dd3ea8e096a249eaaf0b926f3577f1a63e137 ots-0.5.0.tar.gz 371126 diff --git a/app-text/ots/ots-0.5.0.ebuild b/app-text/ots/ots-0.5.0.ebuild new file mode 100644 index 000000000000..515bdd076d81 --- /dev/null +++ b/app-text/ots/ots-0.5.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ots-0.5.0.ebuild,v 1.1 2007/10/07 22:43:39 eva Exp $ + +inherit + +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="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86" +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 + + # ugly ugly hack, kick upstream to fix its packaging + touch "${S}"/gtk-doc.make + + # parallel make fails, bug 112932 + emake -j1 || die +} + +src_install() { + make DESTDIR="${D}" install || die + rm -rf "${D}"/usr/share/doc/libots + dodoc AUTHORS BUGS ChangeLog HACKING NEWS README TODO + cd "${S}"/doc/html + dohtml -r ./ +} |