blob: 5523101d9a22622c8593f8c2c6161b74f85f8da1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xwrits/xwrits-2.20.ebuild,v 1.4 2002/10/04 21:32:25 vapier Exp $
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.20.tar.gz"
HOMEPAGE="http://www.lcdf.org/xwrits/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc sparc64"
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
}
|