# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc-bin/ghc-bin-6.4.ebuild,v 1.2 2005/05/09 15:47:39 corsair Exp $ IUSE="" # use the non-binary version if you want to have more choice DESCRIPTION="Glasgow Haskell Compiler" # list all arches for proper digest building: SRC_URI="x86? ( mirror://gentoo/${P}-x86.tbz2 ) ppc64? ( mirror://gentoo/${P}-ppc64.tbz2)" HOMEPAGE="http://www.haskell.org" LICENSE="as-is" KEYWORDS="-alpha -amd64 -ppc ~ppc64 -sparc ~x86" SLOT="0" RESTRICT="nostrip" # already stripped LOC="/opt/ghc" DEPEND="" RDEPEND=">=dev-lang/perl-5.6.1 >=sys-devel/gcc-2.95.3 =sys-libs/readline-5*" PROVIDE="virtual/ghc" S="${WORKDIR}" src_compile() { sed -i "s|/usr|${LOC}|g" usr/bin/* usr/lib/ghc-${PV}/package.conf mkdir -p ./${LOC} mv usr/* ./${LOC} } src_install () { cp -pr * ${D} insinto /etc/env.d doins ${FILESDIR}/10ghc }