diff options
Diffstat (limited to 'x11-wm/beryl-core/beryl-core-0.1.2.ebuild')
-rw-r--r-- | x11-wm/beryl-core/beryl-core-0.1.2.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/x11-wm/beryl-core/beryl-core-0.1.2.ebuild b/x11-wm/beryl-core/beryl-core-0.1.2.ebuild new file mode 100644 index 000000000000..561336a8f149 --- /dev/null +++ b/x11-wm/beryl-core/beryl-core-0.1.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/beryl-core/beryl-core-0.1.2.ebuild,v 1.1 2006/11/15 04:04:47 tsunam Exp $ + +inherit autotools + +DESCRIPTION="Beryl window manager for AiGLX and XGL" +HOMEPAGE="http://beryl-project.org" +SRC_URI="http://releases.beryl-project.org/${PV}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" +WANT_AUTOMAKE=1.9 + +DEPEND=">=x11-base/xorg-server-1.1.1-r1 + >=x11-libs/gtk+-2.8.0 + x11-libs/libXcomposite + x11-libs/libXdamage + x11-libs/libXrandr + x11-libs/startup-notification" + +RDEPEND="${DEPEND} + x11-apps/xdpyinfo" + +PDEPEND="=x11-plugins/beryl-plugins-0.1.2" + +MAKEOPTS="${MAKEOPTS} -j1" + +src_compile() { + econf || die "econf failed" + make clean || "clean up bad upstream packaging" #this is a temporary fix to +# fix bad building on x86 + emake || die "make failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" +} |