Gentoo Archives: gentoo-commits

From: "Santiago M. Mola (coldwind)" <coldwind@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/htmlrecode: ChangeLog htmlrecode-1.3.0.ebuild
Date: Wed, 23 Jul 2008 15:55:31
Message-Id: E1KLgga-0002nZ-LU@stork.gentoo.org
1 coldwind 08/07/23 15:55:28
2
3 Modified: ChangeLog
4 Added: htmlrecode-1.3.0.ebuild
5 Log:
6 Version bump, add ~amd64 keyword, fix 64bit (bug #228103) and gcc-4.3 compatibility.
7 (Portage version: 2.2_rc1/cvs/Linux 2.6.26-gentoo x86_64)
8
9 Revision Changes Path
10 1.7 app-text/htmlrecode/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/htmlrecode/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/htmlrecode/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/htmlrecode/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/htmlrecode/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 12 Mar 2007 22:45:41 -0000 1.6
23 +++ ChangeLog 23 Jul 2008 15:55:28 -0000 1.7
24 @@ -1,6 +1,13 @@
25 # ChangeLog for app-text/htmlrecode
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/htmlrecode/ChangeLog,v 1.6 2007/03/12 22:45:41 leonardop Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/htmlrecode/ChangeLog,v 1.7 2008/07/23 15:55:28 coldwind Exp $
30 +
31 +*htmlrecode-1.3.0 (23 Jul 2008)
32 +
33 + 23 Jul 2008; Santiago M. Mola <coldwind@g.o>
34 + +files/htmlrecode-1.3.0-misc-fixes.patch, +htmlrecode-1.3.0.ebuild:
35 + Version bump, add ~amd64 keyword, fix 64bit (bug #228103) and gcc-4.3
36 + compatibility.
37
38 12 Mar 2007; Leonardo Boshell <leonardop@g.o> metadata.xml:
39 Replacing text-markup herd with the new sgml herd.
40
41
42
43 1.1 app-text/htmlrecode/htmlrecode-1.3.0.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/htmlrecode/htmlrecode-1.3.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/htmlrecode/htmlrecode-1.3.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: htmlrecode-1.3.0.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-text/htmlrecode/htmlrecode-1.3.0.ebuild,v 1.1 2008/07/23 15:55:28 coldwind Exp $
53
54 inherit eutils
55
56 DESCRIPTION="Recodes HTML file using a new character set"
57 HOMEPAGE="http://bisqwit.iki.fi/source/htmlrecode.html"
58 SRC_URI="http://bisqwit.iki.fi/src/arch/${P}.tar.bz2"
59
60 KEYWORDS="~amd64 ~ppc ~x86"
61 LICENSE="GPL-2"
62 SLOT="0"
63 IUSE=""
64
65 DEPEND="virtual/libc
66 >=sys-apps/sed-4"
67 RDEPEND="virtual/libc"
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72
73 epatch "${FILESDIR}"/${P}-misc-fixes.patch
74
75 sed -i \
76 -e "s:^\\(ARGHLINK.*-L.*\\):#\\1:" \
77 -e "s:^#\\(ARGHLINK=.*a\\)$:\\1:" \
78 Makefile
79
80 touch .depend argh/.depend
81 }
82
83 src_compile() {
84 emake -C argh libargh.a || die
85 emake htmlrecode || die
86 }
87
88 src_install() {
89 dobin htmlrecode || die
90 dodoc README.html
91 }