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
commitf1d1fcf675b98cdac27e255257bad4dc440e2acf (patch)
treeeb76e52fd81ca2f611c7af91848ab8dd612ebe4d /dev-lang
parentunmaintained locally or upstream, and package.masked. removing (diff)
downloadhistorical-f1d1fcf675b98cdac27e255257bad4dc440e2acf.tar.gz
historical-f1d1fcf675b98cdac27e255257bad4dc440e2acf.tar.bz2
historical-f1d1fcf675b98cdac27e255257bad4dc440e2acf.zip
remove old version that was packge.masked
Diffstat (limited to 'dev-lang')
-rw-r--r--dev-lang/nhc98/Manifest4
-rw-r--r--dev-lang/nhc98/files/digest-nhc98-1.121
-rw-r--r--dev-lang/nhc98/nhc98-1.12.ebuild65
3 files changed, 1 insertions, 69 deletions
diff --git a/dev-lang/nhc98/Manifest b/dev-lang/nhc98/Manifest
index bb28fa30af5d..8256d9e26dea 100644
--- a/dev-lang/nhc98/Manifest
+++ b/dev-lang/nhc98/Manifest
@@ -1,9 +1,7 @@
-MD5 cbe140dc5ebd9ed3f41081a498f4d70d ChangeLog 1904
-MD5 8f3176e0f85cecbc47920414ceedc381 nhc98-1.12.ebuild 1601
MD5 88218df222af0c7e44e50e551d7a49a4 nhc98-1.16-r1.ebuild 1702
MD5 5dba1b9719311c1dfa6aefa44aae34c5 nhc98-1.16.ebuild 1831
+MD5 cbe140dc5ebd9ed3f41081a498f4d70d ChangeLog 1904
MD5 a769ecfcd1cdd2d40986627df7dfb249 metadata.xml 224
-MD5 cb9b8ca2325e79acfb518a8c77ed6192 files/digest-nhc98-1.12 66
MD5 410a15e8992a631b9d59a2f6cb69ead5 files/digest-nhc98-1.16 127
MD5 410a15e8992a631b9d59a2f6cb69ead5 files/digest-nhc98-1.16-r1 127
MD5 2f41dd93a084141f569f8b1dc5c87eee files/hmakerc 335
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/*
-}