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