1 |
# Copyright 1999-2010 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve-qt4/qtcurve-qt4-1.6.4-r1.ebuild,v 1.4 2010/11/20 12:17:48 tomka Exp $ |
4 |
|
5 |
EAPI="2" |
6 |
KDE_REQUIRED="optional" |
7 |
inherit confutils cmake-utils kde4-base |
8 |
|
9 |
MY_P="${P/qtcurve-qt4/QtCurve-KDE4}" |
10 |
DESCRIPTION="A set of widget styles for Qt4 based apps, also available for GTK2" |
11 |
HOMEPAGE="http://www.kde-look.org/content/show.php?content=40492" |
12 |
SRC_URI="http://craigd.wikispaces.com/file/view/${MY_P}.tar.bz2" |
13 |
|
14 |
LICENSE="GPL-2" |
15 |
SLOT="0" |
16 |
KEYWORDS="~alpha amd64 hppa ~ppc ~ppc64 ~sparc x86" |
17 |
IUSE="kde windeco" |
18 |
|
19 |
DEPEND="x11-libs/qt-gui:4[dbus] |
20 |
x11-libs/qt-svg:4 |
21 |
kde? ( >=kde-base/systemsettings-${KDE_MINIMAL} |
22 |
windeco? ( >=kde-base/kwin-${KDE_MINIMAL} ) )" |
23 |
RDEPEND="${DEPEND}" |
24 |
|
25 |
S=${WORKDIR}/${MY_P} |
26 |
DOCS="ChangeLog README TODO" |
27 |
|
28 |
PATCHES=( "${FILESDIR}/${PN}_kwin_automagic_fix.patch" ) |
29 |
|
30 |
pkg_setup() { |
31 |
if ! use kde && use windeco; then |
32 |
ewarn |
33 |
ewarn "Auto-disabling the windeco USE flag since it requires the kde USE" |
34 |
ewarn "flag. To fix this, please enable the kde USE flag." |
35 |
ewarn |
36 |
fi |
37 |
use kde && kde4-base_pkg_setup |
38 |
} |
39 |
|
40 |
src_configure() { |
41 |
if use kde; then |
42 |
mycmakeargs="$(use windeco && echo "-DQTC_KWIN=true")" |
43 |
kde4-base_src_configure |
44 |
else |
45 |
mycmakeargs="-DQTC_QT_ONLY=true" |
46 |
cmake-utils_src_configure |
47 |
fi |
48 |
} |