blob: 44a433455ece01094f4e93268e42d75b9dcaf0ff (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit kde4-base
DESCRIPTION="A KDE4 follow-up to Baghira KDE Theme Engine, which resembles Mac OS X"
HOMEPAGE="http://cloudcity.sourceforge.net/"
ESVN_REPO_URI="https://cloudcity.svn.sourceforge.net/svnroot/cloudcity"
LICENSE="GPL-2"
KEYWORDS=""
SLOT="0"
IUSE="debug"
src_configure() {
# these two are no-deps options
# no need to have them useflaged
mycmakeargs=(
-DENABLE_XBAR=ON
-DENABLE_ARGB=ON
)
kde4-base_src_configure
}
|