summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2013-06-22 22:27:10 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2013-06-22 22:27:10 +0000
commitbd5ebc5ba48baf6c7931cf85f01ce72cb26485f6 (patch)
tree545e86bc50e362a98168147fa27c4a47148f0af6 /dev-haskell/texmath
parentVersion bump. (diff)
downloadgentoo-2-bd5ebc5ba48baf6c7931cf85f01ce72cb26485f6.tar.gz
gentoo-2-bd5ebc5ba48baf6c7931cf85f01ce72cb26485f6.tar.bz2
gentoo-2-bd5ebc5ba48baf6c7931cf85f01ce72cb26485f6.zip
Version bump.
(Portage version: 2.2.0_alpha182_p1/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'dev-haskell/texmath')
-rw-r--r--dev-haskell/texmath/ChangeLog7
-rw-r--r--dev-haskell/texmath/texmath-0.6.1.5.ebuild48
2 files changed, 54 insertions, 1 deletions
diff --git a/dev-haskell/texmath/ChangeLog b/dev-haskell/texmath/ChangeLog
index f6bbb23fb317..db31b828705a 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.8 2013/04/13 05:53:55 qnikst Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/texmath/ChangeLog,v 1.9 2013/06/22 22:27:10 slyfox Exp $
+
+*texmath-0.6.1.5 (22 Jun 2013)
+
+ 22 Jun 2013; Sergei Trofimovich <slyfox@gentoo.org> +texmath-0.6.1.5.ebuild:
+ Version bump.
13 Apr 2013; <qnikst@gentoo.org> +files/01-texmath-locale.patch,
texmath-0.5.0.1.ebuild, texmath-0.6.0.3.ebuild, texmath-0.6.0.4.ebuild,
diff --git a/dev-haskell/texmath/texmath-0.6.1.5.ebuild b/dev-haskell/texmath/texmath-0.6.1.5.ebuild
new file mode 100644
index 000000000000..ba8281a13716
--- /dev/null
+++ b/dev-haskell/texmath/texmath-0.6.1.5.ebuild
@@ -0,0 +1,48 @@
+# 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.1.5.ebuild,v 1.1 2013/06/22 22:27:10 slyfox Exp $
+
+EAPI=5
+
+# ebuild generated by hackport 0.3.2.9999
+
+CABAL_FEATURES="bin lib profile haddock hoogle hscolour"
+inherit eutils 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/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"
+
+src_prepare() {
+ epatch "${FILESDIR}/01-${PN}-locale.patch"
+}
+
+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
+}