summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Shakaryan <omp@gentoo.org>2006-10-22 00:15:30 +0000
committerDavid Shakaryan <omp@gentoo.org>2006-10-22 00:15:30 +0000
commit07bd60bf1c763541351bf82c46e1b9cfd39754f4 (patch)
treeab849773cc6ddb64c557734dd1355362a1150da7
parentRemove monolithic X from dependencies. (diff)
downloadgentoo-2-07bd60bf1c763541351bf82c46e1b9cfd39754f4.tar.gz
gentoo-2-07bd60bf1c763541351bf82c46e1b9cfd39754f4.tar.bz2
gentoo-2-07bd60bf1c763541351bf82c46e1b9cfd39754f4.zip
Remove monolithic X from dependencies, add die messages, fix quotes and use $PN in SRC_URI.
(Portage version: 2.1.2_pre3-r6)
-rw-r--r--x11-misc/xwrits/ChangeLog6
-rw-r--r--x11-misc/xwrits/xwrits-2.21.ebuild26
2 files changed, 16 insertions, 16 deletions
diff --git a/x11-misc/xwrits/ChangeLog b/x11-misc/xwrits/ChangeLog
index 49dfb6d928f5..1d31d5968161 100644
--- a/x11-misc/xwrits/ChangeLog
+++ b/x11-misc/xwrits/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-misc/xwrits
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xwrits/ChangeLog,v 1.15 2006/01/21 19:20:33 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xwrits/ChangeLog,v 1.16 2006/10/22 00:15:30 omp Exp $
+
+ 22 Oct 2006; David Shakaryan <omp@gentoo.org> xwrits-2.21.ebuild:
+ Remove monolithic X from dependencies, add die messages, fix quotes and use
+ $PN in SRC_URI.
21 Jan 2006; Krzysiek Pawlik <nelchael@gentoo.org> -xwrits-2.20.ebuild,
xwrits-2.21.ebuild:
diff --git a/x11-misc/xwrits/xwrits-2.21.ebuild b/x11-misc/xwrits/xwrits-2.21.ebuild
index a8a592dfbcca..a654167e466b 100644
--- a/x11-misc/xwrits/xwrits-2.21.ebuild
+++ b/x11-misc/xwrits/xwrits-2.21.ebuild
@@ -1,33 +1,29 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xwrits/xwrits-2.21.ebuild,v 1.15 2006/01/21 19:20:33 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xwrits/xwrits-2.21.ebuild,v 1.16 2006/10/22 00:15:30 omp Exp $
DESCRIPTION="Xwrits reminds you to take wrist breaks, which will hopefully help you prevent repetitive stress injury."
HOMEPAGE="http://www.lcdf.org/xwrits/"
-SRC_URI="http://www.lcdf.org/xwrits/${P}.tar.gz"
+SRC_URI="http://www.lcdf.org/${PN}/${P}.tar.gz"
-SLOT="0"
LICENSE="GPL-2"
+SLOT="0"
KEYWORDS="ppc sparc x86 ~amd64"
IUSE=""
-RDEPEND="|| ( (
- x11-libs/libX11
- x11-libs/libXext
- x11-libs/libXinerama )
- virtual/x11 )"
+RDEPEND="x11-libs/libX11
+ x11-libs/libXext
+ x11-libs/libXinerama"
DEPEND="${RDEPEND}
- || ( (
- x11-proto/xproto
- x11-proto/xineramaproto )
- virtual/x11 )"
+ x11-proto/xproto
+ x11-proto/xineramaproto"
src_compile() {
- econf || die
- emake || die
+ econf || die "econf failed"
+ emake || die "emake failed"
}
src_install () {
- make DESTDIR=${D} install || die
+ make DESTDIR="${D}" install || die "make install failed"
dodoc GESTURES NEWS README
}