blob: 89692388f89805b3ce119c98f432489d2a2f6c2a (
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
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-20010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit eutils flag-o-matic games
MY_P="${PN}_v${PV}_src"
DESCRIPTION="Library written in C that communicates with several Nintendo Wii remotes."
HOMEPAGE="http://wiiuse.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~x86"
IUSE="debug examples sdl"
RDEPEND="net-wireless/bluez
virtual/glut
examples? (
sdl? ( media-libs/libsdl ) )"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${MY_P/_src/}
src_prepare() {
epatch "${FILESDIR}/${P}-makefile.patch"
# -fomit-frame-pointer shouldn't be used with USE="debug"
use debug && filter-flags "-fomit-frame-pointer"
sed -i \
-e "s|-Wall -pipe -fPIC -funroll-loops|${CFLAGS} -fPIC|" \
-e "s|/usr/lib|`games_get_libdir`|" \
src/Makefile || die "sed src/Makefile failed"
sed -i \
-e "s|CFLAGS = -Wall -pipe -fPIC -funroll-loops|CFLAGS = ${CFLAGS} -fPIC|" \
-e "s|/usr/bin|${GAMES_BINDIR}|" \
example/Makefile example-sdl/Makefile || die "sed failed"
}
src_compile() {
local opts=""
# set default build target
local bld="wiiuse"
use examples && bld="${bld} ex"
use sdl && bld="${bld} sdl-ex"
use debug && opts="debug=1"
opts="${opts} ${bld}"
emake ${opts} || die "emake failed"
}
src_install() {
local instopts
use debug && instopts="debug=1"
emake DESTDIR="${D}" ${instopts} install || die "einstall failed"
}
|