blob: 088ea802eef5330902deb32ca480ac7e05785603 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdeplasma-addons/kdeplasma-addons-4.2.0.ebuild,v 1.2 2009/02/01 07:02:39 jmbsvicetto Exp $
EAPI="2"
KMNAME="kdeplasma-addons"
OPENGL_REQUIRED="optional"
inherit kde4-base
DESCRIPTION="Extra Plasma applets and engines."
HOMEPAGE="http://www.kde.org/"
LICENSE="GPL-2 LGPL-2"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="debug xinerama"
DEPEND="
!kdeprefix? ( !kde-misc/lancelot-menu[kdeprefix=] )
>=kde-base/krunner-${PV}:${SLOT}
>=kde-base/plasma-workspace-${PV}:${SLOT}
opengl? ( >=kde-base/kdelibs-${PV}:${SLOT}[opengl] )
xinerama? ( x11-proto/xineramaproto )
"
RDEPEND="${DEPEND}
xinerama? ( x11-libs/libXinerama )
"
src_prepare() {
sed -i -e 's/${KDE4WORKSPACE_PLASMACLOCK_LIBRARY}/plasmaclock/g' \
-e 's/${KDE4WORKSPACE_WEATHERION_LIBRARY}/weather_ion/g' \
-e 's/${KDE4WORKSPACE_TASKMANAGER_LIBRARY}/taskmanager/g' \
applets/{binary-clock,fuzzy-clock,weather_station,lancelot/app/src}/CMakeLists.txt \
|| die "Failed to patch CMake files"
sed -i -e 's/(KDE4_PLASMA_OPENGL_FOUND)/(KDE4_PLASMA_OPENGL_FOUND AND OPENGL_FOUND)/g' \
applets/CMakeLists.txt \
|| die "Failed to make OpenGL applets optional"
kde4-base_src_prepare
}
src_configure() {
mycmakeargs="${mycmakeargs}
-DDBUS_INTERFACES_INSTALL_DIR=${KDEDIR}/share/dbus-1/interfaces/
$(cmake-utils_use_with opengl OpenGL)
$(cmake-utils_use_with xinerama X11_Xinerama)"
kde4-base_src_configure
}
|