diff options
author | Andres Loeh <kosmikus@gentoo.org> | 2006-10-15 18:42:43 +0000 |
---|---|---|
committer | Andres Loeh <kosmikus@gentoo.org> | 2006-10-15 18:42:43 +0000 |
commit | 446de350d23725f0b0947f7d24b6ab98d82c4339 (patch) | |
tree | f28a8e4ca3aec57acb534ea1adfd0986d77082b5 /dev-haskell/lhs2tex/lhs2tex-1.11.ebuild | |
parent | Marking amd64, sparc stable; cleaning up stale ebuilds (diff) | |
download | historical-446de350d23725f0b0947f7d24b6ab98d82c4339.tar.gz historical-446de350d23725f0b0947f7d24b6ab98d82c4339.tar.bz2 historical-446de350d23725f0b0947f7d24b6ab98d82c4339.zip |
Added a small patch to make 1.11 build with ghc-6.6.
Package-Manager: portage-2.1.1
Diffstat (limited to 'dev-haskell/lhs2tex/lhs2tex-1.11.ebuild')
-rw-r--r-- | dev-haskell/lhs2tex/lhs2tex-1.11.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/dev-haskell/lhs2tex/lhs2tex-1.11.ebuild b/dev-haskell/lhs2tex/lhs2tex-1.11.ebuild index c3f88610ef9b..2fc411db722c 100644 --- a/dev-haskell/lhs2tex/lhs2tex-1.11.ebuild +++ b/dev-haskell/lhs2tex/lhs2tex-1.11.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/lhs2tex/lhs2tex-1.11.ebuild,v 1.6 2006/10/12 17:52:08 dcoutts Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/lhs2tex/lhs2tex-1.11.ebuild,v 1.7 2006/10/15 18:42:43 kosmikus Exp $ DESCRIPTION="Preprocessor for typesetting Haskell sources with LaTeX" HOMEPAGE="http://www.iai.uni-bonn.de/~loeh/lhs2tex" @@ -15,11 +15,15 @@ S="${WORKDIR}/${P/_pre/pre}" DEPEND=">=dev-tex/polytable-0.8.2 >=virtual/ghc-6.2.2 - !>=virtual/ghc-6.6 doc? ( dev-lang/hugs98 virtual/tetex )" RDEPEND=">=dev-tex/polytable-0.8.2" +src_unpack() { + unpack ${A} + sed -i "s|-package lang||" ${S}/config.mk.in || die "patch failed" +} + src_compile() { # polytable is installed separately econf --disable-polytable || die "econf failed" |