blob: eb3a7d33ba37a346fc8c332ea121cc075ead5745 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-scheme/greg/greg-2.0.0.ebuild,v 1.5 2010/07/15 20:10:15 maekke Exp $
EAPI="3"
inherit autotools eutils
DESCRIPTION="Testing-Framework for guile"
HOMEPAGE="http://gna.org/projects/greg/"
SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz"
SLOT="0"
KEYWORDS="amd64 x86"
LICENSE="GPL-2"
IUSE=""
RDEPEND=">=dev-scheme/guile-1.8"
DEPEND=""
src_prepare() {
epatch "${FILESDIR}"/${PV}-notest.patch
eautoreconf
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc NEWS README AUTHORS ChangeLog || die
}
|