# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ # The 'Header' on the third line should just be left alone. When your ebuild # will be commited to cvs, the details on that line will be automatically # generated to contain the correct data. DESCRIPTION="Xfce4's gtk engine" HOMEPAGE="http://zemp.free.fr/xfce4.htm" SRC_URI="ftp://www.suidzer0.org/gentoo/${P}.tar.gz" LICENSE="GPL" SLOT="0" KEYWORDS="~x86" IUSE="X" DEPEND="x11-wm/xfce-mcs-manager-cvs" SUB="gtk-xfce-engine-2" S=${WORKDIR}/${SUB} src_compile() { cd ${S} ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" #emake || die make || die } src_install() { cd ${S} make DESTDIR=${D} install || die }