summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2015-02-19 01:38:28 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2015-02-19 01:38:28 +0000
commitafcd5161131c923e8d756d2fa8b519590ad115cf (patch)
treea465d1f79f9fbd983f3f4f52dcd8e8d4e36edb44 /games-util
parentold (diff)
downloadgentoo-2-afcd5161131c923e8d756d2fa8b519590ad115cf.tar.gz
gentoo-2-afcd5161131c923e8d756d2fa8b519590ad115cf.tar.bz2
gentoo-2-afcd5161131c923e8d756d2fa8b519590ad115cf.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.7-build.patch39
-rw-r--r--games-util/joystick/joystick-1.4.7.ebuild29
3 files changed, 5 insertions, 69 deletions
diff --git a/games-util/joystick/ChangeLog b/games-util/joystick/ChangeLog
index 9ed36e71c193..b4efe47aedf7 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.26 2015/02/05 09:59:11 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/ChangeLog,v 1.27 2015/02/19 01:38:28 mr_bones_ Exp $
+
+ 19 Feb 2015; Michael Sterrett <mr_bones_@gentoo.org>
+ -files/joystick-1.4.7-build.patch, -joystick-1.4.7.ebuild:
+ old
*joystick-1.4.8 (05 Feb 2015)
diff --git a/games-util/joystick/files/joystick-1.4.7-build.patch b/games-util/joystick/files/joystick-1.4.7-build.patch
deleted file mode 100644
index f888ccd18812..000000000000
--- a/games-util/joystick/files/joystick-1.4.7-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.7.ebuild b/games-util/joystick/joystick-1.4.7.ebuild
deleted file mode 100644
index 0e13afc4745a..000000000000
--- a/games-util/joystick/joystick-1.4.7.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-util/joystick/joystick-1.4.7.ebuild,v 1.1 2014/07/16 01:19:15 mr_bones_ 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)
-}