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-6.1.0.ebuild ChangeLog
Date: Wed, 26 Feb 2014 08:26:18
Message-Id: 20140226082609.40C442004C@flycatcher.gentoo.org
1 patrick 14/02/26 08:26:09
2
3 Modified: ChangeLog
4 Added: parrot-6.1.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.76 dev-lang/parrot/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/parrot/ChangeLog?rev=1.76&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/parrot/ChangeLog?rev=1.76&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/parrot/ChangeLog?r1=1.75&r2=1.76
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-lang/parrot/ChangeLog,v
20 retrieving revision 1.75
21 retrieving revision 1.76
22 diff -u -r1.75 -r1.76
23 --- ChangeLog 27 Jan 2014 05:40:13 -0000 1.75
24 +++ ChangeLog 26 Feb 2014 08:26:09 -0000 1.76
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-lang/parrot
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/ChangeLog,v 1.75 2014/01/27 05:40:13 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/ChangeLog,v 1.76 2014/02/26 08:26:09 patrick Exp $
30 +
31 +*parrot-6.1.0 (26 Feb 2014)
32 +
33 + 26 Feb 2014; Patrick Lauer <patrick@g.o> +parrot-6.1.0.ebuild:
34 + Bump
35
36 *parrot-6.0.0 (27 Jan 2014)
37
38
39
40
41 1.1 dev-lang/parrot/parrot-6.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/parrot/parrot-6.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/parrot/parrot-6.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: parrot-6.1.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-6.1.0.ebuild,v 1.1 2014/02/26 08:26:09 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/devel/${PV}/${P}.tar.gz"
62
63 LICENSE="Artistic-2"
64 SLOT="0/6.1.0"
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 opengl? ( media-libs/freeglut )
70 nls? ( sys-devel/gettext )
71 unicode? ( >=dev-libs/icu-2.6 )
72 gdbm? ( >=sys-libs/gdbm-1.8.3-r1 )
73 gmp? ( >=dev-libs/gmp-4.1.4 )
74 ssl? ( dev-libs/openssl )
75 pcre? ( dev-libs/libpcre )
76 doc? ( dev-perl/JSON )"
77
78 DEPEND="dev-lang/perl[doc?]
79 ${RDEPEND}"
80
81 src_configure() {
82 myconf="--disable-rpath"
83 use unicode || myconf+=" --without-icu"
84 use ssl || myconf+=" --without-crypto"
85 use gdbm || myconf+=" --without-gdbm"
86 use nls || myconf+=" --without-gettext"
87 use gmp || myconf+=" --without-gmp"
88 use opengl || myconf+=" --without-opengl"
89 use pcre || myconf+=" --without-pcre"
90
91 perl Configure.pl \
92 --ccflags="${CFLAGS}" \
93 --linkflags="${LDFLAGS}" \
94 --prefix="${EPREFIX}"/usr \
95 --libdir="${EPREFIX}"/usr/$(get_libdir) \
96 --mandir="${EPREFIX}"/usr/share/man \
97 --sysconfdir="${EPREFIX}"/etc \
98 --sharedstatedir="${EPREFIX}"/var/lib/parrot \
99 $myconf || die
100 }
101
102 src_compile() {
103 export LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"${S}"/blib/lib
104 # occasionally dies in parallel make
105 emake -j1 || die
106 if use doc ; then
107 emake -j1 html || die
108 fi
109 }
110
111 src_test() {
112 emake -j1 test || die
113 }
114
115 src_install() {
116 emake -j1 install-dev DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" || die
117 dodoc CREDITS DONORS.pod PBC_COMPAT PLATFORMS RESPONSIBLE_PARTIES TODO || die
118 if use examples; then
119 insinto "/usr/share/doc/${PF}/examples"
120 doins -r examples/* || die
121 fi
122 if use doc; then
123 insinto "/usr/share/doc/${PF}/editor"
124 doins -r editor || die
125 cd docs/html
126 dohtml -r developer.html DONORS.pod.html index.html ops.html parrotbug.html pdds.html \
127 pmc.html tools.html docs src tools || die
128 fi
129 }