summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2011-08-02 08:34:18 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2011-08-02 08:34:18 +0000
commit4cc5fc671d6b1320b2e3489e1e3ff44294eee663 (patch)
tree019ca0f3db0c7047e3417e10be2bc66b16006927 /dev-haskell
parentVersion bump. (diff)
downloadgentoo-2-4cc5fc671d6b1320b2e3489e1e3ff44294eee663.tar.gz
gentoo-2-4cc5fc671d6b1320b2e3489e1e3ff44294eee663.tar.bz2
gentoo-2-4cc5fc671d6b1320b2e3489e1e3ff44294eee663.zip
Removed old.
(Portage version: 2.1.10.7/cvs/Linux x86_64)
Diffstat (limited to 'dev-haskell')
-rw-r--r--dev-haskell/ghc-paths/ChangeLog6
-rw-r--r--dev-haskell/ghc-paths/ghc-paths-0.1.0.6.ebuild47
2 files changed, 5 insertions, 48 deletions
diff --git a/dev-haskell/ghc-paths/ChangeLog b/dev-haskell/ghc-paths/ChangeLog
index 41366ad8c2ca..2ff0b5bf4ca7 100644
--- a/dev-haskell/ghc-paths/ChangeLog
+++ b/dev-haskell/ghc-paths/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-haskell/ghc-paths
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/ghc-paths/ChangeLog,v 1.4 2011/08/02 08:33:01 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/ghc-paths/ChangeLog,v 1.5 2011/08/02 08:34:18 slyfox Exp $
+
+ 02 Aug 2011; Sergei Trofimovich <slyfox@gentoo.org>
+ -ghc-paths-0.1.0.6.ebuild:
+ Removed old.
*ghc-paths-0.1.0.8 (02 Aug 2011)
diff --git a/dev-haskell/ghc-paths/ghc-paths-0.1.0.6.ebuild b/dev-haskell/ghc-paths/ghc-paths-0.1.0.6.ebuild
deleted file mode 100644
index 253c18a7ccae..000000000000
--- a/dev-haskell/ghc-paths/ghc-paths-0.1.0.6.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/ghc-paths/ghc-paths-0.1.0.6.ebuild,v 1.2 2010/07/17 12:41:26 slyfox Exp $
-
-EAPI=2
-
-# haddock feature is explicitely disabled, as this library can be used as haddock depend
-CABAL_FEATURES="lib profile"
-inherit haskell-cabal
-
-DESCRIPTION="Knowledge of GHC's installation directories"
-HOMEPAGE="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/ghc-paths"
-SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-lang/ghc-6.8"
-DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.6"
-
-src_prepare() {
- # ghc-patch it has awfully unportable (across cabal versions) ghc detection code
- # but in gentoo we install it to fixed patch, so remove Setup.hs detection code
- cabal-mksetup
-
- # and use gentoo's hardcoded one:
- # a few things we need to replace, and example values
- # GHC_PATHS_LIBDIR /usr/lib64/ghc-6.12.0.20091010
- # GHC_PATHS_DOCDIR /usr/share/doc/ghc-6.12.0.20091010/html
- # GHC_PATHS_GHC_PKG /usr/bin/ghc-pkg
- # GHC_PATHS_GHC /usr/bin/ghc (be careful: GHC_PATHS_GHC is a substring of GHC_PATHS_GHC_PKG)
-
- cat >"${S}/GHC/Paths.hs" <<EOF
-module GHC.Paths ( ghc, ghc_pkg, libdir, docdir ) where
-
-libdir, docdir, ghc, ghc_pkg :: FilePath
-
-libdir = "$(ghc-libdir)"
-docdir = "/usr/share/doc/ghc-$(ghc-version)/html"
-
-ghc = "$(ghc-getghc)"
-ghc_pkg = "$(ghc-getghcpkg)"
-EOF
-}