Gentoo Archives: gentoo-commits

From: "Arun Raghavan (ford_prefect)" <ford_prefect@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/orc: ChangeLog orc-0.4.9.ebuild
Date: Wed, 08 Sep 2010 17:51:06
Message-Id: 20100908175104.14C6820051@flycatcher.gentoo.org
1 ford_prefect 10/09/08 17:51:04
2
3 Modified: ChangeLog
4 Added: orc-0.4.9.ebuild
5 Log:
6 Bump to 0.4.9
7
8 (Portage version: 2.2_rc74/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 dev-lang/orc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 21 Aug 2010 14:47:12 -0000 1.6
24 +++ ChangeLog 8 Sep 2010 17:51:03 -0000 1.7
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-lang/orc
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.6 2010/08/21 14:47:12 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.7 2010/09/08 17:51:03 ford_prefect Exp $
30 +
31 +*orc-0.4.9 (08 Sep 2010)
32 +
33 + 08 Sep 2010; Arun Raghavan <ford_prefect@g.o> +orc-0.4.9.ebuild,
34 + +files/orc-0.4.9-make-valgrind-optional.patch:
35 + Bump to 0.4.9
36
37 *orc-0.4.7 (21 Aug 2010)
38
39
40
41
42 1.1 dev-lang/orc/orc-0.4.9.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/orc-0.4.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/orc-0.4.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: orc-0.4.9.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.9.ebuild,v 1.1 2010/09/08 17:51:03 ford_prefect Exp $
52
53 EAPI=3
54 inherit autotools
55
56 DESCRIPTION="The Oil Runtime Compiler"
57 HOMEPAGE="http://code.entropywave.com/projects/orc/"
58 SRC_URI="http://code.entropywave.com/download/orc/${P}.tar.gz"
59
60 LICENSE="BSD BSD-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
63 IUSE="static-libs examples"
64
65 src_prepare() {
66 if ! use examples; then
67 sed -i -e '/SUBDIRS/s:examples::' Makefile.am || die
68 fi
69
70 epatch "${FILESDIR}/${P}-make-valgrind-optional.patch"
71 AT_M4DIR="m4" eautoreconf
72 }
73
74 src_configure() {
75 econf \
76 $(use_enable static-libs static) \
77 --disable-dependency-tracking \
78 --disable-valgrind \
79 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install || die
84 dodoc README TODO
85
86 find "${ED}" -name '*.la' -delete
87 }