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.14.ebuild orc-0.4.13.ebuild
Date: Tue, 03 May 2011 03:16:49
Message-Id: 20110503031637.121D92004F@flycatcher.gentoo.org
1 ford_prefect 11/05/03 03:16:37
2
3 Modified: ChangeLog
4 Added: orc-0.4.14.ebuild
5 Removed: orc-0.4.13.ebuild
6 Log:
7 Another bug fix release, so replacing previous version.
8
9 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.18 dev-lang/orc/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.18&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?rev=1.18&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/ChangeLog?r1=1.17&r2=1.18
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v
21 retrieving revision 1.17
22 retrieving revision 1.18
23 diff -u -r1.17 -r1.18
24 --- ChangeLog 19 Apr 2011 06:06:31 -0000 1.17
25 +++ ChangeLog 3 May 2011 03:16:36 -0000 1.18
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-lang/orc
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.17 2011/04/19 06:06:31 ford_prefect Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/ChangeLog,v 1.18 2011/05/03 03:16:36 ford_prefect Exp $
31 +
32 +*orc-0.4.14 (03 May 2011)
33 +
34 + 03 May 2011; Arun Raghavan <ford_prefect@g.o> -orc-0.4.13.ebuild,
35 + +orc-0.4.14.ebuild:
36 + Another bug fix release, so replacing previous version.
37
38 *orc-0.4.13 (19 Apr 2011)
39
40
41
42
43 1.1 dev-lang/orc/orc-0.4.14.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/orc-0.4.14.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/orc/orc-0.4.14.ebuild?rev=1.1&content-type=text/plain
47
48 Index: orc-0.4.14.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-lang/orc/orc-0.4.14.ebuild,v 1.1 2011/05/03 03:16:36 ford_prefect Exp $
53
54 EAPI=3
55 inherit autotools flag-o-matic
56
57 DESCRIPTION="The Oil Runtime Compiler"
58 HOMEPAGE="http://code.entropywave.com/projects/orc/"
59 SRC_URI="http://code.entropywave.com/download/orc/${P}.tar.gz"
60
61 LICENSE="BSD BSD-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
64 IUSE="static-libs examples"
65
66 src_prepare() {
67 if ! use examples; then
68 sed -i -e '/SUBDIRS/s:examples::' Makefile.am || die
69 AT_M4DIR="m4" eautoreconf
70 fi
71 }
72
73 src_configure() {
74 # any optimisation on PPC/Darwin yields in a complaint from the assembler
75 # Parameter error: r0 not allowed for parameter %lu (code as 0 not r0)
76 # the same for Intel/Darwin, although the error message there is different
77 # but along the same lines
78 [[ ${CHOST} == *-darwin* ]] && filter-flags -O*
79 econf \
80 $(use_enable static-libs static) \
81 --disable-dependency-tracking \
82 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die
87 dodoc README TODO
88
89 find "${ED}" -name '*.la' -delete
90 }