blob: e880be273604280d0d4872f5aa0f00832d32a829 (
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-2004 Gentoo Technologies, Inc.
# 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.ebuild,v 1.9 2004/06/22 21:23:18 mr_bones_ Exp $
inherit flag-o-matic
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"
LICENSE="GPL-2"
SLOT="1.3"
KEYWORDS="x86 ~ppc alpha sparc amd64"
IUSE=""
DEPEND=">=dev-util/guile-1.4
>=dev-libs/slib-2.4.2"
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
}
|