summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaleb Tennis <caleb@gentoo.org>2004-09-03 19:24:41 +0000
committerCaleb Tennis <caleb@gentoo.org>2004-09-03 19:24:41 +0000
commit203ef73ec0df4dd67c218c1cc61026628ba83872 (patch)
treec3a02b93445ac3e2a3c70e985b48407e81784264 /dev-lang/nhc98
parentunmaintained locally or upstream, and package.masked. removing (diff)
downloadgentoo-2-203ef73ec0df4dd67c218c1cc61026628ba83872.tar.gz
gentoo-2-203ef73ec0df4dd67c218c1cc61026628ba83872.tar.bz2
gentoo-2-203ef73ec0df4dd67c218c1cc61026628ba83872.zip
remove old version that was packge.masked
Diffstat (limited to 'dev-lang/nhc98')
-rw-r--r--dev-lang/nhc98/files/digest-nhc98-1.121
-rw-r--r--dev-lang/nhc98/nhc98-1.12.ebuild65
2 files changed, 0 insertions, 66 deletions
diff --git a/dev-lang/nhc98/files/digest-nhc98-1.12 b/dev-lang/nhc98/files/digest-nhc98-1.12
deleted file mode 100644
index ae32e8a0a6d7..000000000000
--- a/dev-lang/nhc98/files/digest-nhc98-1.12
+++ /dev/null
@@ -1 +0,0 @@
-MD5 cd10466ba0f06a19c55a67d3b9afd95c nhc98src-1.12.tar.gz 8218509
diff --git a/dev-lang/nhc98/nhc98-1.12.ebuild b/dev-lang/nhc98/nhc98-1.12.ebuild
deleted file mode 100644
index 308b7b5bbaba..000000000000
--- a/dev-lang/nhc98/nhc98-1.12.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/nhc98/nhc98-1.12.ebuild,v 1.12 2004/07/12 01:19:38 mr_bones_ Exp $
-
-inherit eutils
-
-DESCRIPTION="Haskell 98 compiler"
-HOMEPAGE="http://www.cs.york.ac.uk/fp/nhc98/"
-SRC_URI="ftp://ftp.cs.york.ac.uk/pub/haskell/nhc98/nhc98src-${PV}.tar.gz"
-
-LICENSE="nhc98"
-SLOT="0"
-KEYWORDS="x86 sparc"
-IUSE="readline"
-
-DEPEND="readline? ( >=sys-libs/readline-4.1 )"
-
-src_unpack() {
- unpack ${A}
- # patch to fix the getenv bug when tracing
- cd ${P}
- epatch ${FILESDIR}/nhc98-1.12-getenv.patch
-}
-
-src_compile() {
- ./configure --buildwith=gcc \
- --prefix=/usr --installdir=/usr \
- -man -docs \
- --buildopts="${CFLAGS} --host=${CHOST}" || die "./configure failed"
- # the build does not seem to work all that
- # well with parallel make
- make || die
-}
-
-src_install() {
- # The install location is taken care of by the
- # configure script.
- make DESTDIR=${D} install || die
-
- #nhc has really weir configure system:
- #it seems to setup hmakerc to point to the build position ignoring --prefix
- #just need to copy a proper hmakerc over here
- cd ${S}
- MACHINE=`script/harch`
- cp ${FILESDIR}/hmakerc ${D}/usr/lib/hmake/${MACHINE}/
-
- #install docs and man pages manually
- dodoc README INSTALL COPYRIGHT
- doman man/*
-
- cd docs
- dohtml *
- docinto html/bugs
- dodoc bugs/*
- docinto html/examples
- dodoc examples/*
- docinto html/hat
- dohtml hat/*
- docinto html/hmake
- dodoc hmake
- docinto html/implementation-notes
- dohtml implementation-notes/*
- docinto html/libs
- dohtml libs/*
-}