Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/htmlc: ChangeLog htmlc-2.60.0.ebuild
Date: Sun, 30 Nov 2014 12:59:11
Message-Id: 20141130125906.451C9B388@oystercatcher.gentoo.org
1 aballier 14/11/30 12:59:06
2
3 Modified: ChangeLog
4 Added: htmlc-2.60.0.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.8 app-text/htmlc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/htmlc/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 24 Dec 2013 12:55:56 -0000 1.7
24 +++ ChangeLog 30 Nov 2014 12:59:06 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/htmlc
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/htmlc/ChangeLog,v 1.7 2013/12/24 12:55:56 ago Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/htmlc/ChangeLog,v 1.8 2014/11/30 12:59:06 aballier Exp $
31 +
32 +*htmlc-2.60.0 (30 Nov 2014)
33 +
34 + 30 Nov 2014; Alexis Ballier <aballier@g.o> +htmlc-2.60.0.ebuild:
35 + version bump
36
37 24 Dec 2013; Agostino Sarubbo <ago@g.o> htmlc-2.40.0.ebuild:
38 Stable for x86, wrt bug #491944
39
40
41
42 1.1 app-text/htmlc/htmlc-2.60.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/htmlc-2.60.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/htmlc/htmlc-2.60.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: htmlc-2.60.0.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-text/htmlc/htmlc-2.60.0.ebuild,v 1.1 2014/11/30 12:59:06 aballier Exp $
52
53 EAPI=5
54
55 # Override version: 2.4.0 > 2.21.0 so we name it 2.40.0
56 MY_P="${P/0[.]/.}"
57
58 DESCRIPTION="HTML template files expander"
59 HOMEPAGE="http://htmlc.inria.fr/"
60 SRC_URI="http://htmlc.inria.fr/${MY_P%.0}.tgz"
61
62 LICENSE="htmlc"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE="+ocamlopt"
66 # Files for the tests are missing...
67 #RESTRICT="test"
68
69 DEPEND=">=dev-lang/ocaml-3.11.2:=[ocamlopt?]"
70 RDEPEND="${DEPEND}"
71
72 S="${WORKDIR}/${MY_P}"
73
74 src_configure() {
75 ./configure \
76 --install-root-dir "${ED}usr" \
77 || die
78 }
79
80 src_compile() {
81 if use ocamlopt ; then
82 emake bin
83 else
84 emake byt
85 fi
86 }
87
88 src_install() {
89 if use ocamlopt ; then
90 emake installbin
91 else
92 emake installbyt
93 fi
94 emake MANDIR='$(PREFIXINSTALLDIR)/share/man/man$(MANEXT)' installman
95 dodoc README Announce* CHANGES
96 }