blob: caab5c2f9bb4228c5a7e5b4b4edb87d0d12b7a2f (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit autotools eutils git
DESCRIPTION="Guile-reader is a simple framework for building readers for GNU Guile."
HOMEPAGE="http://www.nongnu.org/guile-reader/"
#SRC_URI="ftp://foo.bar.com/${P}.tar.gz"
EGIT_REPO_URI="git://git.sv.gnu.org/guile-reader.git"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="\
>=dev-scheme/guile-1.8"
RDEPEND="${DEPEND}"
#S="${WORKDIR}/${P}"
src_unpack() {
git_src_unpack
eautoreconf -i
}
src_compile() {
econf --with-guilemoduledir=/usr/share/guile/site || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|