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-board/scid/files: scid-4.4-parallelmake.patch scid-4.4-gentoo.patch
Date: Tue, 30 Apr 2013 20:29:20
Message-Id: 20130430202912.A99962171D@flycatcher.gentoo.org
1 mr_bones_ 13/04/30 20:29:12
2
3 Added: scid-4.4-parallelmake.patch scid-4.4-gentoo.patch
4 Log:
5 version bump (bug #465820)
6
7 (Portage version: 2.1.11.62/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.1 games-board/scid/files/scid-4.4-parallelmake.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/scid/files/scid-4.4-parallelmake.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/scid/files/scid-4.4-parallelmake.patch?rev=1.1&content-type=text/plain
14
15 Index: scid-4.4-parallelmake.patch
16 ===================================================================
17 --- Makefile.conf.old 2012-02-22 14:12:51.280071808 +0100
18 +++ Makefile.conf 2012-02-22 14:13:15.432372323 +0100
19 @@ -379,7 +379,7 @@
20
21 scmerge: src/scmerge.o src/misc.o src/index.o src/date.o src/namebase.o \
22 src/gfile.o src/bytebuf.o src/textbuf.o src/myassert.o \
23 - src/stralloc.o src/position.o
24 + src/stralloc.o src/position.o $(OBJS)
25 $(LINK) -o scmerge src/scmerge.o $(OBJS) $(ZLIB) $(TCL_LIBRARY)
26
27 pgnscid: src/pgnscid.o $(OBJS)
28
29
30
31 1.1 games-board/scid/files/scid-4.4-gentoo.patch
32
33 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/scid/files/scid-4.4-gentoo.patch?rev=1.1&view=markup
34 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-board/scid/files/scid-4.4-gentoo.patch?rev=1.1&content-type=text/plain
35
36 Index: scid-4.4-gentoo.patch
37 ===================================================================
38 --- engines/togaII1.2.1a/src/Makefile.old 2012-05-06 20:56:56.190522872 +0200
39 +++ engines/togaII1.2.1a/src/Makefile 2012-05-06 20:58:20.995568403 +0200
40 @@ -18,23 +18,16 @@
41
42 # general
43
44 -CXX = g++
45 -CXXFLAGS = -pipe -Wall
46 -LDFLAGS = -lm
47
48 # C++
49
50 -CXXFLAGS += -fno-exceptions -fno-rtti
51
52 # optimisation
53
54 -CXXFLAGS += -O3 -fstrict-aliasing
55 -CXXFLAGS += -fomit-frame-pointer
56 # CXXFLAGS += -march=athlon-xp # SELECT ME
57
58 # strip
59
60 -LDFLAGS += -s
61
62 # dependencies
63
64 --- tcl/config.tcl.old 2012-05-06 20:59:24.475111275 +0200
65 +++ tcl/config.tcl 2012-05-06 21:03:04.075692323 +0200
66 @@ -5,7 +5,7 @@
67 if {$windowsOS} {
68 set scidShareDir $scidExeDir
69 } else {
70 - set scidShareDir [file normalize [file join $scidExeDir "../share/scid"]]
71 + set scidShareDir "@GENTOO_DATADIR@"
72 }
73
74 if {![info exists scidBooksDir]} {
75 --- tcl/start.tcl.old 2012-05-06 21:03:43.770905179 +0200
76 +++ tcl/start.tcl 2012-05-06 21:04:51.429154649 +0200
77 @@ -993,7 +993,7 @@
78
79 ### Audio move announcement options:
80
81 -set ::utils::sound::soundFolder [file nativename [file join $::scidExeDir sounds]]
82 +set ::utils::sound::soundFolder "@GENTOO_DATADIR@/sounds"
83 set ::utils::sound::announceNew 0
84 set ::utils::sound::announceForward 0
85 set ::utils::sound::announceBack 0
86 @@ -1002,7 +1002,7 @@
87 if {$windowsOS} {
88 set spellCheckFile [file join $scidDataDir "spelling.ssp"]
89 } else {
90 - set spellCheckFile "/usr/local/share/scid/spelling.ssp"
91 + set spellCheckFile "@GENTOO_DATADIR@/spelling.ssp"
92 }
93
94 # book configuration
95 --- tcl/utils/sound.tcl.old 2012-05-06 21:05:31.475342861 +0200
96 +++ tcl/utils/sound.tcl 2012-05-06 21:06:07.066843851 +0200
97 @@ -41,7 +41,7 @@
98 variable soundFolder
99
100 ::splash::add "Setting up audio move announcement..."
101 - if {[catch {package require snack 2.0}]} {
102 + if {[catch {package require snack}]} {
103 set hasSnackPackage 0
104 ::splash::add " Move speech disabled - Snack sound package not found"
105 return
106 --- Makefile.conf.old 2012-05-06 21:06:39.825543746 +0200
107 +++ Makefile.conf 2012-05-06 21:07:22.668535585 +0200
108 @@ -212,7 +212,7 @@
109 # Small extra programs. Most are written in Tcl using tcscid, but
110 # a few contributed ones may be in Python or other languages.
111 #
112 -SCRIPTS= sc_addmove sc_epgn sc_spell sc_eco sc_import sc_remote sc_tree scidpgn pgnfix spliteco spf2spi
113 +SCRIPTS= sc_addmove sc_epgn sc_spell sc_eco sc_import sc_remote sc_tree scidpgn pgnfix eco2pgn spliteco spf2spi
114
115 ####################