forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crrcsim-0.9.13.ebuild
62 lines (50 loc) · 1.2 KB
/
crrcsim-0.9.13.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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
WANT_AUTOMAKE="1.10"
inherit autotools eutils gnome2-utils
DESCRIPTION="model-airplane flight simulation program"
HOMEPAGE="https://sourceforge.net/projects/crrcsim/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="portaudio"
RDEPEND="media-libs/libsdl[X,sound,joystick,opengl,video]
media-libs/plib
sci-mathematics/cgal
portaudio? ( media-libs/portaudio )"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-buildsystem.patch
"${FILESDIR}"/${P}-gcc6.patch
)
src_prepare() {
default
if has_version "sci-mathematics/cgal[gmp(+)]" ; then
eapply "${FILESDIR}"/${PN}-cgal_gmp.patch
fi
eautoreconf
}
src_configure() {
econf \
--datadir="/usr/share" \
--datarootdir="${EPREFIX%/}/usr/share" \
--docdir="${EPREFIX%/}/usr/share/doc/${PF}" \
$(use_with portaudio)
}
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS HISTORY NEWS README
doicon -s 32 packages/icons/${PN}.png
make_desktop_entry ${PN}
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}