diff options
author | Hanno Boeck <hanno@gentoo.org> | 2007-04-24 01:51:02 +0000 |
---|---|---|
committer | Hanno Boeck <hanno@gentoo.org> | 2007-04-24 01:51:02 +0000 |
commit | e0002df45e4fc2207a2d6e08ae6d29ada521cede (patch) | |
tree | 72609c47b20fadc16886412b26d23dd863f93a1c /x11-wm/compiz/compiz-0.5.0.ebuild | |
parent | Patch to fix macro errors on ppc (fixes bug 172583 and 173675). (diff) | |
download | historical-e0002df45e4fc2207a2d6e08ae6d29ada521cede.tar.gz historical-e0002df45e4fc2207a2d6e08ae6d29ada521cede.tar.bz2 historical-e0002df45e4fc2207a2d6e08ae6d29ada521cede.zip |
compiz version bump
Package-Manager: portage-2.1.2.4
Diffstat (limited to 'x11-wm/compiz/compiz-0.5.0.ebuild')
-rw-r--r-- | x11-wm/compiz/compiz-0.5.0.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/x11-wm/compiz/compiz-0.5.0.ebuild b/x11-wm/compiz/compiz-0.5.0.ebuild new file mode 100644 index 000000000000..eca8d7550045 --- /dev/null +++ b/x11-wm/compiz/compiz-0.5.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/compiz/compiz-0.5.0.ebuild,v 1.1 2007/04/24 01:51:02 hanno Exp $ + +DESCRIPTION="3D composite- and windowmanager" +HOMEPAGE="http://www.compiz.org/" +SRC_URI="http://xorg.freedesktop.org/archive/individual/app/${P}.tar.bz2" +LICENSE="GPL-2 LGPL-2.1 MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="dbus gnome kde svg" + +DEPEND=">=media-libs/mesa-6.5.1-r1 + >=media-libs/glitz-0.5.6 + >=x11-base/xorg-server-1.1.1-r1 + x11-libs/libXdamage + x11-libs/libXrandr + x11-libs/libXcomposite + x11-libs/libXinerama + media-libs/libpng + >=x11-libs/gtk+-2.0 + x11-libs/startup-notification + gnome-base/gconf + gnome? ( >=x11-libs/libwnck-2.16.1 + >=gnome-base/control-center-2.16.1 ) + svg? ( gnome-base/librsvg ) + dbus? ( >=sys-apps/dbus-1.0 ) + kde? ( + || ( kde-base/kwin kde-base/kdebase ) + dev-libs/dbus-qt3-old )" + +RDEPEND="${DEPEND} + x11-apps/mesa-progs" + +src_compile() { + econf --with-default-plugins \ + --enable-gtk \ + --enable-gconf \ + `use_enable gnome` \ + `use_enable gnome metacity` \ + `use_enable kde` \ + `use_enable svg librsvg` \ + `use_enable dbus` \ + `use_enable dbus dbus-glib` || die + + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dobin "${FILESDIR}/0.3.6/compiz-start" || die + dodoc AUTHORS ChangeLog NEWS README TODO || die +} |