forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
irrlicht-1.8.4.ebuild
73 lines (58 loc) · 1.65 KB
/
irrlicht-1.8.4.ebuild
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
63
64
65
66
67
68
69
70
71
72
73
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils toolchain-funcs
DESCRIPTION="open source high performance realtime 3D engine written in C++"
HOMEPAGE="http://irrlicht.sourceforge.net/"
SRC_URI="mirror://sourceforge/irrlicht/${P}.zip"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug doc static-libs"
RDEPEND="virtual/jpeg:0
media-libs/libpng:0=
app-arch/bzip2
sys-libs/zlib
virtual/opengl
x11-libs/libX11
x11-libs/libXxf86vm"
DEPEND="${RDEPEND}
app-arch/unzip
x11-proto/xproto
x11-proto/xf86vidmodeproto"
S=${WORKDIR}/${P}/source/${PN^}
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch
"${FILESDIR}"/${P}-config.patch
"${FILESDIR}"/${P}-demoMake.patch
"${FILESDIR}"/${P}-mesa-10.x.patch
"${FILESDIR}"/${P}-jpeg-9a.patch )
DOCS=( changes.txt readme.txt )
src_prepare() {
cd "${WORKDIR}"/${P} || die
edos2unix include/IrrCompileConfig.h
sed -i \
-e 's:\.\./\.\./media:../media:g' \
$(grep -rl '\.\./\.\./media' examples) \
|| die 'sed failed'
default
}
src_compile() {
tc-export CXX CC AR
emake NDEBUG=$(usex debug "" "1") sharedlib $(usex static-libs "staticlib" "")
}
src_install() {
cd "${WORKDIR}"/${P} || die
use static-libs && dolib.a lib/Linux/libIrrlicht.a
dolib.so lib/Linux/libIrrlicht.so*
# create library symlinks
dosym libIrrlicht.so.${PV} /usr/$(get_libdir)/libIrrlicht.so.1.8
dosym libIrrlicht.so.${PV} /usr/$(get_libdir)/libIrrlicht.so
insinto /usr/include/${PN}
doins include/*
einstalldocs
# don't do these with einstalldocs because they shouldn't be compressed
if use doc ; then
insinto /usr/share/doc/${PF}
doins -r examples media
fi
}