Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/parrot: parrot-2.3.0.ebuild ChangeLog
Date: Sun, 25 Apr 2010 07:41:38
Message-Id: 20100425074133.B7A692C04C@corvid.gentoo.org
1 tove 10/04/25 07:41:33
2
3 Modified: ChangeLog
4 Added: parrot-2.3.0.ebuild
5 Log:
6 Version bump. Thanks to Alexandre Rostovtsev (#307203)
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.30 dev-lang/parrot/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/parrot/ChangeLog?rev=1.30&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/parrot/ChangeLog?rev=1.30&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/parrot/ChangeLog?r1=1.29&r2=1.30
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/parrot/ChangeLog,v
19 retrieving revision 1.29
20 retrieving revision 1.30
21 diff -u -r1.29 -r1.30
22 --- ChangeLog 28 Feb 2010 20:42:07 -0000 1.29
23 +++ ChangeLog 25 Apr 2010 07:41:33 -0000 1.30
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-lang/parrot
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/ChangeLog,v 1.29 2010/02/28 20:42:07 lu_zero Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/ChangeLog,v 1.30 2010/04/25 07:41:33 tove Exp $
29 +
30 +*parrot-2.3.0 (25 Apr 2010)
31 +
32 + 25 Apr 2010; Torsten Veller <tove@g.o> +parrot-2.3.0.ebuild:
33 + Version bump. Thanks to Alexandre Rostovtsev (#307203)
34
35 *parrot-2.1.1 (28 Feb 2010)
36
37
38
39
40 1.1 dev-lang/parrot/parrot-2.3.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/parrot/parrot-2.3.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/parrot/parrot-2.3.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: parrot-2.3.0.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-2.3.0.ebuild,v 1.1 2010/04/25 07:41:33 tove Exp $
50
51 EAPI=3
52
53 inherit eutils multilib
54
55 DESCRIPTION="Virtual machine designed to efficiently compile and execute bytecode for dynamic languages"
56 HOMEPAGE="http://www.parrot.org/"
57 SRC_URI="ftp://ftp.parrot.org/pub/parrot/releases/supported/${PV}/${P}.tar.bz2"
58
59 LICENSE="Artistic-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre"
63
64 RDEPEND="sys-libs/readline
65 opengl? ( virtual/glut )
66 nls? ( sys-devel/gettext )
67 unicode? ( >=dev-libs/icu-2.6 )
68 gdbm? ( >=sys-libs/gdbm-1.8.3-r1 )
69 gmp? ( >=dev-libs/gmp-4.1.4 )
70 ssl? ( dev-libs/openssl )
71 pcre? ( dev-libs/libpcre )"
72
73 DEPEND="dev-lang/perl[doc?]
74 ${RDEPEND}"
75
76 src_configure() {
77 myconf="--disable-rpath"
78 use unicode || myconf+=" --without-icu"
79 use ssl || myconf+=" --without-crypto"
80 use gdbm || myconf+=" --without-gdbm"
81 use nls || myconf+=" --without-gettext"
82 use gmp || myconf+=" --without-gmp"
83 use opengl || myconf+=" --without-opengl"
84 use pcre || myconf+=" --without-pcre"
85
86 perl Configure.pl \
87 --ccflags="${CFLAGS}" \
88 --linkflags="${LDFLAGS}" \
89 --prefix="${EROOT}"/usr \
90 --libdir="${EROOT}"/usr/$(get_libdir) \
91 --sysconfdir="${EROOT}"/etc \
92 --sharedstatedir="${EROOT}"/var/lib/parrot \
93 --pkgconfigdir=pkgconfig \
94 $myconf || die
95 }
96
97 src_compile() {
98 export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib
99 # occasionally dies in parallel make
100 emake -j1 || die
101 if use doc ; then
102 emake -j1 html || die
103 fi
104 }
105
106 src_test() {
107 emake -j1 test || die
108 }
109
110 src_install() {
111 emake -j1 install-dev DESTDIR="${ED}" DOC_DIR="${EROOT}/usr/share/doc/${PF}" || die
112 dodoc CREDITS DEPRECATED.pod DONORS.pod NEWS PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES TODO || die
113 if use examples; then
114 insinto "${EROOT}/usr/share/doc/${PF}/examples"
115 doins -r examples/* || die
116 fi
117 if use doc; then
118 insinto "${EROOT}/usr/share/doc/${PF}/editor"
119 doins -r editor || die
120 cd docs/html
121 dohtml -r developer.html DONORS.pod.html index.html ops.html parrotbug.html pdds.html \
122 pmc.html tools.html docs src tools || die
123 fi
124 }