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.11.0.ebuild ChangeLog
Date: Tue, 27 Dec 2011 05:35:47
Message-Id: 20111227053533.EDC332004B@flycatcher.gentoo.org
1 patrick 11/12/27 05:35:33
2
3 Modified: ChangeLog
4 Added: parrot-3.11.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.48 dev-lang/parrot/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/parrot/ChangeLog?rev=1.48&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/parrot/ChangeLog?rev=1.48&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/parrot/ChangeLog?r1=1.47&r2=1.48
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/parrot/ChangeLog,v
20 retrieving revision 1.47
21 retrieving revision 1.48
22 diff -u -r1.47 -r1.48
23 --- ChangeLog 22 Oct 2011 18:34:28 -0000 1.47
24 +++ ChangeLog 27 Dec 2011 05:35:33 -0000 1.48
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.47 2011/10/22 18:34:28 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/ChangeLog,v 1.48 2011/12/27 05:35:33 patrick Exp $
30 +
31 +*parrot-3.11.0 (27 Dec 2011)
32 +
33 + 27 Dec 2011; Patrick Lauer <patrick@g.o> +parrot-3.11.0.ebuild:
34 + Bump
35
36 *parrot-3.9.0 (22 Oct 2011)
37
38
39
40
41 1.1 dev-lang/parrot/parrot-3.11.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/parrot/parrot-3.11.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/parrot/parrot-3.11.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: parrot-3.11.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.11.0.ebuild,v 1.1 2011/12/27 05:35:33 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/devel/${PV}/${P}.tar.bz2"
59
60 LICENSE="Artistic-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
63 IUSE="opengl nls doc examples gdbm gmp ssl +unicode pcre"
64
65 RDEPEND="sys-libs/readline
66 opengl? ( media-libs/freeglut )
67 nls? ( sys-devel/gettext )
68 unicode? ( >=dev-libs/icu-2.6 )
69 gdbm? ( >=sys-libs/gdbm-1.8.3-r1 )
70 gmp? ( >=dev-libs/gmp-4.1.4 )
71 ssl? ( dev-libs/openssl )
72 pcre? ( dev-libs/libpcre )"
73
74 DEPEND="dev-lang/perl[doc?]
75 ${RDEPEND}"
76
77 src_configure() {
78 myconf="--disable-rpath"
79 use unicode || myconf+=" --without-icu"
80 use ssl || myconf+=" --without-crypto"
81 use gdbm || myconf+=" --without-gdbm"
82 use nls || myconf+=" --without-gettext"
83 use gmp || myconf+=" --without-gmp"
84 use opengl || myconf+=" --without-opengl"
85 use pcre || myconf+=" --without-pcre"
86
87 perl Configure.pl \
88 --ccflags="${CFLAGS}" \
89 --linkflags="${LDFLAGS}" \
90 --prefix="${EPREFIX}"/usr \
91 --libdir="${EPREFIX}"/usr/$(get_libdir) \
92 --mandir="${EPREFIX}"/usr/share/man \
93 --sysconfdir="${EPREFIX}"/etc \
94 --sharedstatedir="${EPREFIX}"/var/lib/parrot \
95 $myconf || die
96 }
97
98 src_compile() {
99 export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib
100 # occasionally dies in parallel make
101 emake -j1 || die
102 if use doc ; then
103 emake -j1 html || die
104 fi
105 }
106
107 src_test() {
108 emake -j1 test || die
109 }
110
111 src_install() {
112 emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" || die
113 dodoc CREDITS DONORS.pod PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES TODO || die
114 if use examples; then
115 insinto "/usr/share/doc/${PF}/examples"
116 doins -r examples/* || die
117 fi
118 if use doc; then
119 insinto "/usr/share/doc/${PF}/editor"
120 doins -r editor || die
121 cd docs/html
122 dohtml -r developer.html DONORS.pod.html index.html ops.html parrotbug.html pdds.html \
123 pmc.html tools.html docs src tools || die
124 fi
125 }