summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Kolmodin <kolmodin@gentoo.org>2009-11-09 18:59:23 +0000
committerLennart Kolmodin <kolmodin@gentoo.org>2009-11-09 18:59:23 +0000
commita321ef0222fce4fb54ede0c65734f8b1d1951dfb (patch)
tree65ba4a238761a6d9157deb6ee42e978da7f9f4d8 /dev-haskell
parentMarked ppc/ppc64 stable for bug #290922. (diff)
downloadgentoo-2-a321ef0222fce4fb54ede0c65734f8b1d1951dfb.tar.gz
gentoo-2-a321ef0222fce4fb54ede0c65734f8b1d1951dfb.tar.bz2
gentoo-2-a321ef0222fce4fb54ede0c65734f8b1d1951dfb.zip
Version bump of dev-haskell/iconv.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'dev-haskell')
-rw-r--r--dev-haskell/iconv/ChangeLog9
-rw-r--r--dev-haskell/iconv/iconv-0.4.0.2.ebuild26
2 files changed, 33 insertions, 2 deletions
diff --git a/dev-haskell/iconv/ChangeLog b/dev-haskell/iconv/ChangeLog
index b6776a2a9cda..c03a01b2481d 100644
--- a/dev-haskell/iconv/ChangeLog
+++ b/dev-haskell/iconv/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-haskell/iconv
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/iconv/ChangeLog,v 1.1 2007/12/15 18:38:13 dcoutts Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/iconv/ChangeLog,v 1.2 2009/11/09 18:59:23 kolmodin Exp $
+
+*iconv-0.4.0.2 (09 Nov 2009)
+
+ 09 Nov 2009; <kolmodin@gentoo.org> +iconv-0.4.0.2.ebuild:
+ Version bump, works with ghc 6.10.
*iconv-0.4 (15 Dec 2007)
diff --git a/dev-haskell/iconv/iconv-0.4.0.2.ebuild b/dev-haskell/iconv/iconv-0.4.0.2.ebuild
new file mode 100644
index 000000000000..6b61d2585f6d
--- /dev/null
+++ b/dev-haskell/iconv/iconv-0.4.0.2.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/iconv/iconv-0.4.0.2.ebuild,v 1.1 2009/11/09 18:59:23 kolmodin Exp $
+
+CABAL_FEATURES="lib profile haddock"
+inherit haskell-cabal
+
+DESCRIPTION="String encoding conversion"
+HOMEPAGE="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/iconv"
+SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~sparc ~x86"
+IUSE=""
+
+RDEPEND=">=dev-lang/ghc-6.6.1"
+DEPEND="${RDEPEND}
+ >=dev-haskell/cabal-1.2.1"
+
+src_unpack() {
+ unpack ${A}
+
+ sed -e 's/^library/library\n build-depends: base < 4/' \
+ -i "${S}/${PN}.cabal"
+}