blob: 8239dc651fbfb1ba4dece0096a5094f2d5c7d79e (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/kde-gtk-config/kde-gtk-config-1.7.ebuild,v 1.1 2012/05/11 22:03:04 johu Exp $
EAPI=4
KDE_MINIMAL="4.6"
KDE_LINGUAS_DIR=translations
KDE_LINGUAS="ca cs el es eu fr gl id it pl ru zh_CN"
MY_P=${P/kde/chakra}
inherit kde4-base
DESCRIPTION="KCM for set the look&feel of your Gtk apps using the KDE systemsettings."
HOMEPAGE="http://kde-apps.org/content/show.php?content=137496"
SRC_URI="mirror://sourceforge/chakra/${MY_P}.tar.gz"
LICENSE="GPL-3"
KEYWORDS="amd64 ~arm ppc ~ppc64 x86"
SLOT="4"
IUSE=""
COMMON_DEPEND="$(add_kdebase_dep kdelibs)"
DEPEND="${COMMON_DEPEND}
dev-util/automoc
"
RDEPEND="${COMMON_DEPEND}
!kde-misc/kcm_gtk
$(add_kdebase_dep kcmshell)
"
S=${WORKDIR}/${MY_P}
pkg_postinst() {
kde4-base_pkg_postinst
einfo
elog "If you notice missing icons in your GTK applications, you may have to install"
elog "the corresponding themes for GTK. A good guess would be x11-themes/oxygen-gtk"
elog "for example."
einfo
}
|