diff options
author | 2006-02-10 12:45:50 +0000 | |
---|---|---|
committer | 2006-02-10 12:45:50 +0000 | |
commit | 4cca4e3c829be2ea572b4db071852bf18b19ce25 (patch) | |
tree | 0ff0e710b7bbd2ce3b4eb3e750c608e5d6bcc4a4 /dev-lang | |
parent | Remove old versions. (diff) | |
download | gentoo-2-4cca4e3c829be2ea572b4db071852bf18b19ce25.tar.gz gentoo-2-4cca4e3c829be2ea572b4db071852bf18b19ce25.tar.bz2 gentoo-2-4cca4e3c829be2ea572b4db071852bf18b19ce25.zip |
Remove the last of the versions in the ancient ghc-5.x series.
(Portage version: 2.0.54)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/ghc-bin/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/ghc-bin/files/digest-ghc-bin-5.04.3 | 2 | ||||
-rw-r--r-- | dev-lang/ghc-bin/ghc-bin-5.04.3.ebuild | 63 |
3 files changed, 4 insertions, 66 deletions
diff --git a/dev-lang/ghc-bin/ChangeLog b/dev-lang/ghc-bin/ChangeLog index d94b89333b75..8699dd2cdd50 100644 --- a/dev-lang/ghc-bin/ChangeLog +++ b/dev-lang/ghc-bin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/ghc-bin # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc-bin/ChangeLog,v 1.34 2006/02/10 11:38:43 dcoutts Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc-bin/ChangeLog,v 1.35 2006/02/10 12:45:50 dcoutts Exp $ + + 10 Feb 2006; <duncan@gentoo.org> -ghc-bin-5.04.3.ebuild: + Remove the last of the versions in the ancient ghc-5.x series. 10 Feb 2006; <duncan@gentoo.org> ghc-bin-6.4.1.ebuild: Marked ~alpha with permission of ferdy. diff --git a/dev-lang/ghc-bin/files/digest-ghc-bin-5.04.3 b/dev-lang/ghc-bin/files/digest-ghc-bin-5.04.3 deleted file mode 100644 index 4deb90cd1343..000000000000 --- a/dev-lang/ghc-bin/files/digest-ghc-bin-5.04.3 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 22eb7880666ded5b8422c527327887a5 ghc-5.04.3-powerpc-unknown-linux.tar.bz2 31613122 -MD5 0307b36a3356e51e7a795dc607ae24a3 ghc-5.04.3-i386-unknown-linux.tar.bz2 15725661 diff --git a/dev-lang/ghc-bin/ghc-bin-5.04.3.ebuild b/dev-lang/ghc-bin/ghc-bin-5.04.3.ebuild deleted file mode 100644 index 35ef098321ae..000000000000 --- a/dev-lang/ghc-bin/ghc-bin-5.04.3.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc-bin/ghc-bin-5.04.3.ebuild,v 1.10 2005/02/19 18:53:42 weeve Exp $ - -IUSE="opengl" - -S="${WORKDIR}/ghc-${PV}" -DESCRIPTION="Glasgow Haskell Compiler" -SRC_URI=" ppc? ( http://www.haskell.org/ghc/dist/${PV}/ghc-${PV}-powerpc-unknown-linux.tar.bz2 ) -x86? ( http://www.haskell.org/ghc/dist/${PV}/ghc-${PV}-i386-unknown-linux.tar.bz2 )" -HOMEPAGE="http://www.haskell.org" - -LICENSE="as-is" -KEYWORDS="x86 ppc -sparc -alpha" -SLOT="0" - -LOC="/opt/ghc" - -DEPEND="virtual/libc" -RDEPEND=">=dev-lang/perl-5.6.1 - >=sys-devel/gcc-2.95.3 - >=dev-libs/gmp-4.1 - opengl? ( virtual/opengl - virtual/glu - virtual/glut )" - -PROVIDE="virtual/ghc" - -src_compile() { - econf || die "./configure failed" -} - -src_install () { - make \ - prefix=${D}${LOC} \ - datadir=${D}${LOC}/share \ - mandir=${D}${LOC}/share/man \ - infodir=${D}${LOC}/share/info \ - install || die - - # Install documentation. - dodoc ANNOUNCE INSTALL LICENSE README VERSION - - cd ${D}${LOC}/share - mv hslibs.ps users_guide.ps html ${D}/usr/share/doc/${PF} - - #ghc seems to set locations in wrapper scripts from make install - #need to strip the ${D} part out - cd ${D}${LOC}/bin - clean_wrappers ghc-${PV} ghci-${PV} ghc-pkg-${PV} hsc2hs - - insinto /etc/env.d - doins ${FILESDIR}/10ghc -} - -clean_wrappers () { - for i in $*; do - mv ${i} ${i}-orig - sed -e "s:${D}::" ${i}-orig > ${i} - chmod a+x ${i} - rm ${i}-orig - done -} |