diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-06-12 04:48:36 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-06-12 04:48:36 +0000 |
commit | 4c322856e97e1093369cc9bb9ac4cf5b014e2ef6 (patch) | |
tree | 65c99ca7f067b81cad7a097caddd3362ef0538ff /app-text/ots | |
parent | Marked ppc stable. (diff) | |
download | gentoo-2-4c322856e97e1093369cc9bb9ac4cf5b014e2ef6.tar.gz gentoo-2-4c322856e97e1093369cc9bb9ac4cf5b014e2ef6.tar.bz2 gentoo-2-4c322856e97e1093369cc9bb9ac4cf5b014e2ef6.zip |
fix typo in HOMEPAGE (bug #95715); tidy
(Portage version: 2.0.51.19)
Diffstat (limited to 'app-text/ots')
-rw-r--r-- | app-text/ots/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/ots/ots-0.4.1.ebuild | 24 |
2 files changed, 12 insertions, 17 deletions
diff --git a/app-text/ots/ChangeLog b/app-text/ots/ChangeLog index 47148085776e..8953b539cdcf 100644 --- a/app-text/ots/ChangeLog +++ b/app-text/ots/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/ots # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ChangeLog,v 1.8 2005/04/24 03:26:18 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ChangeLog,v 1.9 2005/06/12 04:48:36 mr_bones_ Exp $ + + 12 Jun 2005; Michael Sterrett <mr_bones_@gentoo.org> ots-0.4.1.ebuild: + fix typo in HOMEPAGE (bug #95715); tidy 24 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> ots-0.4.1.ebuild: Stable on ppc. diff --git a/app-text/ots/ots-0.4.1.ebuild b/app-text/ots/ots-0.4.1.ebuild index 9bc1956a3444..adc359ac35db 100644 --- a/app-text/ots/ots-0.4.1.ebuild +++ b/app-text/ots/ots-0.4.1.ebuild @@ -1,16 +1,15 @@ # 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.1.ebuild,v 1.7 2005/04/24 03:26:18 hansmi Exp $ - -IUSE="doc" +# $Header: /var/cvsroot/gentoo-x86/app-text/ots/ots-0.4.1.ebuild,v 1.8 2005/06/12 04:48:36 mr_bones_ Exp $ DESCRIPTION="Open source Text Summarizer, as used in newer releases of abiword and kword." -HOMEPAGE="http://libots.sourcefourge.net/" +HOMEPAGE="http://libots.sourceforge.net/" SRC_URI="mirror://sourceforge/libots/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ppc ~sparc ~alpha ~hppa ~mips amd64" +IUSE="doc" RDEPEND="=dev-libs/glib-2* @@ -22,21 +21,14 @@ DEPEND="${RDEPEND} doc? ( >=dev-util/gtk-doc-0.9 )" src_compile() { - - econf `use_enable doc gtk-doc` || die - + econf $(use_enable doc gtk-doc) || die make || die - } src_install() { - einstall || die - - rm -rf ${D}/usr/share/doc/libots - - dodoc AUTHORS BUGS COPYING ChangeLog HACKING INSTALL NEWS README TODO - - cd ${S}/doc/html + rm -rf "${D}"/usr/share/doc/libots + dodoc AUTHORS BUGS ChangeLog HACKING INSTALL NEWS README TODO + cd "${S}"/doc/html dohtml -r ./ } |