# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/x11-themes/mandrake-artwork/mandrake-artwork-1.0.0.ebuild,v 1.1 2004/03/20 06:52:29 brad 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 # Need to fake out Qt or we'll get sandbox problems REALHOME="$HOME" mkdir -p $T/fakehome/.kde mkdir -p $T/fakehome/.qt export HOME="$T/fakehome" addwrite "${QTDIR}/etc/settings" 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 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 }