forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dustrac-1.11.0-r1.ebuild
68 lines (55 loc) · 1.37 KB
/
dustrac-1.11.0-r1.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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils gnome2-utils cmake-utils
DESCRIPTION="Tile-based, cross-platform 2D racing game"
HOMEPAGE="http://dustrac.sourceforge.net/"
SRC_URI="mirror://sourceforge/dustrac/${P}.tar.gz"
LICENSE="GPL-3+ CC-BY-SA-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtopengl:5
dev-qt/qtxml:5
media-libs/libvorbis
media-libs/openal
virtual/opengl"
DEPEND="${RDEPEND}
dev-qt/linguist-tools:5
dev-qt/qttest:5
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${P}-cmake.patch
)
src_configure() {
# -DGLES=ON didn't build for me but maybe just need use flags on some QT package?
# Maybe add a local gles use flag
local mycmakeargs=(
-DReleaseBuild=ON
-DDATA_PATH="/usr/share/${PN}"
-DBIN_PATH="/usr/bin"
-DDOC_PATH=/usr/share/doc/${PF}
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
# FIXME: where should these come from?
dosym /usr/share/fonts/ubuntu-font-family/UbuntuMono-B.ttf "/usr/share/${PN}/fonts/UbuntuMono-B.ttf"
dosym /usr/share/fonts/ubuntu-font-family/UbuntuMono-R.ttf "/usr/share/${PN}/fonts/UbuntuMono-R.ttf"
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}