summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Leitch <port001@gentoo.org>2004-01-11 01:32:31 +0000
committerIan Leitch <port001@gentoo.org>2004-01-11 01:32:31 +0000
commit398386f1e8f4764fa561f94059563c9b8fb03cce (patch)
treeeac444c46834e7f06102f73c9e64efdde87bab7e /x11-plugins/wmtimer
parentVersion Bump. Closes Bug #25170. (diff)
downloadgentoo-2-398386f1e8f4764fa561f94059563c9b8fb03cce.tar.gz
gentoo-2-398386f1e8f4764fa561f94059563c9b8fb03cce.tar.bz2
gentoo-2-398386f1e8f4764fa561f94059563c9b8fb03cce.zip
Fixed incorrect negation of directories (#37647), added IUSE, split x11 and gtk into RDEPEND
Diffstat (limited to 'x11-plugins/wmtimer')
-rw-r--r--x11-plugins/wmtimer/ChangeLog8
-rw-r--r--x11-plugins/wmtimer/wmtimer-2.4.ebuild23
2 files changed, 18 insertions, 13 deletions
diff --git a/x11-plugins/wmtimer/ChangeLog b/x11-plugins/wmtimer/ChangeLog
index a5581f3cfb43..21944c20dafc 100644
--- a/x11-plugins/wmtimer/ChangeLog
+++ b/x11-plugins/wmtimer/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-plugins/wmtimer
-# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtimer/ChangeLog,v 1.5 2003/03/27 05:28:19 vladimir Exp $
+# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtimer/ChangeLog,v 1.6 2004/01/11 01:32:31 port001 Exp $
+
+ 11 Jan 2004; Ian Leitch <port001@gentoo.org> wmtimer-2.4.ebuild:
+ Fixed incorrect negation of directories (#37647), added IUSE, split x11 and
+ gtk into RDEPEND
* wmtimer-2.4 (12 August 2002)
diff --git a/x11-plugins/wmtimer/wmtimer-2.4.ebuild b/x11-plugins/wmtimer/wmtimer-2.4.ebuild
index d7a0ac001c95..13fc11e20b4a 100644
--- a/x11-plugins/wmtimer/wmtimer-2.4.ebuild
+++ b/x11-plugins/wmtimer/wmtimer-2.4.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtimer/wmtimer-2.4.ebuild,v 1.10 2004/01/04 18:36:48 aliz Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtimer/wmtimer-2.4.ebuild,v 1.11 2004/01/11 01:32:31 port001 Exp $
-S=${WORKDIR}/${P}
+IUSE=""
+
+S=${WORKDIR}/${P}/${PN}
DESCRIPTION="Dockable clock which can run in alarm, countdown timer or chronograph mode"
SRC_URI="http://home.dwave.net/~jking/wmtimer/${P}.tar.gz"
@@ -12,12 +14,15 @@ SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64"
+RDEPEND="=x11-libs/gtk+-1.2*
+ virtual/x11"
+
DEPEND="virtual/glibc
- virtual/x11
- =x11-libs/gtk+-1.2*"
+ ${RDEPEND}"
src_unpack() {
- unpack ${A} ; cd ${S}/wmtimer
+ unpack ${A}
+ cd ${S}
sed -i -e "s:-O2 -Wall:${CFLAGS}:" Makefile
}
@@ -26,11 +31,7 @@ src_compile() {
}
src_install () {
-
- cd ${S2}
dobin wmtimer
-
- cd ${S}
+ cd ..
dodoc README COPYING INSTALL CREDITS INSTALL Changelog
-
}