blob: c746eef83ff1f81b05f1c895b22ee2cbed96917b (
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
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/suacomp/suacomp-0.6.3.ebuild,v 1.2 2010/09/03 14:44:38 mr_bones_ Exp $
EAPI=2
inherit toolchain-funcs
DESCRIPTION="library wrapping the interix lib-c to make it less buggy."
HOMEPAGE="http://dev.gentoo.org/~mduft/suacomp"
SRC_URI="${HOMEPAGE}/${P}.tar.gz"
LICENSE="BEER-WARE"
SLOT="0"
KEYWORDS="-* ~x86-interix"
IUSE=""
DEPEND=""
RDEPEND=""
get_opts() {
local shlibc=
local stlibc=
for dir in /usr/lib /usr/lib/x86; do
[[ -f ${dir}/libc.a ]] && stlibc=${dir}/libc.a
for name in libc.so.5.2 libc.so.3.5; do
[[ -f ${dir}/${name} ]] && { shlibc=${dir}/${name}; break; }
done
[[ -f ${shlibc} && -f ${stlibc} ]] && break
done
echo "SHARED_LIBC=${shlibc} STATIC_LIBC=${stlibc}"
}
src_compile() {
emake all CC=$(tc-getCC) CFLAGS="${CFLAGS}" $(get_opts) || die "emake failed"
}
src_install() {
emake install PREFIX="${EPREFIX}/usr" DESTDIR="${D}" $(get_opts) || die "emake install failed"
}
src_test() {
emake check $(get_opts) || die "emake check failed"
}
|