diff options
author | Michael Cummings <mcummings@gentoo.org> | 2006-04-04 16:12:39 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2006-04-04 16:12:39 +0000 |
commit | 921fe7a6b6ba5228e3161449ad2a22d12b886ff7 (patch) | |
tree | 696c57a5f568fd36d8681ad57dd5df2a28accc74 /dev-lang/pugs/pugs-6.2.11.ebuild | |
parent | Version bump to 2.0_rc41. (diff) | |
download | gentoo-2-921fe7a6b6ba5228e3161449ad2a22d12b886ff7.tar.gz gentoo-2-921fe7a6b6ba5228e3161449ad2a22d12b886ff7.tar.bz2 gentoo-2-921fe7a6b6ba5228e3161449ad2a22d12b886ff7.zip |
Bug 114706, added multilib support for amd64; bug 126778, bumpage (thanks yuval on both accounts :)
(Portage version: 2.1_pre6-r6)
Diffstat (limited to 'dev-lang/pugs/pugs-6.2.11.ebuild')
-rw-r--r-- | dev-lang/pugs/pugs-6.2.11.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-lang/pugs/pugs-6.2.11.ebuild b/dev-lang/pugs/pugs-6.2.11.ebuild new file mode 100644 index 000000000000..d33c748e0fce --- /dev/null +++ b/dev-lang/pugs/pugs-6.2.11.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/pugs/pugs-6.2.11.ebuild,v 1.1 2006/04/04 16:12:39 mcummings Exp $ + +inherit perl-module multilib eutils + +MY_P="Perl6-Pugs-${PV}" +MY_PARROT="parrot-0.4.3" +S="${WORKDIR}/-${PV}" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="Pugs is an implementation of Perl 6, written in Haskell" +HOMEPAGE="http://pugscode.org/" +SRC_URI="mirror://cpan/authors/id/A/AU/AUTRIJUS/${MY_P}.tar.gz" +LICENSE="|| ( Artistic GPL-2 )" + +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc" + +IUSE="" + +DEPEND="dev-perl/Term-ReadLine-Perl + || ( >=dev-lang/ghc-bin-6.4.1 >=dev-lang/ghc-6.4.1 ) + >=dev-lang/${MY_PARROT}" +#not yet supported because the 0.9.8 version does not work with ghc-6.4 that is required for pugs + +export PARROT_PATH="/usr/$(get_libdir)/${MY_PARROT}" +#this links against parrot and perl5 - if threads was used to compile perl5 this is not supported here +export PUGS_EMBED="parrot perl5" +#del upon ghc-6.4.1 release +export GHCRTS='-A200M' + +src_unpack() { + unpack ${A} + cd ${S} + + epatch ${FILESDIR}/${P}-build_dir.patch +} |