summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2015-04-02 20:49:49 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2015-04-02 20:49:49 +0000
commit396874881cacb8250eeae5d24f37a2e94e546d31 (patch)
tree100223dabbb606d6e941fa7989848fa2d611a1fd /games-util
parentarm stable, bug #543996 (diff)
downloadgentoo-2-396874881cacb8250eeae5d24f37a2e94e546d31.tar.gz
gentoo-2-396874881cacb8250eeae5d24f37a2e94e546d31.tar.bz2
gentoo-2-396874881cacb8250eeae5d24f37a2e94e546d31.zip
old
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-util')
-rw-r--r--games-util/joystick/ChangeLog6
-rw-r--r--games-util/joystick/files/joystick-1.4.4-build.patch39
-rw-r--r--games-util/joystick/joystick-1.4.4.ebuild29
3 files changed, 5 insertions, 69 deletions
diff --git a/games-util/joystick/ChangeLog b/games-util/joystick/ChangeLog
index ec50896353af..5b2190d51c4d 100644
--- a/games-util/joystick/ChangeLog
+++ b/games-util/joystick/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-util/joystick
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v 1.30 2015/04/02 20:07:08 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v 1.31 2015/04/02 20:49:49 mr_bones_ Exp $
+
+ 02 Apr 2015; Michael Sterrett <mr_bones_@gentoo.org>
+ -files/joystick-1.4.4-build.patch, -joystick-1.4.4.ebuild:
+ old
02 Apr 2015; Markus Meier <maekke@gentoo.org> joystick-1.4.8.ebuild:
arm stable, bug #542502
diff --git a/games-util/joystick/files/joystick-1.4.4-build.patch b/games-util/joystick/files/joystick-1.4.4-build.patch
deleted file mode 100644
index f888ccd18812..000000000000
--- a/games-util/joystick/files/joystick-1.4.4-build.patch
+++ /dev/null
@@ -1,39 +0,0 @@
---- linuxconsoletools-1.4.4.orig/docs/Makefile
-+++ linuxconsoletools-1.4.4/docs/Makefile
-@@ -20,13 +20,17 @@
- # 02110-1301 USA.
-
- MANPAGES = inputattach.1 jstest.1 jscal.1 fftest.1 \
-- ffmvforce.1 ffset.1 ffcfstress.1 jscal-store.1 \
-+ ffset.1 ffcfstress.1 jscal-store.1 \
- jscal-restore.1
-
-+ifneq ($(USE_SDL),no)
-+MANPAGES += ffmvforce.1
-+endif
-+
- PREFIX ?= /usr/local
-
- install:
- install -d $(DESTDIR)$(PREFIX)/share/man/man1
-- install $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1
-+ install -m 644 $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1
-
- .PHONY: install
---- linuxconsoletools-1.4.4.orig/utils/Makefile
-+++ linuxconsoletools-1.4.4/utils/Makefile
-@@ -27,9 +27,13 @@
-
- CFLAGS ?= -g -O2 -Wall
-
--PROGRAMS = inputattach jstest jscal fftest ffmvforce ffset \
-+PROGRAMS = inputattach jstest jscal fftest ffset \
- ffcfstress jscal-restore jscal-store
-
-+ifneq ($(USE_SDL),no)
-+PROGRAMS += ffmvforce
-+endif
-+
- PREFIX ?= /usr/local
-
- compile: $(PROGRAMS)
diff --git a/games-util/joystick/joystick-1.4.4.ebuild b/games-util/joystick/joystick-1.4.4.ebuild
deleted file mode 100644
index e21be9809750..000000000000
--- a/games-util/joystick/joystick-1.4.4.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-1.4.4.ebuild,v 1.5 2013/06/30 21:09:53 ago Exp $
-
-EAPI=5
-inherit eutils toolchain-funcs
-
-MY_P="linuxconsoletools-${PV}"
-DESCRIPTION="joystick testing utilities"
-HOMEPAGE="http://sourceforge.net/projects/linuxconsole/ http://atrey.karlin.mff.cuni.cz/~vojtech/input/"
-SRC_URI="mirror://sourceforge/linuxconsole/files/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc x86"
-IUSE="sdl"
-
-DEPEND="sdl? ( media-libs/libsdl:0[video] )
- !<x11-libs/tslib-1.0-r2"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-build.patch
- export PREFIX=/usr
- tc-export CC PKG_CONFIG
- export USE_SDL=$(usex sdl)
-}