diff options
Diffstat (limited to 'dev-haskell/hsshellscript/hsshellscript-2.2.0.ebuild')
-rw-r--r-- | dev-haskell/hsshellscript/hsshellscript-2.2.0.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-haskell/hsshellscript/hsshellscript-2.2.0.ebuild b/dev-haskell/hsshellscript/hsshellscript-2.2.0.ebuild new file mode 100644 index 000000000000..eedba51f5498 --- /dev/null +++ b/dev-haskell/hsshellscript/hsshellscript-2.2.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hsshellscript/hsshellscript-2.2.0.ebuild,v 1.1 2005/03/08 21:04:05 araujo Exp $ + +inherit base eutils ghc-package + +DESCRIPTION="A Haskell library for UNIX shell scripting tasks" +HOMEPAGE="http://www.volker-wysk.de/hsshellscript/" +SRC_URI="http://www.volker-wysk.de/hsshellscript/dist/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=virtual/ghc-6.2" +RDEPEND="" + + +src_unpack() { + base_src_unpack + cd ${S} + sed -i -e "/ghc-pkg/d" Makefile +} + +src_compile() { + emake || die "emake failed" +} + +src_install() { + + sed -i "s:\${DEST_LIB}:$(ghc-libdir):" \ + ${S}/lib/hsshellscript.pkg + sed -i "s:\${DEST_IMPORTS}:$(ghc-libdir)/imports:" \ + ${S}/lib/hsshellscript.pkg + ghc-setup-pkg ${S}/lib/hsshellscript.pkg + make install \ + DESTDIR="${D}" \ + DEST_LIB="$(ghc-libdir)" \ + DEST_IMPORTS="$(ghc-libdir)/imports" \ + DEST_DOC="/usr/share/doc/${PF}" \ + || die "make failed" + ghc-install-pkg + ghc-makeghcilib ${D}/$(ghc-libdir)/libhsshellscript.a +} |