# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/hmake/hmake-3.08.ebuild,v 1.10 2004/07/02 04:17:40 eradicator Exp $ inherit base fixheadtails DESCRIPTION="a make tool for Haskell programs" HOMEPAGE="http://www.haskell.org/hmake/" SRC_URI="http://www.cs.york.ac.uk/ftpdir/pub/haskell/hmake/${P}.tar.gz" LICENSE="nhc98" KEYWORDS="~x86" SLOT="0" IUSE="nhc98 readline" # hmake can be build with either ghc or nhc98; we prefer ghc # unless a use flag tells us otherwise DEPEND="nhc98? ( dev-lang/nhc98 ) !nhc98? ( virtual/ghc ) readline? ( sys-libs/readline )" RDEPEND="readline? ( sys-libs/readline ) virtual/libc !nhc98? ( dev-libs/gmp sys-libs/readline )" # if using readline, hmake depends also on ncurses; but # readline already has this dependency src_compile() { local buildwith local arch if use nhc98; then buildwith="--buildwith=nhc98" else buildwith="--buildwith=ghc" fi # fix all head/tail declarations cd ${S} ht_fix_all # package uses non-standard configure, therefore econf does # not work ... ./configure \ --prefix=/usr \ --mandir=/usr/share/man/man1 \ ${buildwith} || die "./configure failed" if ! use readline; then arch="`script/harch`" # manually override readline configuration einfo "Disabling readline ..." echo "READLINE=\"\"" >> lib/${arch}/config fi # emake tested; does not work make || die "make failed" } src_install() { make DESTDIR=${D} install || die dohtml docs/hmake/* }