blob: c5a626aac1594079abbd6eb83e461ec60fa2bfb3 (
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
49
50
51
52
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit multilib toolchain-funcs
MY_PN='spacenav'
DESCRIPTION="libspnav is a replacement for the magellan library with a cleaner API"
HOMEPAGE="http://spacenav.sourceforge.net/"
SRC_URI="mirror://sourceforge/project/${MY_PN}/${MY_PN}%20library%20%28SDK%29/${PN}%20${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
IUSE="static-libs X"
CDEPEND="X? ( x11-libs/libX11 )"
RDEPEND="app-misc/spacenavd[X?]
${CDEPEND}"
DEPEND="${CDEPEND}"
src_prepare() {
eapply "${FILESDIR}"/${P}-makefile.patch
eapply_user
}
src_configure() {
local args=(
--disable-opt
--disable-debug
$(use_enable X x11)
)
econf "${args[@]}"
}
src_compile() {
emake AR="$(tc-getAR)" CC="$(tc-getCC)"
}
src_install() {
local args=(
DESTDIR="${D}"
libdir="$(get_libdir)"
)
emake "${args[@]}" install
# The custom configure script does not support --disable-static
# and conditionally patching $(lib_a) out of Makefile.in does not
# seem like a very maintainable option, hence we delete the .a file
# after "make install", instead.
use static-libs || find "${D}" -type f -name \*.a -delete
}
|