blob: 550427f96db0b38f135e5d4fd9f4603a6043f237 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
KMNAME="playground/base"
KMMODULE="${PN/-/_}"
KDE_SCM="svn"
OPENGL_REQUIRED="optional"
inherit kde4-base
DESCRIPTION="Nice kioslave showing informations about computer"
HOMEPAGE="http://websvn.kde.org/trunk/playground/base/kio_sysinfo/"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS=""
IUSE=""
src_configure() {
# What the heck is HD library??
mycmakeargs=(
-DSYSINFO_DISTRO:STRING=generic
-DWITH_HD=OFF
$(cmake-utils_use_with opengl OpenGL)
)
kde4-base_src_configure
}
|