Gentoo Archives: gentoo-commits

From: "Jonathan Callen (abcd)" <abcd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/texi2html: ChangeLog texi2html-1.78.ebuild
Date: Mon, 22 Feb 2010 20:43:58
Message-Id: E1Njf8F-00040I-PB@stork.gentoo.org
1 abcd 10/02/22 20:43:55
2
3 Modified: ChangeLog texi2html-1.78.ebuild
4 Log:
5 Add prefix keywords, support; bump EAPI
6 (Portage version: -svn/cvs/Linux i686)
7
8 Revision Changes Path
9 1.42 app-text/texi2html/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texi2html/ChangeLog?rev=1.42&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texi2html/ChangeLog?rev=1.42&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texi2html/ChangeLog?r1=1.41&r2=1.42
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/app-text/texi2html/ChangeLog,v
18 retrieving revision 1.41
19 retrieving revision 1.42
20 diff -u -r1.41 -r1.42
21 --- ChangeLog 23 Sep 2009 16:40:28 -0000 1.41
22 +++ ChangeLog 22 Feb 2010 20:43:55 -0000 1.42
23 @@ -1,6 +1,9 @@
24 # ChangeLog for app-text/texi2html
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/app-text/texi2html/ChangeLog,v 1.41 2009/09/23 16:40:28 patrick Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/texi2html/ChangeLog,v 1.42 2010/02/22 20:43:55 abcd Exp $
29 +
30 + 22 Feb 2010; Jonathan Callen <abcd@g.o> texi2html-1.78.ebuild:
31 + Add prefix keywords, support; bump EAPI
32
33 23 Sep 2009; Patrick Lauer <patrick@g.o> texi2html-1.64-r1.ebuild:
34 Remove virtual/libc
35
36
37
38 1.4 app-text/texi2html/texi2html-1.78.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texi2html/texi2html-1.78.ebuild?rev=1.4&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texi2html/texi2html-1.78.ebuild?rev=1.4&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/texi2html/texi2html-1.78.ebuild?r1=1.3&r2=1.4
43
44 Index: texi2html-1.78.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/app-text/texi2html/texi2html-1.78.ebuild,v
47 retrieving revision 1.3
48 retrieving revision 1.4
49 diff -u -r1.3 -r1.4
50 --- texi2html-1.78.ebuild 11 Mar 2009 18:40:16 -0000 1.3
51 +++ texi2html-1.78.ebuild 22 Feb 2010 20:43:55 -0000 1.4
52 @@ -1,6 +1,8 @@
53 -# Copyright 1999-2009 Gentoo Foundation
54 +# Copyright 1999-2010 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/app-text/texi2html/texi2html-1.78.ebuild,v 1.3 2009/03/11 18:40:16 armin76 Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/app-text/texi2html/texi2html-1.78.ebuild,v 1.4 2010/02/22 20:43:55 abcd Exp $
58 +
59 +EAPI=3
60
61 DESCRIPTION="Perl script that converts Texinfo to HTML"
62 HOMEPAGE="http://www.nongnu.org/texi2html/"
63 @@ -8,7 +10,7 @@
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
68 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
69 IUSE=""
70
71 DEPEND=">=dev-lang/perl-5.6.1"
72 @@ -16,12 +18,12 @@
73 src_install() {
74 #yes, htmldir line is correct, no ${D}
75 emake DESTDIR="${D}" \
76 - htmldir=/usr/share/doc/${PF}/html \
77 + htmldir="${EPREFIX}"/usr/share/doc/${PF}/html \
78 install || die "Installation Failed"
79
80 dodoc AUTHORS ChangeLog INTRODUCTION NEWS README TODO
81 }
82
83 pkg_preinst() {
84 - rm -f "${ROOT}"/usr/bin/texi2html
85 + rm -f "${EROOT}"/usr/bin/texi2html
86 }