blob: b843dfac1904c660f7ca73215ca5bcb9b5c38d82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/agda-executable/agda-executable-2.3.0.1.ebuild,v 1.1 2012/03/25 14:09:18 gienah Exp $
EAPI="4"
CABAL_FEATURES="bin"
inherit haskell-cabal eutils
MY_PN="Agda-executable"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Command-line program for type-checking and compiling Agda programs"
HOMEPAGE="http://wiki.portal.chalmers.se/agda/"
SRC_URI="http://hackage.haskell.org/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
~sci-mathematics/agda-${PV}
>=dev-haskell/cabal-1.8
>=dev-lang/ghc-6.8.2"
S="${WORKDIR}/${MY_P}"
src_prepare() {
cabal-mksetup
}
|