blob: 447d58955bbd3217da8ca4ecd7944dafdc091c6a (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
KMNAME="kdebase-workspace"
inherit kde4-meta
DESCRIPTION="KDE menu editor"
KEYWORDS=""
IUSE="debug +handbook"
RDEPEND="
$(add_kdebase_dep khotkeys)
"
KMEXTRACTONLY="
libs/kworkspace/
"
src_configure() {
sed -i -e \
"s:\${CMAKE_CURRENT_BINARY_DIR}/../khotkeys/app/org.kde.khotkeys.xml:${EKDEDIR}/share/dbus-1/interfaces/org.kde.khotkeys.xml:g" \
kmenuedit/CMakeLists.txt \
|| die "sed failed"
kde4-meta_src_configure
}
|