summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-08-08 13:49:04 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2015-08-08 17:38:18 -0700
commit56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch)
tree3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-misc/joy2key
downloadgentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip
proj/gentoo: Initial commit
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-misc/joy2key')
-rw-r--r--app-misc/joy2key/Manifest1
-rw-r--r--app-misc/joy2key/files/1.6.1-fix-configure.diff27
-rw-r--r--app-misc/joy2key/files/fix-configure.in.diff27
-rw-r--r--app-misc/joy2key/joy2key-1.6.3.ebuild27
-rw-r--r--app-misc/joy2key/metadata.xml10
5 files changed, 92 insertions, 0 deletions
diff --git a/app-misc/joy2key/Manifest b/app-misc/joy2key/Manifest
new file mode 100644
index 000000000000..5aa099abb8f9
--- /dev/null
+++ b/app-misc/joy2key/Manifest
@@ -0,0 +1 @@
+DIST joy2key-1.6.3.tar.bz2 70545 SHA256 cf6f452632bb661cf889d843e9ebb9f4fe6ddf4bfe14193ebf74c2d1e2b89f50 SHA512 33767058cb32aa18a418d37f48d80200a99ce12b765ec758bde7efdda575ffc78af3039584fe3ef267baaacc3724b3203d858017c945824cc949b9cd6fe97bec WHIRLPOOL 26356d8afe214c8b93056f128db79b7476a709992ec606a4006b7bf44aca182bb25de5da9d0fc26500cd101c9a522e53c4ee7d373f4ed90afee3409b554789f8
diff --git a/app-misc/joy2key/files/1.6.1-fix-configure.diff b/app-misc/joy2key/files/1.6.1-fix-configure.diff
new file mode 100644
index 000000000000..2f46050a25e5
--- /dev/null
+++ b/app-misc/joy2key/files/1.6.1-fix-configure.diff
@@ -0,0 +1,27 @@
+--- configure.ac 2001-04-10 11:36:09.000000000 -0600
++++ configure.ac 2005-03-19 08:40:56.377832328 -0700
+@@ -20,8 +20,22 @@
+ AC_DEFINE(ENABLE_CONSOLE))
+
+ AC_ARG_ENABLE(X, [ --disable-X do not compile in X features],
+- if test $enableval != no; then AC_DEFINE(ENABLE_X) export xstuff="-L$x_libraries -lX11"; fi,
+- AC_DEFINE(ENABLE_X) export X_Stuff="-L$x_libraries -lX11")
++ if test $enableval != no; then AC_DEFINE(ENABLE_X)
++ if test -n "$x_libraries";
++ then
++ export xstuff="-L$x_libraries -lX11"
++ else
++ export xstuff="-lX11"
++ fi
++ fi
++ ,
++ AC_DEFINE(ENABLE_X)
++ if test -n "$x_libraries";
++ then
++ export X_Stuff="-L$x_libraries -lX11"
++ else
++ export X_Stuff="-lX11"
++ fi)
+
+ AC_SUBST(X_Stuff)
+ AC_SUBST(x_headers)
diff --git a/app-misc/joy2key/files/fix-configure.in.diff b/app-misc/joy2key/files/fix-configure.in.diff
new file mode 100644
index 000000000000..bc3cef9b51fd
--- /dev/null
+++ b/app-misc/joy2key/files/fix-configure.in.diff
@@ -0,0 +1,27 @@
+--- configure.in 2001-04-10 11:36:09.000000000 -0600
++++ configure.in 2005-03-19 08:40:56.377832328 -0700
+@@ -20,8 +20,22 @@
+ AC_DEFINE(ENABLE_CONSOLE))
+
+ AC_ARG_ENABLE(X, [ --disable-X do not compile in X features],
+- if test $enableval != no; then AC_DEFINE(ENABLE_X) export xstuff="-L$x_libraries -lX11"; fi,
+- AC_DEFINE(ENABLE_X) export X_Stuff="-L$x_libraries -lX11")
++ if test $enableval != no; then AC_DEFINE(ENABLE_X)
++ if test -n "$x_libraries";
++ then
++ export xstuff="-L$x_libraries -lX11"
++ else
++ export xstuff="-lX11"
++ fi
++ fi
++ ,
++ AC_DEFINE(ENABLE_X)
++ if test -n "$x_libraries";
++ then
++ export X_Stuff="-L$x_libraries -lX11"
++ else
++ export X_Stuff="-lX11"
++ fi)
+
+ AC_SUBST(X_Stuff)
+ AC_SUBST(x_headers)
diff --git a/app-misc/joy2key/joy2key-1.6.3.ebuild b/app-misc/joy2key/joy2key-1.6.3.ebuild
new file mode 100644
index 000000000000..12774e2d28bb
--- /dev/null
+++ b/app-misc/joy2key/joy2key-1.6.3.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+DESCRIPTION="An application that translates joystick events to keyboard events"
+HOMEPAGE="http://sourceforge.net/projects/joy2key"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 ppc x86"
+IUSE="X"
+
+RDEPEND="X? ( x11-libs/libX11
+ x11-apps/xwininfo )"
+DEPEND="${RDEPEND}
+ X? ( x11-proto/xproto )"
+
+src_compile() {
+ econf --disable-dependency-tracking $(use_enable X)
+ emake || die "emake failed."
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed."
+ dodoc AUTHORS ChangeLog joy2keyrc.sample rawscancodes README TODO
+}
diff --git a/app-misc/joy2key/metadata.xml b/app-misc/joy2key/metadata.xml
new file mode 100644
index 000000000000..80d21cfddf3d
--- /dev/null
+++ b/app-misc/joy2key/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer>
+ <email>maintainer-needed@gentoo.org</email>
+ </maintainer>
+ <upstream>
+ <remote-id type="sourceforge">joy2key</remote-id>
+ </upstream>
+</pkgmetadata>