diff options
Diffstat (limited to 'dev-haskell/alex/alex-2.3.1.ebuild')
-rw-r--r-- | dev-haskell/alex/alex-2.3.1.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-haskell/alex/alex-2.3.1.ebuild b/dev-haskell/alex/alex-2.3.1.ebuild new file mode 100644 index 000000000000..b63538588312 --- /dev/null +++ b/dev-haskell/alex/alex-2.3.1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/alex-2.3.1.ebuild,v 1.1 2009/02/08 21:04:47 kolmodin Exp $ + +CABAL_FEATURES="bin" +inherit autotools haskell-cabal + +DESCRIPTION="Alex is a tool for generating lexical analysers in Haskell" +HOMEPAGE="http://www.haskell.org/alex/" +SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86" +# has worked with ppc64 too, but no ghc availably at the moment +IUSE="doc" + +DEPEND=">=dev-lang/ghc-6.6.1 + >=dev-haskell/cabal-1.2 + doc? ( ~app-text/docbook-xml-dtd-4.2 + app-text/docbook-xsl-stylesheets + >=dev-libs/libxslt-1.1.2 )" +RDEPEND="" + +src_unpack() { + unpack ${A} + + if use doc; then + cd "${S}/doc/" + eautoreconf || die "eautoreconf for docs failed" + fi +} + +src_compile() { + cabal_src_compile + + if use doc; then + cd "${S}/doc/" + econf || die "econf for docs failed" + emake -j1 || die "emake for docs failed" + fi +} + +src_install() { + cabal_src_install + + if use doc; then + doman "${S}/doc/alex.1" + dohtml -r "${S}/doc/alex/" + fi + dodoc README +} |