diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2004-10-11 09:29:01 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2004-10-11 09:29:01 +0000 |
commit | 2926adf1be9e17287f0e926b09722ca87fe18339 (patch) | |
tree | ccd1a0421dfb70e5e4e7ec9562fe979099030e6f /x11-misc | |
parent | PATCH_VER 0.2.3. Add 9910_all_use-nonow-ldflag-for-hardenedgccspecs.patch. In... (diff) | |
download | historical-2926adf1be9e17287f0e926b09722ca87fe18339.tar.gz historical-2926adf1be9e17287f0e926b09722ca87fe18339.tar.bz2 historical-2926adf1be9e17287f0e926b09722ca87fe18339.zip |
A real release, albeit hard to find (#65620). Ebuild fixes are from Adam Jackson <ajax@nwnk.net>.
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xcompmgr/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/xcompmgr/Manifest | 4 | ||||
-rw-r--r-- | x11-misc/xcompmgr/files/digest-xcompmgr-1.1 | 1 | ||||
-rw-r--r-- | x11-misc/xcompmgr/xcompmgr-1.1.ebuild | 34 |
4 files changed, 45 insertions, 2 deletions
diff --git a/x11-misc/xcompmgr/ChangeLog b/x11-misc/xcompmgr/ChangeLog index c5511838f37a..875bb9ce7694 100644 --- a/x11-misc/xcompmgr/ChangeLog +++ b/x11-misc/xcompmgr/ChangeLog @@ -1,6 +1,12 @@ # 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.6 2004/09/09 19:03:58 pauldv Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xcompmgr/ChangeLog,v 1.7 2004/10/11 09:29:01 spyderous Exp $ + +*xcompmgr-1.1 (11 Oct 2004) + + 11 Oct 2004; Donnie Berkholz <spyderous@gentoo.org>; +xcompmgr-1.1.ebuild: + A real release, albeit hard to find (#65620). Ebuild fixes are from Adam + Jackson <ajax@nwnk.net>. 09 Sep 2004; Paul de Vrieze <pauldv@gentoo.org> xcompmgr-0.1_pre20040821-r1.ebuild: diff --git a/x11-misc/xcompmgr/Manifest b/x11-misc/xcompmgr/Manifest index 923ffa7a0170..a1cc91ed6864 100644 --- a/x11-misc/xcompmgr/Manifest +++ b/x11-misc/xcompmgr/Manifest @@ -1,5 +1,7 @@ -MD5 aca4e021dfcf3e30816e292df12dd33c ChangeLog 1357 +MD5 4e9ea7daf9584800da774886c0a9a7b9 ChangeLog 1569 MD5 ac1137a20503dcb8f9ba2939a2a766f6 metadata.xml 230 MD5 06ce17f80be6a8d55b81956e3a2f8b10 xcompmgr-0.1_pre20040821-r1.ebuild 870 +MD5 8584bd0d5b5cc5c9c5945f607ac9bc57 xcompmgr-1.1.ebuild 665 MD5 5dac0410ae8df15ee3ce7b02ad495847 files/digest-xcompmgr-0.1_pre20040821-r1 76 MD5 fcac96a3388e51713ee63c0c8f861c8e files/xcompmgr-fix.diff 832 +MD5 07e5ec00d181e904a58ae4d14a14b7e3 files/digest-xcompmgr-1.1 63 diff --git a/x11-misc/xcompmgr/files/digest-xcompmgr-1.1 b/x11-misc/xcompmgr/files/digest-xcompmgr-1.1 new file mode 100644 index 000000000000..029e95881d5a --- /dev/null +++ b/x11-misc/xcompmgr/files/digest-xcompmgr-1.1 @@ -0,0 +1 @@ +MD5 55f1ae4336464a731306138b5d55c92e xcompmgr-1.1.tar.gz 17560 diff --git a/x11-misc/xcompmgr/xcompmgr-1.1.ebuild b/x11-misc/xcompmgr/xcompmgr-1.1.ebuild new file mode 100644 index 000000000000..800e7ce9d06f --- /dev/null +++ b/x11-misc/xcompmgr/xcompmgr-1.1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +inherit eutils + +IUSE="" + +DESCRIPTION="X Compositing manager" +HOMEPAGE="http://freedesktop.org/Software/xapps" +SRC_URI="http://freedesktop.org/~xapps/release/${P}.tar.gz" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~x86 ~ppc ~amd64" + +RDEPEND=">=x11-base/xorg-x11-6.8.0" + +DEPEND="${RDEPEND} + >=sys-devel/automake-1.7 + >=sys-devel/autoconf-2.5 + dev-util/pkgconfig" + +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 +} |