diff options
author | David Shakaryan <omp@gentoo.org> | 2006-10-22 00:28:08 +0000 |
---|---|---|
committer | David Shakaryan <omp@gentoo.org> | 2006-10-22 00:28:08 +0000 |
commit | 2ff565d4b8fdd5df47f6d80423e91c38f0fcb9d5 (patch) | |
tree | 268c2a50276650812dc711954b211d59c1e761a3 /x11-misc/xdaf | |
parent | Remove monolithic X from dependencies. (diff) | |
download | gentoo-2-2ff565d4b8fdd5df47f6d80423e91c38f0fcb9d5.tar.gz gentoo-2-2ff565d4b8fdd5df47f6d80423e91c38f0fcb9d5.tar.bz2 gentoo-2-2ff565d4b8fdd5df47f6d80423e91c38f0fcb9d5.zip |
Remove monolithic X from dependencies, add die messages and fix quotes.
(Portage version: 2.1.2_pre3-r6)
Diffstat (limited to 'x11-misc/xdaf')
-rw-r--r-- | x11-misc/xdaf/ChangeLog | 5 | ||||
-rw-r--r-- | x11-misc/xdaf/xdaf-0.01.11.01.ebuild | 25 |
2 files changed, 16 insertions, 14 deletions
diff --git a/x11-misc/xdaf/ChangeLog b/x11-misc/xdaf/ChangeLog index 2f328676817c..559f76594223 100644 --- a/x11-misc/xdaf/ChangeLog +++ b/x11-misc/xdaf/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-misc/xdaf # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdaf/ChangeLog,v 1.10 2006/01/21 16:46:53 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdaf/ChangeLog,v 1.11 2006/10/22 00:28:08 omp Exp $ + + 22 Oct 2006; David Shakaryan <omp@gentoo.org> xdaf-0.01.11.01.ebuild: + Remove monolithic X from dependencies, add die messages and fix quotes. 21 Jan 2006; Krzysiek Pawlik <nelchael@gentoo.org> -xdaf-0.01.10.ebuild, xdaf-0.01.11.01.ebuild: diff --git a/x11-misc/xdaf/xdaf-0.01.11.01.ebuild b/x11-misc/xdaf/xdaf-0.01.11.01.ebuild index 538a08dc9a89..f06d6ba3bdb7 100644 --- a/x11-misc/xdaf/xdaf-0.01.11.01.ebuild +++ b/x11-misc/xdaf/xdaf-0.01.11.01.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdaf/xdaf-0.01.11.01.ebuild,v 1.7 2006/01/21 16:46:53 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdaf/xdaf-0.01.11.01.ebuild,v 1.8 2006/10/22 00:28:08 omp Exp $ MY_P=${P/-0/-A} + DESCRIPTION="Small tool to provide visual feedback of local disks activity by changing the default X11 mouse pointer" HOMEPAGE="http://ezix.sourceforge.net/software/xdaf.html" SRC_URI="mirror://sourceforge/ezix/${MY_P}.tar.gz" @@ -12,27 +13,25 @@ SLOT="0" KEYWORDS="ppc x86" IUSE="" -RDEPEND="|| ( ( - x11-libs/libX11 - x11-libs/libXmu - x11-libs/libXt - x11-libs/libXaw - x11-libs/libXext - x11-libs/libXpm - x11-libs/libXp ) - virtual/x11 )" +RDEPEND="x11-libs/libX11 + x11-libs/libXmu + x11-libs/libXt + x11-libs/libXaw + x11-libs/libXext + x11-libs/libXpm + x11-libs/libXp" DEPEND="${RDEPEND} - || ( x11-misc/imake virtual/x11 )" + x11-misc/imake" S=${WORKDIR}/${MY_P} src_compile() { xmkmf || die - emake CDEBUGFLAGS="${CFLAGS}" || die + emake CDEBUGFLAGS="${CFLAGS}" || die "emake failed" } src_install () { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die "make install failed" newman xdaf.man xdaf.1 dodoc README } |