Gentoo Archives: gentoo-commits

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