blob: a4b528ebbd44ba33280681334c17f58459ae169a (
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
60
61
62
|
# Copyright 1999-2004 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.0.ebuild,v 1.4 2004/06/24 23:35:11 agriffis Exp $
inherit eutils kde-functions kde
MDK_EXTRAVERSION="3mdk"
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="~x86 ppc ~alpha"
IUSE="kde"
# Needed to build...
DEPEND="app-arch/rpm2targz
>=x11-libs/gtk+-2.0
>=media-libs/gdk-pixbuf-0.2.5
=x11-libs/gtk+-1.2*
kde? ( >=kde-base/kdebase-3.1* )"
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() {
cd ${WORKDIR}/galaxy-${PV}
#make distclean
epatch ${FILESDIR}/galaxy-gtk24.patch
if use kde; then
KDE_PLACE_TO_INSTALL=$(echo $KDEDIR | cut -d/ -f4)
mv thememdk/mandrake_client/Makefile.in thememdk/mandrake_client/Makefile.in.orig
cat thememdk/mandrake_client/Makefile.in.orig | sed s:\$\{libdir\}\/kwin.la:/usr/kde/$KDE_PLACE_TO_INSTALL/lib/kwin.la:g > thememdk/mandrake_client/Makefile.in
rm thememdk/mandrake_client/Makefile.in.orig
econf --with-qt-dir=/usr/qt/3 || 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 () {
cd ${WORKDIR}/galaxy-${PV}
einstall || die
dodoc AUTHORS COPYING README ChangeLog
}
|