Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-util/joystick/files: joystick-1.4.8-build.patch
Date: Thu, 05 Feb 2015 09:59:16
Message-Id: 20150205095911.D36FB11198@oystercatcher.gentoo.org
1 mr_bones_ 15/02/05 09:59:11
2
3 Added: joystick-1.4.8-build.patch
4 Log:
5 version bump
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.1 games-util/joystick/files/joystick-1.4.8-build.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/joystick/files/joystick-1.4.8-build.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-util/joystick/files/joystick-1.4.8-build.patch?rev=1.1&content-type=text/plain
14
15 Index: joystick-1.4.8-build.patch
16 ===================================================================
17 --- linuxconsoletools-1.4.4.orig/docs/Makefile
18 +++ linuxconsoletools-1.4.4/docs/Makefile
19 @@ -20,13 +20,17 @@
20 # 02110-1301 USA.
21
22 MANPAGES = inputattach.1 jstest.1 jscal.1 fftest.1 \
23 - ffmvforce.1 ffset.1 ffcfstress.1 jscal-store.1 \
24 + ffset.1 ffcfstress.1 jscal-store.1 \
25 jscal-restore.1
26
27 +ifneq ($(USE_SDL),no)
28 +MANPAGES += ffmvforce.1
29 +endif
30 +
31 PREFIX ?= /usr/local
32
33 install:
34 install -d $(DESTDIR)$(PREFIX)/share/man/man1
35 - install $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1
36 + install -m 644 $(MANPAGES) $(DESTDIR)$(PREFIX)/share/man/man1
37
38 .PHONY: install
39 --- linuxconsoletools-1.4.4.orig/utils/Makefile
40 +++ linuxconsoletools-1.4.4/utils/Makefile
41 @@ -27,9 +27,13 @@
42
43 CFLAGS ?= -g -O2 -Wall
44
45 -PROGRAMS = inputattach jstest jscal fftest ffmvforce ffset \
46 +PROGRAMS = inputattach jstest jscal fftest ffset \
47 ffcfstress jscal-restore jscal-store
48
49 +ifneq ($(USE_SDL),no)
50 +PROGRAMS += ffmvforce
51 +endif
52 +
53 PREFIX ?= /usr/local
54
55 compile: $(PROGRAMS)