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-ml/pxp: ChangeLog pxp-1.2.1.ebuild
Date: Wed, 04 Feb 2009 07:57:59
Message-Id: E1LUcdy-0006ee-3w@stork.gentoo.org
1 aballier 09/02/04 07:57:58
2
3 Modified: ChangeLog
4 Added: pxp-1.2.1.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 dev-ml/pxp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pxp/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pxp/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pxp/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 19 Apr 2008 15:38:09 -0000 1.14
23 +++ ChangeLog 4 Feb 2009 07:57:58 -0000 1.15
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-ml/pxp
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v 1.14 2008/04/19 15:38:09 aballier Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/ChangeLog,v 1.15 2009/02/04 07:57:58 aballier Exp $
30 +
31 +*pxp-1.2.1 (04 Feb 2009)
32 +
33 + 04 Feb 2009; Alexis Ballier <aballier@g.o> +pxp-1.2.1.ebuild:
34 + version bump
35
36 19 Apr 2008; Alexis Ballier <aballier@g.o> -pxp-1.1.95.ebuild,
37 -pxp-1.1.96.ebuild:
38
39
40
41 1.1 dev-ml/pxp/pxp-1.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pxp/pxp-1.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/pxp/pxp-1.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pxp-1.2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ml/pxp/pxp-1.2.1.ebuild,v 1.1 2009/02/04 07:57:58 aballier Exp $
51
52 EAPI="2"
53
54 inherit findlib eutils
55
56 MY_P=${P/_beta/test}
57
58 DESCRIPTION="validating XML parser library for O'Caml"
59 HOMEPAGE="http://projects.camlcity.org/projects/pxp.html"
60 SRC_URI="http://download.camlcity.org/download/${MY_P}.tar.gz"
61
62 LICENSE="as-is"
63 KEYWORDS="~amd64 ~ppc ~x86"
64
65 SLOT="0"
66 DEPEND=">=dev-ml/pcre-ocaml-4.31
67 >=dev-ml/ulex-0.5
68 >=dev-ml/ocamlnet-0.98
69 >=dev-lang/ocaml-3.10.2[ocamlopt?]"
70 RDEPEND="${DEPEND}"
71
72 IUSE="examples +ocamlopt"
73
74 S=${WORKDIR}/${MY_P}
75
76 src_configure() {
77 #the included configure does not support many standard switches and is quite picky
78 ./configure || die "configure failed"
79 }
80
81 src_compile() {
82 emake -j1 all || die "make all failed"
83 if use ocamlopt; then
84 emake -j1 opt || die "make opt failed"
85 fi
86 }
87
88 src_install() {
89 findlib_src_install
90 if use examples; then
91 insinto /usr/share/doc/${PF}
92 doins -r examples
93 fi
94
95 cd doc
96 dodoc ABOUT-FINDLIB DEV EXTENSIONS README SPEC design.txt
97 }