blob: b756641a32d0ffd97608f0760aaa8a620806a0ba (
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
49
50
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-qt/gtk-engines-qt-0.6-r2.ebuild,v 1.3 2006/02/06 17:04:29 herbs Exp $
inherit eutils kde-functions multilib
MY_P="gtk-qt-engine-${PV}"
DESCRIPTION="GTK+2 Qt Theme Engine"
HOMEPAGE="http://www.freedesktop.org/Software/gtk-qt"
SRC_URI="http://www.freedesktop.org/~davidsansome/${MY_P}.tar.bz2"
LICENSE="GPL-2"
IUSE="arts debug"
KEYWORDS="~x86 ~sparc ~ppc ~amd64"
DEPEND="${DEPEND}
>=x11-libs/gtk+-2.2
arts? ( kde-base/arts )"
need-kde 3
# Set slot after the need-kde. Fixes bug #78455.
SLOT="2"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${MY_P}-kcm-fixinstallationdir.patch
epatch ${FILESDIR}/gtk-2.8-fix.patch
}
src_compile() {
make -f ${S}/admin/Makefile.common
local myconf="$(use_with arts) $(use_enable debug)"
if [[ $(get_libdir) != "lib" ]] ; then
myconf="${myconf} --enable-libsuffix=$(get_libdir | sed s/lib//)"
fi
econf ${myconf} || die
emake || die
}
src_install() {
make DESTDIR="${D}" install || die "Installation failed"
dodoc AUTHORS
}
|