Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/html2text: html2text-1.3.2a.ebuild ChangeLog
Date: Thu, 22 Mar 2012 16:41:59
Message-Id: 20120322164143.7E7A22004C@flycatcher.gentoo.org
1 floppym 12/03/22 16:41:43
2
3 Modified: ChangeLog
4 Added: html2text-1.3.2a.ebuild
5 Log:
6 Point SRC_URI at new location. Adjust HOMEPAGE. EAPI=4. Fix bug 144497.
7
8 (Portage version: 2.2.0_alpha93/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.37 app-text/html2text/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/html2text/ChangeLog?rev=1.37&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/html2text/ChangeLog?rev=1.37&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/html2text/ChangeLog?r1=1.36&r2=1.37
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/html2text/ChangeLog,v
20 retrieving revision 1.36
21 retrieving revision 1.37
22 diff -u -r1.36 -r1.37
23 --- ChangeLog 2 Jan 2010 11:22:49 -0000 1.36
24 +++ ChangeLog 22 Mar 2012 16:41:43 -0000 1.37
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-text/html2text
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/ChangeLog,v 1.36 2010/01/02 11:22:49 fauli Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/html2text/ChangeLog,v 1.37 2012/03/22 16:41:43 floppym Exp $
31 +
32 +*html2text-1.3.2a (22 Mar 2012)
33 +
34 + 22 Mar 2012; Mike Gilbert <floppym@g.o>
35 + +files/html2text-1.3.2a-compiler.patch,
36 + +files/html2text-1.3.2a-urlistream-get.patch, +html2text-1.3.2a.ebuild:
37 + Point SRC_URI at new location. Adjust HOMEPAGE. EAPI=4. Fix bug 144497.
38
39 02 Jan 2010; Christian Faulhammer <fauli@g.o>
40 html2text-1.3.2-r1.ebuild:
41
42
43
44 1.1 app-text/html2text/html2text-1.3.2a.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/html2text/html2text-1.3.2a.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/html2text/html2text-1.3.2a.ebuild?rev=1.1&content-type=text/plain
48
49 Index: html2text-1.3.2a.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-text/html2text/html2text-1.3.2a.ebuild,v 1.1 2012/03/22 16:41:43 floppym Exp $
54
55 EAPI=4
56
57 inherit eutils toolchain-funcs
58
59 DESCRIPTION="A HTML to text converter"
60 HOMEPAGE="http://www.mbayer.de/html2text/"
61 SRC_URI="http://www.mbayer.de/html2text/downloads/${P}.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
66 IUSE=""
67
68 DEPEND=""
69 RDEPEND=""
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${P}-compiler.patch
73 epatch "${FILESDIR}"/${P}-urlistream-get.patch
74 }
75
76 src_configure() {
77 tc-export CXX
78 default
79 }
80
81 src_compile() {
82 emake LDFLAGS="${LDFLAGS}" DEBUG="${CXXFLAGS}"
83 }
84
85 src_install() {
86 dobin html2text
87 doman html2text.1.gz html2textrc.5.gz
88 dodoc CHANGES CREDITS KNOWN_BUGS README TODO
89 }