diff options
author | Duncan Coutts <dcoutts@gentoo.org> | 2006-05-12 15:53:10 +0000 |
---|---|---|
committer | Duncan Coutts <dcoutts@gentoo.org> | 2006-05-12 15:53:10 +0000 |
commit | 4581a5e0abaddcf7746c0baa1ded6277467b5f65 (patch) | |
tree | 91f0660abb0c7807f8d105de17942253ab8ad45e /dev-haskell/hmake/hmake-3.11.ebuild | |
parent | Re-enable alut package and add hack for ia64 (diff) | |
download | gentoo-2-4581a5e0abaddcf7746c0baa1ded6277467b5f65.tar.gz gentoo-2-4581a5e0abaddcf7746c0baa1ded6277467b5f65.tar.bz2 gentoo-2-4581a5e0abaddcf7746c0baa1ded6277467b5f65.zip |
New version
(Portage version: 2.1_pre10-r5)
Diffstat (limited to 'dev-haskell/hmake/hmake-3.11.ebuild')
-rw-r--r-- | dev-haskell/hmake/hmake-3.11.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/dev-haskell/hmake/hmake-3.11.ebuild b/dev-haskell/hmake/hmake-3.11.ebuild new file mode 100644 index 000000000000..5b7b27e2809f --- /dev/null +++ b/dev-haskell/hmake/hmake-3.11.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hmake/hmake-3.11.ebuild,v 1.1 2006/05/12 15:53:10 dcoutts Exp $ + +inherit base eutils fixheadtails + +DESCRIPTION="a make tool for Haskell programs" +HOMEPAGE="http://www.haskell.org/hmake/" +SRC_URI="http://www.haskell.org/hmake/${P}.tar.gz" + +LICENSE="nhc98" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="virtual/ghc + sys-libs/readline + >=sys-apps/sandbox-1.2.12" +RDEPEND="virtual/ghc + sys-libs/readline" + +# sandbox dependency due to bug #97441, #101433 + +# if using readline, hmake depends also on ncurses; but +# readline already has this dependency + +src_unpack() { + unpack ${A} + cd ${S} + + # fix all head/tail declarations + sed -i 's/tail -1/tail -n 1/' src/hmake/MkConfig.hs + # the line above prevents current fixheadtails.eclass from doing nonsense; + # double space before -n is significant + ht_fix_all +} + +src_compile() { + # package uses non-standard configure, therefore econf does + # not work ... + ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man/man1 \ + --buildwith=ghc \ + || die "./configure failed" + + # emake tested; parallel make does not work + emake -j1 || die "make failed" +} + +src_install() { + make DESTDIR=${D} install || die "make install failed" + dohtml docs/hmake/* +} |