blob: f5a75b5b7217cb2d0edafb460c3da25d136f81d2 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/qtcurve-qt4/qtcurve-qt4-1.6.4-r1.ebuild,v 1.10 2011/06/07 02:55:37 abcd Exp $
EAPI=3
KDE_REQUIRED="optional"
inherit confutils cmake-utils kde4-base
MY_P="${P/qtcurve-qt4/QtCurve-KDE4}"
DESCRIPTION="A set of widget styles for Qt4 based apps, also available for GTK2"
HOMEPAGE="http://www.kde-look.org/content/show.php?content=40492"
SRC_URI="http://craigd.wikispaces.com/file/view/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ppc ~ppc64 sparc x86"
IUSE="kde windeco"
DEPEND="x11-libs/qt-gui:4[dbus]
x11-libs/qt-svg:4
kde? ( $(add_kdebase_dep systemsettings)
windeco? ( $(add_kdebase_dep kwin) ) )"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
DOCS="ChangeLog README TODO"
PATCHES=( "${FILESDIR}/${PN}_kwin_automagic_fix.patch" )
pkg_setup() {
if ! use kde && use windeco; then
ewarn
ewarn "Auto-disabling the windeco USE flag since it requires the kde USE"
ewarn "flag. To fix this, please enable the kde USE flag."
ewarn
fi
use kde && kde4-base_pkg_setup
}
src_configure() {
if use kde; then
mycmakeargs=( $(cmake-utils_use windeco QTC_KWIN) )
kde4-base_src_configure
else
mycmakeargs=( -DQTC_QT_ONLY=true )
cmake-utils_src_configure
fi
}
|