summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Góes <vanquirius@gentoo.org>2006-02-24 22:45:54 +0000
committerMarcelo Góes <vanquirius@gentoo.org>2006-02-24 22:45:54 +0000
commit2d9815bd8292da6defeb753481dd8fd3287d8ce3 (patch)
treea6ee4ae18f29101d5875b41ef3ad32c4af05a0c0 /app-emulation/xcopilot
parentfix #123976, not enough elements allocated for array of func ptrs. (diff)
downloadgentoo-2-2d9815bd8292da6defeb753481dd8fd3287d8ce3.tar.gz
gentoo-2-2d9815bd8292da6defeb753481dd8fd3287d8ce3.tar.bz2
gentoo-2-2d9815bd8292da6defeb753481dd8fd3287d8ce3.zip
Make modular X friendly for bug 123980. Thanks to Mauricio L. Pilla <pilla at gentoo dot org>.
(Portage version: 2.1_pre4-r1 vanquishing potions will fly)
Diffstat (limited to 'app-emulation/xcopilot')
-rw-r--r--app-emulation/xcopilot/ChangeLog6
-rw-r--r--app-emulation/xcopilot/xcopilot-0.6.6.ebuild23
2 files changed, 21 insertions, 8 deletions
diff --git a/app-emulation/xcopilot/ChangeLog b/app-emulation/xcopilot/ChangeLog
index 8ce4e19394f5..a584a34de851 100644
--- a/app-emulation/xcopilot/ChangeLog
+++ b/app-emulation/xcopilot/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-emulation/xcopilot
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/xcopilot/ChangeLog,v 1.6 2006/01/09 17:52:32 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/xcopilot/ChangeLog,v 1.7 2006/02/24 22:45:54 vanquirius Exp $
+
+ 24 Feb 2006; Marcelo Goes <vanquirius@gentoo.org> xcopilot-0.6.6.ebuild:
+ Make modular X friendly for bug 123980. Thanks to Mauricio L. Pilla <pilla
+ at gentoo dot org>.
09 Jan 2006; Bryan Østergaard <kloeri@gentoo.org metadata.xml:
Remove retired dev from metadata.xml
diff --git a/app-emulation/xcopilot/xcopilot-0.6.6.ebuild b/app-emulation/xcopilot/xcopilot-0.6.6.ebuild
index dedd0a526594..00c672ad3fbb 100644
--- a/app-emulation/xcopilot/xcopilot-0.6.6.ebuild
+++ b/app-emulation/xcopilot/xcopilot-0.6.6.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/xcopilot/xcopilot-0.6.6.ebuild,v 1.6 2005/07/29 23:15:05 vanquirius Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/xcopilot/xcopilot-0.6.6.ebuild,v 1.7 2006/02/24 22:45:54 vanquirius Exp $
MY_P="xcopilot-0.6.6-uc0"
@@ -13,10 +13,19 @@ SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
-DEPEND="virtual/libc
- virtual/x11
- app-arch/dpkg"
-RDEPEND=""
+RDEPEND="|| ( ( x11-libs/libICE
+ x11-libs/libSM
+ x11-libs/libXt
+ x11-libs/libXpm
+ x11-libs/libX11
+ x11-libs/libXext
+ x11-libs/libXdmcp )
+ virtual/x11 )"
+
+DEPEND="app-arch/dpkg
+ || ( ( x11-proto/xextproto
+ x11-proto/xproto )
+ virtual/x11 )"
S="${WORKDIR}/${MY_P}"
@@ -26,7 +35,7 @@ src_compile() {
}
src_install() {
- make DESTDIR=${D} install || die
+ make DESTDIR="${D}" install || die
dodoc AUTHORS README NEWS README.uClinux
}