Gentoo Archives: gentoo-commits

From: "Yuval Yaari (yuval)" <yuval@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/parrot: ChangeLog parrot-0.6.1.ebuild
Date: Tue, 29 Apr 2008 01:29:15
Message-Id: E1Jqeed-0003ga-Mx@stork.gentoo.org
1 yuval 08/04/29 01:29:11
2
3 Modified: ChangeLog
4 Added: parrot-0.6.1.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.19 dev-lang/parrot/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/parrot/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/parrot/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/parrot/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-lang/parrot/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 29 Jan 2008 21:30:15 -0000 1.18
23 +++ ChangeLog 29 Apr 2008 01:29:11 -0000 1.19
24 @@ -1,6 +1,14 @@
25 # ChangeLog for dev-lang/parrot
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/ChangeLog,v 1.18 2008/01/29 21:30:15 grobian Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/ChangeLog,v 1.19 2008/04/29 01:29:11 yuval Exp $
29 +
30 + 29 Apr 2008; Yuval Yaari <yuval@g.o> +parrot-0.6.1.ebuild:
31 + Version bump
32 +
33 +*parrot-0.6.1 (29 Apr 2008)
34 +
35 + 29 Apr 2008; Yuval Yaari <yuval@g.o> +parrot-0.6.1.ebuild:
36 + Version bump
37
38 29 Jan 2008; Fabian Groffen <grobian@g.o> parrot-0.4.0.ebuild,
39 parrot-0.4.3.ebuild, parrot-0.4.5.ebuild, parrot-0.4.6.ebuild:
40
41
42
43 1.1 dev-lang/parrot/parrot-0.6.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/parrot/parrot-0.6.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/parrot/parrot-0.6.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: parrot-0.6.1.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-lang/parrot/parrot-0.6.1.ebuild,v 1.1 2008/04/29 01:29:11 yuval Exp $
53
54 inherit base eutils multilib
55
56 DESCRIPTION="The virtual machine that perl6 relies on."
57 HOMEPAGE="http://www.parrotcode.org/"
58 SRC_URI="mirror://cpan/authors/id/P/PA/PARTICLE/${P}.tar.gz"
59 LICENSE="|| ( Artistic GPL-2 )"
60
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
63 IUSE="doc examples gdbm gmp python"
64
65 RDEPEND=">=dev-libs/icu-2.6
66 >=sys-libs/ncurses-5.2-r2
67 >=sys-libs/readline-5.1
68 gdbm? ( >=sys-libs/gdbm-1.8.3-r1 )
69 gmp? ( >=dev-libs/gmp-4.1.4 )"
70
71 DEPEND="${RDEPEND}
72 dev-lang/perl
73 python? ( =dev-lang/python-2.4* )"
74 #java? ( >=dev-java/antlr-2.7.5 )
75
76 src_compile() {
77 #This configure defines the DESTDIR for make.
78 perl Configure.pl --prefix=/usr --libdir=/usr/$(get_libdir) || die "Perl ./Configure.pl failed"
79 emake -j1 || die "emake failed"
80 if use doc ; then
81 emake html || die "emake html failed"
82 fi
83 }
84
85 src_install() {
86 #Don't install stuff that is unnecessary
87 #We can't do this in src_unpack() because it breaks emake html
88 sed -e '/^\(docs\/\|LICENSES\|TODO\|compilers\|config\)/ D' -i MANIFEST
89 sed -e '/^\(docs\/\|compilers\|config\)/ D' -i MANIFEST.generated
90 sed -e '/^src.*\[main\]$/ D' -i MANIFEST.generated
91 if ! use examples ; then
92 sed -e '/^examples\// D' -i MANIFEST
93 sed -e '/^examples\// D' -i MANIFEST.generated
94 fi
95 #Because install_files.pl doesn't respect LIB_DIR in some places
96 sed -e "s:/lib/:/$(get_libdir)/:" -i tools/dev/install_files.pl
97 #The prefix was set by Configure.pl - see src_compile().
98 emake -j1 reallyinstall DESTDIR="${D}" DOC_DIR="/usr/share/doc/${P}" || die "emake install failed"
99 insinto "/usr/$(get_libdir)/${PN}"
100 doins config_lib.pasm
101
102 #necessary for mod_parrot-0.3
103 dodir "/usr/$(get_libdir)/${PN}/src/"
104 insinto "/usr/$(get_libdir)/${PN}/src/"
105 doins "${S}/src/install_config.o" "${S}/src/null_config.o" "${S}/src/parrot_config.o"
106
107 pod2html DEPRECATED.pod > DEPRECATED.html
108 dodoc README RESPONSIBLE_PARTIES ABI_CHANGES ChangeLog CREDITS NEWS \
109 DEPRECATED.html
110 use doc && dohtml -r docs/html/*
111 }
112
113 src_test() {
114 emake test || die "test failed"
115 }
116
117
118
119 --
120 gentoo-commits@l.g.o mailing list