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.88.ebuild
Date: Sat, 08 Dec 2007 10:06:59
Message-Id: E1J0wa9-0002XU-CC@stork.gentoo.org
1 aballier 07/12/08 10:06:49
2
3 Modified: ChangeLog
4 Added: bibtex2html-1.88.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.4_rc9)
8
9 Revision Changes Path
10 1.9 dev-tex/bibtex2html/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/bibtex2html/ChangeLog?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/bibtex2html/ChangeLog?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/bibtex2html/ChangeLog?r1=1.8&r2=1.9
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- ChangeLog 5 Nov 2007 15:09:47 -0000 1.8
23 +++ ChangeLog 8 Dec 2007 10:06:48 -0000 1.9
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-tex/bibtex2html
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.8 2007/11/05 15:09:47 cryos Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/bibtex2html/ChangeLog,v 1.9 2007/12/08 10:06:48 aballier Exp $
29 +
30 +*bibtex2html-1.88 (08 Dec 2007)
31 +
32 + 08 Dec 2007; Alexis Ballier <aballier@g.o>
33 + +files/bibtex2html-1.88-destdir.patch, +bibtex2html-1.88.ebuild:
34 + version bump
35
36 05 Nov 2007; Marcus D. Hanwell <cryos@g.o> bibtex2html-1.80.ebuild:
37 Marked stable on amd64, bug 197381.
38
39
40
41 1.1 dev-tex/bibtex2html/bibtex2html-1.88.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.88.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-tex/bibtex2html/bibtex2html-1.88.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bibtex2html-1.88.ebuild
47 ===================================================================
48 # Copyright 1999-2007 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.88.ebuild,v 1.1 2007/12/08 10:06:48 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
65 RDEPEND=">=dev-lang/ocaml-3.09"
66 # With use doc we need a latex compile to generate manual.ps
67 # hevea is used for manual.html
68 # manual.tex needs fullpage.sty
69 DEPEND="${RDEPEND}
70 doc? ( virtual/latex-base
71 || ( dev-texlive/texlive-latexextra app-text/tetex app-text/ptex )
72 dev-tex/hevea )"
73
74 src_unpack() {
75 unpack ${A}
76 cd "${S}"
77
78 epatch "${FILESDIR}/${P}-destdir.patch"
79 # Avoid pre-stripped files
80 sed -i -e "s/strip/true/" Makefile.in
81 }
82
83 src_compile() {
84 export VARTEXFONTS="${T}/fonts"
85 econf || die "could not configure bibtex2html"
86 emake || die "could not make bibtex2html"
87 if use doc; then
88 emake doc || die "failed to create doc"
89 fi
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "failed to install"
94 dodoc README CHANGES
95 if use doc; then
96 dodoc manual.ps
97 dohtml manual.html
98 fi
99 }
100
101
102
103 --
104 gentoo-commits@g.o mailing list