blob: fe908dd11281b5010ad5dfa99be2e167de7eb3a0 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit kde4-base
DESCRIPTION="GTK+2 Qt4 Theme Engine"
MY_PN="gtk-kde4"
HOMEPAGE="http://kde-apps.org/content/show.php/gtk-kde4?content=74689"
#SRC_URI="http://kde-apps.org/CONTENT/content-files/74689-${MY_PN}v${PV}.tar.gz"
SRC_URI="http://betta.houa.org/no-site/${MY_PN}v${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""
RDEPEND=">=x11-libs/qt-gui-4.4.2:4
>=x11-libs/qt-svg-4.4.2:4
x11-libs/gtk+:2"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${PV}-Cmake.patch"
)
S=${WORKDIR}/${MY_PN}
src_prepare() {
# remove redundant makefile shipped with package
# just for avoiding confusion
rm -rf Makefile
kde4-base_src_prepare
}
pkg_postinst() {
kde4-base_pkg_postinst
elog "If you want additional themes just download:"
elog "http://betta.h.com.ua/no-site/qt4.tar.gz"
elog "and put into ~/.themes/ or just use any nice gtk theme."
}
|