diff options
author | Ian Leitch <port001@gentoo.org> | 2004-01-11 01:32:31 +0000 |
---|---|---|
committer | Ian Leitch <port001@gentoo.org> | 2004-01-11 01:32:31 +0000 |
commit | a20b335127621c77a371a5143db2c275a47a37c4 (patch) | |
tree | 473c798a6ac39f951ef56a4ea4194a4a78503a8f /x11-plugins | |
parent | Version Bump. Closes Bug #25170. (diff) | |
download | historical-a20b335127621c77a371a5143db2c275a47a37c4.tar.gz historical-a20b335127621c77a371a5143db2c275a47a37c4.tar.bz2 historical-a20b335127621c77a371a5143db2c275a47a37c4.zip |
Fixed incorrect negation of directories (#37647), added IUSE, split x11 and gtk into RDEPEND
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/wmtimer/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/wmtimer/Manifest | 4 | ||||
-rw-r--r-- | x11-plugins/wmtimer/wmtimer-2.4.ebuild | 23 |
3 files changed, 20 insertions, 15 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/Manifest b/x11-plugins/wmtimer/Manifest index d8d43857c35f..046446a679a0 100644 --- a/x11-plugins/wmtimer/Manifest +++ b/x11-plugins/wmtimer/Manifest @@ -1,4 +1,4 @@ -MD5 b38dd7537e238d2d912df9314e2a0ea8 wmtimer-2.4.ebuild 790 -MD5 d6c32d6977426b01a858d79cc8e87a0d ChangeLog 900 +MD5 06ba9263b020ae7508b12d1285f5a658 wmtimer-2.4.ebuild 806 +MD5 e470db82945c596b3446da7f69ace1ed ChangeLog 1064 MD5 29dad15b2d403e1f5225ef8b26e8baa3 metadata.xml 505 MD5 e9893dea144b35a7eb054a48c737d0cc files/digest-wmtimer-2.4 62 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 - } |