blob: 4cdf9eea2b885c285265d7944eeada5dcb2895d5 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
OPENGL_REQUIRED="always"
inherit kde4-base versionator
DESCRIPTION="Gluon is a Free and Open Source framework for creating and distributing games."
HOMEPAGE="http://gluon.tuxfamily.org/"
LICENSE="LGPL-2.1"
KEYWORDS=""
SLOT="4"
IUSE="debug examples"
DEPEND="
media-libs/alure
media-libs/libsndfile
media-libs/openal
virtual/glu
virtual/opengl
x11-libs/qt-declarative:4
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use examples INSTALL_EXAMPLES)
)
kde4-base_src_configure
}
|