summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-07-25 17:20:02 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-07-25 17:20:02 +0000
commit5c9f65798bcd4fe2d5a2bc13478eaa37add0574e (patch)
tree5f754c83d0df4603868a68572e913c2846a76411 /app-misc/joy2key
parentrepoman'd (diff)
downloadhistorical-5c9f65798bcd4fe2d5a2bc13478eaa37add0574e.tar.gz
historical-5c9f65798bcd4fe2d5a2bc13478eaa37add0574e.tar.bz2
historical-5c9f65798bcd4fe2d5a2bc13478eaa37add0574e.zip
repoman'd
Diffstat (limited to 'app-misc/joy2key')
-rw-r--r--app-misc/joy2key/joy2key-1.6.ebuild19
1 files changed, 8 insertions, 11 deletions
diff --git a/app-misc/joy2key/joy2key-1.6.ebuild b/app-misc/joy2key/joy2key-1.6.ebuild
index d9b169efe83d..4e029ba6363e 100644
--- a/app-misc/joy2key/joy2key-1.6.ebuild
+++ b/app-misc/joy2key/joy2key-1.6.ebuild
@@ -1,31 +1,28 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/app-misc/joy2key/joy2key-1.6.ebuild,v 1.4 2002/07/11 06:30:16 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/joy2key/joy2key-1.6.ebuild,v 1.5 2002/07/25 17:20:01 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="An application that translates joystick events to keyboard events"
SRC_URI="http://www-unix.oit.umass.edu/~tetron/technology/joy2key/${P}.tar.gz"
HOMEPAGE="http://www-unix.out.umass.edu/~tetron/technology/joy2key/"
-DEPEND="virtual/glibc
- X? ( virtual/x11 )"
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86"
-src_compile() {
+DEPEND="X? ( virtual/x11 )"
+src_compile() {
local myconf
- if [ -z "`use X`" ] ; then
- myconf="--disable-X"
- fi
+ use X || myconf="--disable-X"
./configure ${myconf} || die
make || die
-
}
src_install () {
-
dobin joy2key
doman joy2key.1
- dodoc README joy2keyrc.sample
-
+ dodoc README joy2keyrc.sample AUTHORS NEWS TODO
}