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/ocurl: ChangeLog ocurl-0.5.1.ebuild
Date: Sun, 21 Jun 2009 13:26:03
Message-Id: E1MIN3Z-0006QI-Nf@stork.gentoo.org
1 aballier 09/06/21 13:26:01
2
3 Modified: ChangeLog
4 Added: ocurl-0.5.1.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 dev-ml/ocurl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocurl/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocurl/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocurl/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 21 Jun 2009 13:10:17 -0000 1.7
23 +++ ChangeLog 21 Jun 2009 13:26:01 -0000 1.8
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-ml/ocurl
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ChangeLog,v 1.7 2009/06/21 13:10:17 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/ocurl/ChangeLog,v 1.8 2009/06/21 13:26:01 aballier Exp $
29 +
30 +*ocurl-0.5.1 (21 Jun 2009)
31 +
32 + 21 Jun 2009; Alexis Ballier <aballier@g.o> +ocurl-0.5.1.ebuild,
33 + +files/ocurl-0.5.1-asneeded.patch:
34 + version bump
35
36 21 Jun 2009; Alexis Ballier <aballier@g.o> ocurl-0.2.1.ebuild:
37 dont install copying
38
39
40
41 1.1 dev-ml/ocurl/ocurl-0.5.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocurl/ocurl-0.5.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-ml/ocurl/ocurl-0.5.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ocurl-0.5.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/ocurl/ocurl-0.5.1.ebuild,v 1.1 2009/06/21 13:26:01 aballier Exp $
51
52 EAPI=2
53
54 inherit eutils findlib autotools
55
56 DESCRIPTION="OCaml interface to the libcurl library"
57 HOMEPAGE="http://sourceforge.net/projects/ocurl"
58 LICENSE="MIT"
59 SRC_URI="mirror://sourceforge/ocurl/${P}.tgz"
60
61 SLOT="0"
62 IUSE="examples"
63
64 DEPEND=">=net-misc/curl-7.9.8
65 dev-libs/openssl"
66 RDEPEND="$DEPEND"
67 KEYWORDS="~amd64 ~ppc ~x86"
68
69 S=${WORKDIR}/${PN}
70
71 src_prepare() {
72 epatch "${FILESDIR}/${P}-asneeded.patch"
73 eautoreconf
74 }
75
76 src_configure() {
77 econf --with-findlib
78 }
79
80 src_compile()
81 {
82 emake -j1 all || die
83 }
84
85 src_install()
86 {
87 findlib_src_install
88 if use examples; then
89 insinto /usr/share/doc/${PF}
90 doins -r examples
91 fi
92 }