blob: 7a4d926704dcd94c82400e4dae610af51fd9080a (
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
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/mandrake-artwork/mandrake-artwork-1.0.2.ebuild,v 1.12 2005/08/26 14:01:05 agriffis Exp $
inherit eutils kde-functions
MDK_EXTRAVERSION="1mdk"
DESCRIPTION="Mandrake's Galaxy theme for GTK1, GTK2, Metacity and KDE"
HOMEPAGE="http://www.mandrakelinux.com"
SRC_URI="mirror://gentoo/galaxy-${PV}-${MDK_EXTRAVERSION}.src.rpm"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ppc sparc ~x86"
IUSE="kde"
RDEPEND=">=x11-libs/gtk+-2.0
>=media-libs/gdk-pixbuf-0.2.5
=x11-libs/gtk+-1.2*
kde? ( || ( kde-base/kwin kde-base/kdebase ) )"
DEPEND="${RDEPEND}
app-arch/rpm2targz"
S="${WORKDIR}"/galaxy-${PV}
src_unpack() {
rpm2targz ${DISTDIR}/${A}
tar xz --no-same-owner -f galaxy-${PV}-${MDK_EXTRAVERSION}.src.tar.gz
tar xj --no-same-owner -f galaxy-${PV}.tar.bz2
}
src_compile() {
if use kde; then
set-qtdir 3
set-kdedir 3
mv thememdk/mandrake_client/Makefile.in thememdk/mandrake_client/Makefile.in.orig
cat thememdk/mandrake_client/Makefile.in.orig | sed s:\$\{libdir\}\/kwin.la:${KDEDIR}/lib/kwin.la:g > thememdk/mandrake_client/Makefile.in
rm thememdk/mandrake_client/Makefile.in.orig
econf --with-qt-dir=${QTDIR} || die "econf failed"
else
sed -si s/KDE_CHECK_FINAL// configure.in
sed -si s/AC_PATH_KDE// configure.in
autoconf
sed -si s/thememdk// Makefile.am
sed -si s/thememdk// Makefile.in
automake
sed -si s/thememdk// Makefile.am
sed -si s/thememdk// Makefile.in
automake
fi
econf || die
emake || die
}
src_install () {
einstall || die
dodoc AUTHORS COPYING README ChangeLog
}
|