diff options
author | 2010-01-26 19:59:01 +0000 | |
---|---|---|
committer | 2010-01-26 19:59:01 +0000 | |
commit | b093b30fea4a218ab35e822e835858086494d3be (patch) | |
tree | bf410e2d335f19c126da25f0b73df980ebcdb30b /dev-haskell/haddock/haddock-2.6.0.ebuild | |
parent | Version bump dev-lang/ghc-6.12.1, currently hard masked. (diff) | |
download | historical-b093b30fea4a218ab35e822e835858086494d3be.tar.gz historical-b093b30fea4a218ab35e822e835858086494d3be.tar.bz2 historical-b093b30fea4a218ab35e822e835858086494d3be.zip |
Version bump dev-haskell/haddock-2.6, the version used by ghc-6.12.1.
Package-Manager: portage-2.1.6.13/cvs/Linux x86_64
Diffstat (limited to 'dev-haskell/haddock/haddock-2.6.0.ebuild')
-rw-r--r-- | dev-haskell/haddock/haddock-2.6.0.ebuild | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/dev-haskell/haddock/haddock-2.6.0.ebuild b/dev-haskell/haddock/haddock-2.6.0.ebuild new file mode 100644 index 000000000000..ce10c1eef607 --- /dev/null +++ b/dev-haskell/haddock/haddock-2.6.0.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.6.0.ebuild,v 1.1 2010/01/26 19:59:00 kolmodin Exp $ + +CABAL_FEATURES="bin lib" +# don't enable profiling as the 'ghc' package is not built with profiling +inherit haskell-cabal autotools + +DESCRIPTION="A documentation-generation tool for Haskell libraries" +HOMEPAGE="http://www.haskell.org/haddock/" +SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~sparc ~x86" +IUSE="doc" + +# we bundle the dep on ghc-paths to reduce the dependencies on this critical +# package. ghc-paths would like to be compiled with USE=doc, which pulls in +# haddock, which requires ghc-paths, which pulls in haddock... + +RDEPEND=">=dev-lang/ghc-6.12" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6 + doc? ( ~app-text/docbook-xml-dtd-4.2 + app-text/docbook-xsl-stylesheets + >=dev-libs/libxslt-1.1.2 )" + +src_unpack() { + unpack ${A} + + # remove dependency on ghc-paths, we include it right into haddock instead + sed -e "s|build-depends: ghc-paths|build-depends:|" \ + -i "${S}/${PN}.cabal" + + # copy of slightly modified version of GHC.Paths + mkdir "${S}/src/GHC" + cp "${FILESDIR}/ghc-paths-1.0.5.0-GHC-Paths.hs" "${S}/src/GHC/Paths.hs" + + # 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) + + # hardcode stuff above: + sed \ + -e "s|GHC_PATHS_LIBDIR|\"$(ghc-libdir)\"|" \ + -e "s|GHC_PATHS_DOCDIR|\"/usr/share/doc/ghc-$(ghc-version)/html\"|" \ + -e "s|GHC_PATHS_GHC_PKG|\"$(ghc-getghcpkg)\"|" \ + -e "s|GHC_PATHS_GHC|\"$(ghc-getghc)\"|" \ + -i "${S}/src/GHC/Paths.hs" + + if use doc; then + cd "${S}/doc" + eautoreconf + fi + + +} + +src_compile () { + cabal_src_compile + if use doc; then + cd "${S}/doc" + ./configure --prefix="${D}/usr/" \ + || die 'error configuring documentation.' + emake html || die 'error building documentation.' + fi +} + +src_install () { + cabal_src_install + if use doc; then + dohtml -r "${S}/doc/haddock/"* + fi + dodoc CHANGES README +} |