blob: 2cc9a3fe7bae120b33d96c54633582aaf7c4584b (
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
51
52
53
54
55
56
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
KDE_REQUIRED="optional"
KDE_SCM="svn"
inherit kde4-base qmake-utils
if [[ $PV != *9999 ]]; then
REV="1712"
S="${WORKDIR}/cloudcity-code-${REV}"
SRC_URI="https://sourceforge.net/code-snapshots/svn/c/cl/cloudcity/code/cloudcity-code-${REV}.zip"
KEYWORDS="~amd64 ~x86"
else
ESVN_REPO_URI="https://svn.code.sf.net/p/cloudcity/code/"
KEYWORDS=""
fi
DESCRIPTION="Very configurable Qt4 style derived from the Oxygen project"
HOMEPAGE="http://cloudcity.sourceforge.net/"
LICENSE="GPL-2"
SLOT="4"
IUSE="debug"
RDEPEND="
dev-qt/qt3support:4
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
x11-libs/libX11
x11-libs/libXrender
"
DEPEND="${RDEPEND}
app-arch/unzip
"
src_prepare() {
# bug #542976
sed -e "s/kworkspace//" -i XBar/CMakeLists.txt || die
kde4-base_src_prepare
}
src_configure() {
eqmake4
}
src_compile() {
default
}
src_install() {
emake INSTALL_ROOT="${D}" install
}
|