blob: e20f77d0d1fafd39804688a4d8486469a473ff85 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
inherit autotools eutils
DESCRIPTION="Foreign function interface for C and Objective-C libraries"
HOMEPAGE="http://www.koguro.net/prog/c-wrapper/"
SRC_URI="http://www.koguro.net/prog/${PN}/${P}.tgz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="x86"
IUSE="examples"
RDEPEND="dev-scheme/gauche
virtual/libffi"
DEPEND="${RDEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${PN}-system-libffi.diff
eautoreconf
}
src_test() {
emake -j1 -s check
}
src_install() {
default
dohtml doc/*
if use examples; then
docompress -x /usr/share/doc/${PF}/examples
dodoc -r examples
fi
}
|