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