summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Loeh <kosmikus@gentoo.org>2004-10-21 16:04:32 +0000
committerAndres Loeh <kosmikus@gentoo.org>2004-10-21 16:04:32 +0000
commitfb453e2c7107bc1e5478a43cb46da3a96579734a (patch)
tree5ee41bdb472fc61b2eb4469fedba161582b8ed62 /dev-haskell
parentPruning old versions (diff)
downloadhistorical-fb453e2c7107bc1e5478a43cb46da3a96579734a.tar.gz
historical-fb453e2c7107bc1e5478a43cb46da3a96579734a.tar.bz2
historical-fb453e2c7107bc1e5478a43cb46da3a96579734a.zip
version bump
Diffstat (limited to 'dev-haskell')
-rw-r--r--dev-haskell/hdoc/ChangeLog7
-rw-r--r--dev-haskell/hdoc/Manifest4
-rw-r--r--dev-haskell/hdoc/files/digest-hdoc-0.8.31
-rw-r--r--dev-haskell/hdoc/hdoc-0.8.3.ebuild29
4 files changed, 39 insertions, 2 deletions
diff --git a/dev-haskell/hdoc/ChangeLog b/dev-haskell/hdoc/ChangeLog
index 8e8203b73b4d..528afddc7251 100644
--- a/dev-haskell/hdoc/ChangeLog
+++ b/dev-haskell/hdoc/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-haskell/hdoc
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/ChangeLog,v 1.4 2004/07/02 04:17:27 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/ChangeLog,v 1.5 2004/10/21 16:04:32 kosmikus Exp $
+
+*hdoc-0.8.3 (21 Oct 2004)
+
+ 21 Oct 2004; Andres Loeh <kosmikus@gentoo.org> hdoc-0.8.3.ebuild:
+ Version bump. Discontinued support for building with nhc98.
01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> hdoc-0.8.2.ebuild:
virtual/glibc -> virtual/libc
diff --git a/dev-haskell/hdoc/Manifest b/dev-haskell/hdoc/Manifest
index c91489ec71f6..33a867acb189 100644
--- a/dev-haskell/hdoc/Manifest
+++ b/dev-haskell/hdoc/Manifest
@@ -1,4 +1,6 @@
-MD5 171bd6b765496988498c8c9827fae056 ChangeLog 694
MD5 ea429487000f30af785d51b08629da3f hdoc-0.8.2.ebuild 1036
+MD5 e06b0147699d478001800aea2572954a ChangeLog 850
MD5 a769ecfcd1cdd2d40986627df7dfb249 metadata.xml 224
+MD5 d7d63716c3103803e13bc87db70f193d hdoc-0.8.3.ebuild 746
MD5 8f906637fe2d150972c98a9f3f497aad files/digest-hdoc-0.8.2 62
+MD5 305c4ae8746fec4a146e34c534d38a73 files/digest-hdoc-0.8.3 62
diff --git a/dev-haskell/hdoc/files/digest-hdoc-0.8.3 b/dev-haskell/hdoc/files/digest-hdoc-0.8.3
new file mode 100644
index 000000000000..e52c3be05863
--- /dev/null
+++ b/dev-haskell/hdoc/files/digest-hdoc-0.8.3
@@ -0,0 +1 @@
+MD5 b37bd158f860c0985f772a94123f11cc hdoc-0.8.3.tar.gz 215193
diff --git a/dev-haskell/hdoc/hdoc-0.8.3.ebuild b/dev-haskell/hdoc/hdoc-0.8.3.ebuild
new file mode 100644
index 000000000000..66a36650e5af
--- /dev/null
+++ b/dev-haskell/hdoc/hdoc-0.8.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdoc/hdoc-0.8.3.ebuild,v 1.1 2004/10/21 16:04:32 kosmikus Exp $
+
+DESCRIPTION="A documentation generator for Haskell"
+
+HOMEPAGE="http://www.fmi.uni-passau.de/~groessli/hdoc/"
+
+LICENSE="GPL-2"
+
+IUSE=""
+SLOT="0"
+KEYWORDS="~x86"
+
+DEPEND="virtual/ghc"
+RDEPEND="virtual/libc"
+
+SRC_URI="http://www.fmi.uni-passau.de/~groessli/hdoc/${P}.tar.gz"
+
+src_compile() {
+ econf --with-compiler=ghc || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install () {
+ # DESTDIR does not work, but only bindir is used ...
+ make bindir=${D}/usr/bin install || die "installation failed"
+ dodoc docs/hdoc.pdf
+}