Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tex/html2latex: html2latex-1.1-r1.ebuild ChangeLog
Date: Thu, 29 Aug 2013 16:17:44
Message-Id: 20130829161737.C6DD12004C@flycatcher.gentoo.org
1 idella4 13/08/29 16:17:37
2
3 Modified: ChangeLog
4 Added: html2latex-1.1-r1.ebuild
5 Log:
6 revbump -> EAPI 5
7
8 (Portage version: 2.2.0/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.17 dev-tex/html2latex/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/html2latex/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/html2latex/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/html2latex/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-tex/html2latex/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 6 Sep 2009 20:47:06 -0000 1.16
24 +++ ChangeLog 29 Aug 2013 16:17:37 -0000 1.17
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-tex/html2latex
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/html2latex/ChangeLog,v 1.16 2009/09/06 20:47:06 ranger Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/html2latex/ChangeLog,v 1.17 2013/08/29 16:17:37 idella4 Exp $
31 +
32 +*html2latex-1.1-r1 (29 Aug 2013)
33 +
34 + 29 Aug 2013; Ian Delaney <idella4@g.o> +html2latex-1.1-r1.ebuild:
35 + revbump -> EAPI 5
36
37 06 Sep 2009; Brent Baude <ranger@g.o> html2latex-1.1.ebuild:
38 Marking html2latex-1.1 ppc64 stable for bug 276990
39 @@ -53,4 +58,3 @@
40 16 Feb 2005; Mamoru KOMACHI <usata@g.o> +html2latex-1.1.ebuild:
41 Initial import. Ebuild submitted by Samuel Robyr <samuel.robyr@×××××.com>;
42 bug #73407.
43 -
44
45
46
47 1.1 dev-tex/html2latex/html2latex-1.1-r1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/html2latex/html2latex-1.1-r1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-tex/html2latex/html2latex-1.1-r1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: html2latex-1.1-r1.ebuild
53 ===================================================================
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-tex/html2latex/html2latex-1.1-r1.ebuild,v 1.1 2013/08/29 16:17:37 idella4 Exp $
57
58 EAPI=5
59
60 inherit perl-module
61
62 DESCRIPTION="Perl script to convert HTML files into formatted LaTeX"
63 HOMEPAGE="http://html2latex.sourceforge.net/"
64 SRC_URI="mirror://sourceforge/html2latex/${P}.tar.gz"
65 LICENSE="GPL-2"
66
67 SLOT="0"
68 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
69
70 IUSE="imagemagick libwww"
71
72 DEPEND="dev-perl/HTML-Tree
73 dev-perl/XML-Simple
74 imagemagick? ( media-gfx/imagemagick )
75 libwww? ( dev-perl/libwww-perl )"
76
77 src_compile() {
78 # HTML::LaTex
79 cd HTML
80 perl-module_src_prep
81 perl-module_src_compile
82 }
83
84 src_install() {
85 dobin html2latex
86 doman html2latex.1
87 dodoc README TODO
88
89 # HTML::LaTex
90 cd HTML
91 perl-module_src_install
92 rm unwanted README.win
93 rm $(find "${D}" -name README.win.txt) || die
94 }