diff options
author | Mark Wright <gienah@gentoo.org> | 2013-12-11 06:31:24 +0000 |
---|---|---|
committer | Mark Wright <gienah@gentoo.org> | 2013-12-11 06:31:24 +0000 |
commit | fef283fe815f64a6fe52d06aad482b0ff90a87cd (patch) | |
tree | 7bf645327665451f25dadd00c3b7b66deafbc827 /dev-haskell/texmath | |
parent | Bump tagstream-conduit to 0.5.4.1 (diff) | |
download | gentoo-2-fef283fe815f64a6fe52d06aad482b0ff90a87cd.tar.gz gentoo-2-fef283fe815f64a6fe52d06aad482b0ff90a87cd.tar.bz2 gentoo-2-fef283fe815f64a6fe52d06aad482b0ff90a87cd.zip |
Bump texmath to 0.6.5.2
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 618E971F)
Diffstat (limited to 'dev-haskell/texmath')
-rw-r--r-- | dev-haskell/texmath/ChangeLog | 7 | ||||
-rw-r--r-- | dev-haskell/texmath/texmath-0.6.5.2.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/dev-haskell/texmath/ChangeLog b/dev-haskell/texmath/ChangeLog index 0c2b0c8a3a76..7093d0792258 100644 --- a/dev-haskell/texmath/ChangeLog +++ b/dev-haskell/texmath/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-haskell/texmath # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/texmath/ChangeLog,v 1.12 2013/11/24 19:33:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/texmath/ChangeLog,v 1.13 2013/12/11 06:31:24 gienah Exp $ + +*texmath-0.6.5.2 (11 Dec 2013) + + 11 Dec 2013; Mark Wright <gienah@gentoo.org> +texmath-0.6.5.2.ebuild: + Bump texmath to 0.6.5.2 24 Nov 2013; Agostino Sarubbo <ago@gentoo.org> texmath-0.6.4.ebuild: Stable for x86, wrt bug #488750 diff --git a/dev-haskell/texmath/texmath-0.6.5.2.ebuild b/dev-haskell/texmath/texmath-0.6.5.2.ebuild new file mode 100644 index 000000000000..5b6d7f6900ba --- /dev/null +++ b/dev-haskell/texmath/texmath-0.6.5.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/texmath/texmath-0.6.5.2.ebuild,v 1.1 2013/12/11 06:31:24 gienah Exp $ + +EAPI=5 + +# ebuild generated by hackport 0.3.4.9999 + +CABAL_FEATURES="bin lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Conversion of LaTeX math formulas to MathML or OMML." +HOMEPAGE="http://github.com/jgm/texmath" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="cgi test" + +RDEPEND="dev-haskell/pandoc-types:=[profile?] + >=dev-haskell/parsec-3:=[profile?] + dev-haskell/syb:=[profile?] + dev-haskell/xml:=[profile?] + >=dev-lang/ghc-6.10.4:= + cgi? ( dev-haskell/cgi:=[profile?] + dev-haskell/json:=[profile?] + dev-haskell/utf8-string:=[profile?] ) +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6.0.3 +" + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag cgi cgi) \ + $(cabal_flag test test) +} + +src_install() { + cabal_src_install + + # remove test and it's data + rm -f "${ED}/usr/bin/texmath" 2> /dev/null + rm -rf "${ED}/usr/share/${P}"/ghc-*/tests 2> /dev/null +} |