Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-tex/bibtex2html: ChangeLog bibtex2html-1.92.ebuild
Date: Fri, 03 Oct 2008 06:33:14
Message-Id: E1KleDv-0001Dl-1V@stork.gentoo.org
1 aballier 08/10/03 06:33:11
2
3 Modified: ChangeLog
4 Added: bibtex2html-1.92.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.26.5 x86_64)
8
9 Revision Changes Path
10 1.15 dev-tex/bibtex2html/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/bibtex2html/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/bibtex2html/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/bibtex2html/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 3 Oct 2008 06:29:16 -0000 1.14
23 +++ ChangeLog 3 Oct 2008 06:33:10 -0000 1.15
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-tex/bibtex2html
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.14 2008/10/03 06:29:16 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.15 2008/10/03 06:33:10 aballier Exp $
29 +
30 +*bibtex2html-1.92 (03 Oct 2008)
31 +
32 + 03 Oct 2008; Alexis Ballier <aballier@g.o>
33 + +bibtex2html-1.92.ebuild:
34 + version bump
35
36 03 Oct 2008; Alexis Ballier <aballier@g.o> bibtex2html-1.80.ebuild,
37 bibtex2html-1.91.ebuild:
38
39
40
41 1.1 dev-tex/bibtex2html/bibtex2html-1.92.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.92.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.92.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bibtex2html-1.92.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.92.ebuild,v 1.1 2008/10/03 06:33:10 aballier Exp $
51
52 inherit eutils
53
54 IUSE="doc"
55
56 DESCRIPTION="A bibtex to HTML converter"
57 SRC_URI="http://www.lri.fr/~filliatr/ftp/bibtex2html/${P}.tar.gz"
58 HOMEPAGE="http://www.lri.fr/~filliatr/bibtex2html/"
59
60 SLOT="0"
61
62 LICENSE="GPL-2"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 RESTRICT="test"
65
66 # With use doc we need a latex compiler to generate manual.ps
67 # hevea is used for manual.html
68 # manual.tex needs fullpage.sty
69 DEPEND=">=dev-lang/ocaml-3.09
70 doc? ( virtual/latex-base
71 || ( dev-texlive/texlive-latexextra app-text/tetex app-text/ptex )
72 dev-tex/hevea )"
73 # We need tex-base for bibtex but also some bibtex styles, so we use latex-base
74 RDEPEND="virtual/latex-base"
75
76 src_unpack() {
77 unpack ${A}
78 cd "${S}"
79
80 epatch "${FILESDIR}/${PN}-1.88-destdir.patch"
81 # Avoid pre-stripped files
82 sed -i -e "s/strip/true/" Makefile.in
83 }
84
85 src_compile() {
86 export VARTEXFONTS="${T}/fonts"
87 econf || die "could not configure bibtex2html"
88 emake || die "could not make bibtex2html"
89 if use doc; then
90 emake doc || die "failed to create doc"
91 fi
92 }
93
94 src_install() {
95 emake DESTDIR="${D}" install || die "failed to install"
96 dodoc README CHANGES
97 if use doc; then
98 dodoc manual.ps
99 dohtml manual.html
100 fi
101 }