forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trigger-0.6.1-r1.ebuild
60 lines (49 loc) · 1.13 KB
/
trigger-0.6.1-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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit eutils
MY_PN=${PN}-rally
MY_P=${MY_PN}-${PV}
DESCRIPTION="Free OpenGL rally car racing game"
HOMEPAGE="http://www.positro.net/trigger/"
SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="
dev-games/physfs
media-libs/freealut
media-libs/libsdl
media-libs/openal
media-libs/sdl-image[jpeg,png]
media-libs/sdl-mixer
virtual/glu
virtual/opengl"
DEPEND="${RDEPEND}
dev-util/ftjam"
S=${WORKDIR}/${MY_P}
pkg_setup() {
# Otherwise build fails with:
# ...skipped trigger for lack of libpengine.a...
tc-export AR
}
src_configure() {
econf --datadir=/usr/share/games/${PN}
}
src_compile() {
AR="${AR} cru" jam -dx -qa || die
}
src_install() {
dobin ${PN}
insinto /usr/share/games/${PN}
doins -r data/*
newicon data/textures/life_helmet.png ${PN}.png
make_desktop_entry ${PN} Trigger
dodoc doc/*.txt
}
pkg_postinst() {
elog "After running ${PN} for the first time, a config file is"
elog "available in ~/.trigger/trigger.config"
}