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