diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2007-03-02 10:32:13 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2007-03-02 10:32:13 +0000 |
commit | c843e25eb1b4d22ad01722ffbdd49916e6e0ac82 (patch) | |
tree | 6df07f90dc59247042f0e5a446d3a63d458a86c5 /app-text/html2text | |
parent | QA: remove * in >= statement (diff) | |
download | gentoo-2-c843e25eb1b4d22ad01722ffbdd49916e6e0ac82.tar.gz gentoo-2-c843e25eb1b4d22ad01722ffbdd49916e6e0ac82.tar.bz2 gentoo-2-c843e25eb1b4d22ad01722ffbdd49916e6e0ac82.zip |
Fix has_version syntax, bug 168892
(Portage version: 2.1.2-r12)
Diffstat (limited to 'app-text/html2text')
-rw-r--r-- | app-text/html2text/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/html2text/files/digest-html2text-1.3.1 | 6 | ||||
-rw-r--r-- | app-text/html2text/html2text-1.3.1.ebuild | 38 |
3 files changed, 4 insertions, 45 deletions
diff --git a/app-text/html2text/ChangeLog b/app-text/html2text/ChangeLog index c93b03fbb83e..b34344a31d83 100644 --- a/app-text/html2text/ChangeLog +++ b/app-text/html2text/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/html2text # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/ChangeLog,v 1.29 2007/02/23 20:13:52 nattfodd Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/ChangeLog,v 1.30 2007/03/02 10:32:13 genstef Exp $ + + 02 Mar 2007; <genstef@gentoo.org> -html2text-1.3.1.ebuild: + Fix has_version syntax, bug 168892 23 Feb 2007; Alexandre Buisse <nattfodd@gentoo.org> html2text-1.3.1.ebuild, html2text-1.3.2.ebuild: diff --git a/app-text/html2text/files/digest-html2text-1.3.1 b/app-text/html2text/files/digest-html2text-1.3.1 deleted file mode 100644 index 35aa4fab7e1e..000000000000 --- a/app-text/html2text/files/digest-html2text-1.3.1 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 faa3eaeb062540e72d251d6c3fa6cc71 html2text-1.3.1.tar.gz 119859 -RMD160 1bde426ef6a2a8c174b423ac74267d85e3098952 html2text-1.3.1.tar.gz 119859 -SHA256 a38d24fd517e3b6e808729a2519f60329eacec4ebededbac288d0763c066db55 html2text-1.3.1.tar.gz 119859 -MD5 a6cfcb22a1966dd02fbebcaeb77d191c html2text-gcc3.3.patch 26518 -RMD160 d0f33ead96a2d172e45811c33af5729697f974bc html2text-gcc3.3.patch 26518 -SHA256 13879e28182dd789858746d083bc56710528fc07e1c7327fd420bfc7be6f0c29 html2text-gcc3.3.patch 26518 diff --git a/app-text/html2text/html2text-1.3.1.ebuild b/app-text/html2text/html2text-1.3.1.ebuild deleted file mode 100644 index 0669e158ae52..000000000000 --- a/app-text/html2text/html2text-1.3.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/html2text-1.3.1.ebuild,v 1.15 2007/02/23 20:13:52 nattfodd Exp $ - -inherit eutils - -DESCRIPTION="A HTML to text converter" -HOMEPAGE="http://www.mbayer.de/html2text/index.shtml" -SRC_URI="http://userpage.fu-berlin.de/~mbayer/tools/historic/${P}.tar.gz - mirror://gentoo/${PN}-gcc3.3.patch" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 sparc amd64" -IUSE="" - -DEPEND="virtual/libc" - -src_unpack() { - unpack ${A} - # apply a patch for g++ 3.3, provided by the html2text - # people (see homepage) <obz@gentoo.org> - if has_version ">=sys-devel/gcc-3.3*"; then - epatch ${DISTDIR}/${PN}-gcc3.3.patch - fi -} - -src_compile() { - ./configure || die - emake || die -} - -src_install() { - dobin html2text - doman html2text.1.gz - doman html2textrc.5.gz - dodoc CHANGES CREDITS KNOWN_BUGS README TODO -} |