summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2004-08-21 10:31:51 +0000
committerSeemant Kulleen <seemant@gentoo.org>2004-08-21 10:31:51 +0000
commit6bc24f7ad56a0f22220d9ac219e88864f6f2ee19 (patch)
tree961829720fb230a683c5569134e08423643d704a /x11-misc/xcompmgr
parentOK, this is the real ebuild. I'm calling this the Latexer-isnt-made-from-rub... (diff)
downloadgentoo-2-6bc24f7ad56a0f22220d9ac219e88864f6f2ee19.tar.gz
gentoo-2-6bc24f7ad56a0f22220d9ac219e88864f6f2ee19.tar.bz2
gentoo-2-6bc24f7ad56a0f22220d9ac219e88864f6f2ee19.zip
New ebuild from 20040821 cvs snapshot of xcompmgr from xapps module over at freedesktop.org. This should allow use of the xcomposite part of xorg-x11
Diffstat (limited to 'x11-misc/xcompmgr')
-rw-r--r--x11-misc/xcompmgr/ChangeLog10
-rw-r--r--x11-misc/xcompmgr/Manifest2
-rw-r--r--x11-misc/xcompmgr/files/digest-xcompmgr-0.11
-rw-r--r--x11-misc/xcompmgr/metadata.xml6
-rw-r--r--x11-misc/xcompmgr/xcompmgr-0.1.ebuild30
5 files changed, 49 insertions, 0 deletions
diff --git a/x11-misc/xcompmgr/ChangeLog b/x11-misc/xcompmgr/ChangeLog
new file mode 100644
index 000000000000..ff831187f227
--- /dev/null
+++ b/x11-misc/xcompmgr/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for x11-misc/xcompmgr
+# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xcompmgr/ChangeLog,v 1.1 2004/08/21 10:31:51 seemant Exp $
+
+*xcompmgr-0.1 (21 Aug 2004)
+
+ 21 Aug 2004; Seemant Kulleen <seemant@gentoo.org> +xcompmgr-0.1.ebuild:
+ New ebuild from 20040821 cvs snapshot of xcompmgr from xapps module over at
+ freedesktop.org. This should allow use of the xcomposite part of xorg-x11
+
diff --git a/x11-misc/xcompmgr/Manifest b/x11-misc/xcompmgr/Manifest
new file mode 100644
index 000000000000..e0c429373783
--- /dev/null
+++ b/x11-misc/xcompmgr/Manifest
@@ -0,0 +1,2 @@
+MD5 3b84832889bde5913239aa800f21f8b4 xcompmgr-0.1.ebuild 498
+MD5 859309fa1fce28479350d2bc47d3209b files/digest-xcompmgr-0.1 64
diff --git a/x11-misc/xcompmgr/files/digest-xcompmgr-0.1 b/x11-misc/xcompmgr/files/digest-xcompmgr-0.1
new file mode 100644
index 000000000000..fb97b9e6e9b7
--- /dev/null
+++ b/x11-misc/xcompmgr/files/digest-xcompmgr-0.1
@@ -0,0 +1 @@
+MD5 01776a8cee1a777a9320459834856424 xcompmgr-0.1.tar.bz2 13558
diff --git a/x11-misc/xcompmgr/metadata.xml b/x11-misc/xcompmgr/metadata.xml
new file mode 100644
index 000000000000..26b7e0083c13
--- /dev/null
+++ b/x11-misc/xcompmgr/metadata.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>x11</herd>
+<longdescription>X11 implementation by X.Org Foundation</longdescription>
+</pkgmetadata>
diff --git a/x11-misc/xcompmgr/xcompmgr-0.1.ebuild b/x11-misc/xcompmgr/xcompmgr-0.1.ebuild
new file mode 100644
index 000000000000..ca0ff613ef25
--- /dev/null
+++ b/x11-misc/xcompmgr/xcompmgr-0.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xcompmgr/xcompmgr-0.1.ebuild,v 1.1 2004/08/21 10:31:51 seemant Exp $
+
+IUSE="X gnome"
+
+S=${WORKDIR}/${PN}
+DESCRIPTION="X Compositing manager"
+HOMEPAGE="http://freedesktop.org/Software/xapps"
+SRC_URI="mirror://gentoo/${P}.tar.bz2"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~x86"
+
+
+DEPEND=">=x11-base/xorg-x11-6.7.99.902"
+
+src_compile() {
+ export WANT_AUTOCONF=2.5
+ export WANT_AUTOMAKE=1.7
+ ./autogen.sh || die
+ econf || die
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+ dodoc ChangeLog
+}