blob: cfaba61d93bd2d52b72cdcd0fce0bf0a3d93802e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/g-wrap/g-wrap-1.3.4-r1.ebuild,v 1.9 2007/01/10 19:34:21 peper Exp $
inherit eutils flag-o-matic
IUSE=""
DESCRIPTION="A tool for exporting C libraries into Scheme"
HOMEPAGE="http://www.gnucash.org"
SRC_URI="http://www.gnucash.org/pub/g-wrap/source/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ia64 ppc sparc x86"
DEPEND=">=dev-scheme/guile-1.4
>=dev-scheme/slib-2.4.2
=dev-libs/glib-1*"
src_unpack() {
unpack ${A}; cd ${S}
epatch ${FILESDIR}/${P}-direntry.patch
epatch ${FILESDIR}/${P}-m4.patch
}
src_compile() {
filter-flags "-O?"
econf \
--libexecdir=/usr/lib/misc || die
emake || die "emake failed"
}
src_install () {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README THANKS
}
|