# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/drift/drift-2.0.4.ebuild,v 1.2 2005/01/01 18:04:00 eradicator Exp $ inherit ghc-package MY_PN="DrIFT" MY_P="${MY_PN}-${PV}" DESCRIPTION="Preprocessor for automatic derivation of Haskell class instances" HOMEPAGE="http://repetae.net/john/computer/haskell/${MY_PN}/" SRC_URI="http://repetae.net/john/computer/haskell/${MY_PN}/drop/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND=">=virtual/ghc-6" RDEPEND="" S="${WORKDIR}/${MY_P}" src_compile() { econf --with-hc="$(ghc-getghc)" || die "configure failed" # Makefile has no parallelism emake -j1 || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" }