diff options
author | Guido Bakker <guidob@gentoo.org> | 2002-03-12 08:39:50 +0000 |
---|---|---|
committer | Guido Bakker <guidob@gentoo.org> | 2002-03-12 08:39:50 +0000 |
commit | 0287ec348fe4e8f127cc2901b3e70cd95402f041 (patch) | |
tree | 8f701da59ee585f129695121848508b21e29cb54 /x11-misc/xwrits | |
parent | mozilla-0.9.9 and pcmcia-1.3.33 masked (diff) | |
download | gentoo-2-0287ec348fe4e8f127cc2901b3e70cd95402f041.tar.gz gentoo-2-0287ec348fe4e8f127cc2901b3e70cd95402f041.tar.bz2 gentoo-2-0287ec348fe4e8f127cc2901b3e70cd95402f041.zip |
bugfix and new feature. version update
Diffstat (limited to 'x11-misc/xwrits')
-rw-r--r-- | x11-misc/xwrits/files/digest-xwrits-2.19 | 1 | ||||
-rw-r--r-- | x11-misc/xwrits/xwrits-2.19.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/x11-misc/xwrits/files/digest-xwrits-2.19 b/x11-misc/xwrits/files/digest-xwrits-2.19 new file mode 100644 index 000000000000..686d9c494f8a --- /dev/null +++ b/x11-misc/xwrits/files/digest-xwrits-2.19 @@ -0,0 +1 @@ +MD5 a00b2b1673155cc6dd5a55334e438d3d xwrits-2.19.tar.gz 130987 diff --git a/x11-misc/xwrits/xwrits-2.19.ebuild b/x11-misc/xwrits/xwrits-2.19.ebuild new file mode 100644 index 000000000000..38cfd5152e3d --- /dev/null +++ b/x11-misc/xwrits/xwrits-2.19.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later + +S=${WORKDIR}/${P} + +DESCRIPTION="Xwrits reminds you to take wrist breaks, which will hopefully help you prevent repetitive stress injury. It pops up an X window when you should rest; you click on that window, then take a break" + +SRC_URI="http://www.lcdf.org/xwrits/xwrits-2.19.tar.gz" +HOMEPAGE="http://www.lcdf.org/xwrits/" + +DEPEND="x11-base/xfree" + +src_compile() { + + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + assert + + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + + dodoc GESTURES NEWS README +} + |