blob: 86e1f1d944a93e36288480d7516428238e1e3c70 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/agda/agda-2.2.6-r1.ebuild,v 1.1 2010/11/20 13:45:12 kolmodin Exp $
EAPI="2"
CABAL_FEATURES="lib"
inherit haskell-cabal eutils elisp-common
MY_PN="Agda"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="A dependently typed programming language."
HOMEPAGE="http://appserv.cs.chalmers.se/users/ulfn/wiki/agda.php"
SRC_URI="http://code.haskell.org/${MY_PN}/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="virtual/emacs
app-emacs/haskell-mode"
DEPEND="${RDEPEND}
>=dev-lang/ghc-6.12
dev-haskell/mtl
=dev-haskell/quickcheck-2*
dev-haskell/haskell-src
dev-haskell/haskeline
>=dev-haskell/binary-0.4.4
=dev-haskell/xhtml-3000.2*
>=dev-haskell/zlib-0.4
>=dev-haskell/alex-2.0
>=dev-haskell/happy-1.15"
SITEFILE="50${PN}2-gentoo.el"
S="${WORKDIR}/${MY_P}"
src_prepare() {
epatch "${FILESDIR}"/${P}-emacs.patch
}
src_install() {
haskell-cabal_src_install
elisp-install ${PN} src/data/emacs-mode/*.el \
|| die "Failed to install emacs mode"
elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
|| die "Failed to install elisp site file"
}
pkg_postinst() {
ghc-package_pkg_postinst
elisp-site-regen
}
pkg_postrm() {
ghc-package_pkg_prerm
elisp-site-regen
}
|