diff options
author | Andres Loeh <kosmikus@gentoo.org> | 2005-08-05 13:54:23 +0000 |
---|---|---|
committer | Andres Loeh <kosmikus@gentoo.org> | 2005-08-05 13:54:23 +0000 |
commit | d5b188ae50e5a90e77e4e6df3360041929e5a6d2 (patch) | |
tree | 23010daa7813e50bf40a07368c7ac4fb5d51581f /dev-haskell | |
parent | Added a workaround to prevent sandbox violations (see bug #97441). (diff) | |
download | gentoo-2-d5b188ae50e5a90e77e4e6df3360041929e5a6d2.tar.gz gentoo-2-d5b188ae50e5a90e77e4e6df3360041929e5a6d2.tar.bz2 gentoo-2-d5b188ae50e5a90e77e4e6df3360041929e5a6d2.zip |
Removed old ebuilds.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-haskell')
-rw-r--r-- | dev-haskell/hmake/ChangeLog | 6 | ||||
-rw-r--r-- | dev-haskell/hmake/files/digest-hmake-3.08 | 1 | ||||
-rw-r--r-- | dev-haskell/hmake/files/digest-hmake-3.09 | 1 | ||||
-rw-r--r-- | dev-haskell/hmake/hmake-3.08.ebuild | 55 | ||||
-rw-r--r-- | dev-haskell/hmake/hmake-3.09.ebuild | 55 |
5 files changed, 5 insertions, 113 deletions
diff --git a/dev-haskell/hmake/ChangeLog b/dev-haskell/hmake/ChangeLog index a10ea522aa26..582418c1f0f1 100644 --- a/dev-haskell/hmake/ChangeLog +++ b/dev-haskell/hmake/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-haskell/hmake # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hmake/ChangeLog,v 1.15 2005/08/05 13:47:39 kosmikus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hmake/ChangeLog,v 1.16 2005/08/05 13:54:23 kosmikus Exp $ + + 05 Aug 2005; Andres Loeh <kosmikus@gentoo.org> -hmake-3.08.ebuild, + -hmake-3.09.ebuild: + Removed old ebuilds. 05 Aug 2005; Andres Loeh <kosmikus@gentoo.org> hmake-3.10.ebuild: Added a workaround to prevent sandbox violations (see bug #97441). diff --git a/dev-haskell/hmake/files/digest-hmake-3.08 b/dev-haskell/hmake/files/digest-hmake-3.08 deleted file mode 100644 index d4ad65e86a7c..000000000000 --- a/dev-haskell/hmake/files/digest-hmake-3.08 +++ /dev/null @@ -1 +0,0 @@ -MD5 c01c9137185a89e29bec389718696a66 hmake-3.08.tar.gz 74439 diff --git a/dev-haskell/hmake/files/digest-hmake-3.09 b/dev-haskell/hmake/files/digest-hmake-3.09 deleted file mode 100644 index f9644db20d45..000000000000 --- a/dev-haskell/hmake/files/digest-hmake-3.09 +++ /dev/null @@ -1 +0,0 @@ -MD5 72ac1fbca710dd8be5926600b119b4f4 hmake-3.09.tar.gz 100103 diff --git a/dev-haskell/hmake/hmake-3.08.ebuild b/dev-haskell/hmake/hmake-3.08.ebuild deleted file mode 100644 index eb11700ac801..000000000000 --- a/dev-haskell/hmake/hmake-3.08.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2005 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.13 2005/03/23 19:52:25 kosmikus 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="" - -DEPEND="virtual/ghc - !>=virtual/ghc-6.4 - sys-libs/readline" -RDEPEND="sys-libs/readline - virtual/libc - dev-libs/gmp" - -# if using readline, hmake depends also on ncurses; but -# readline already has this dependency - -src_compile() { - local buildwith - local arch - - buildwith="--buildwith=ghc" - - # 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 - - # fix string gaps - sed -i -e 's/\\ $/" ++/' -e 's/^\\/ "/' src/interpreter/HInteractive.hs - - # package uses non-standard configure, therefore econf does - # not work ... - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man/man1 \ - ${buildwith} || die "./configure failed" - - # emake tested; does not work - emake -j1 || die "make failed" -} - -src_install() { - make DESTDIR=${D} install || die "make install failed" - dohtml docs/hmake/* -} diff --git a/dev-haskell/hmake/hmake-3.09.ebuild b/dev-haskell/hmake/hmake-3.09.ebuild deleted file mode 100644 index 8984fa18d8c0..000000000000 --- a/dev-haskell/hmake/hmake-3.09.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hmake/hmake-3.09.ebuild,v 1.2 2005/03/23 19:52:25 kosmikus Exp $ - -inherit base 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" -KEYWORDS="~x86" -SLOT="0" -IUSE="" - -DEPEND="virtual/ghc - !>=virtual/ghc-6.4 - sys-libs/readline" -RDEPEND="sys-libs/readline - virtual/libc - dev-libs/gmp" - -# if using readline, hmake depends also on ncurses; but -# readline already has this dependency - -src_compile() { - local buildwith - local arch - - buildwith="--buildwith=ghc" - - # 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 - - # fix string gaps - sed -i -e 's/\\ $/" ++/' -e 's/^\\/ "/' src/interpreter/HInteractive.hs - - # package uses non-standard configure, therefore econf does - # not work ... - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man/man1 \ - ${buildwith} || die "./configure failed" - - # emake tested; does not work - emake -j1 || die "make failed" -} - -src_install() { - make DESTDIR=${D} install || die "make install failed" - dohtml docs/hmake/* -} |