blob: 05afd36dc820ffa1f6735a461237c97bde4e9446 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
diff -ru lbreakout2-2.6.1.orig/Makefile.am lbreakout2-2.6.1/Makefile.am
--- lbreakout2-2.6.1.orig/Makefile.am 2009-10-26 12:43:18.000000000 -0400
+++ lbreakout2-2.6.1/Makefile.am 2009-12-30 15:44:09.095784859 -0500
@@ -1,13 +1,8 @@
SUBDIRS = intl m4 po common gui game server client docs
EXTRA_DIST = config.rpath AUTHORS COPYING ChangeLog INSTALL README \
-README-SDL.txt TODO lbreakout2.spec touchall lbreakout32.gif \
-lbreakout48.gif lbreakout2.desktop.in win32_mancomp win32_preparchive
-
-desktopdir = $(datadir)/applications
-desktop_DATA = lbreakout2.desktop
-icondir = $(datadir)/icons
-icon_DATA = lbreakout48.gif
+README-SDL.txt TODO lbreakout2.spec touchall \
+win32_mancomp win32_preparchive
WIN32_TEXT = AUTHORS COPYING ChangeLog INSTALL README README-SDL.txt \
TODO lbreakout2.spec ABOUT-NLS
diff -ru lbreakout2-2.6.1.orig/common/gettext.h lbreakout2-2.6.1/common/gettext.h
--- lbreakout2-2.6.1.orig/common/gettext.h 2005-10-19 16:07:57.000000000 -0400
+++ lbreakout2-2.6.1/common/gettext.h 2009-12-30 15:43:41.924907300 -0500
@@ -24,6 +24,7 @@
/* Get declarations of GNU message catalog functions. */
# include <libintl.h>
+# include <locale.h>
#else
diff -ru lbreakout2-2.6.1.orig/configure.in lbreakout2-2.6.1/configure.in
--- lbreakout2-2.6.1.orig/configure.in 2009-12-24 05:49:37.000000000 -0500
+++ lbreakout2-2.6.1/configure.in 2009-12-30 15:43:54.432781208 -0500
@@ -80,8 +80,6 @@
[ --enable-netdebug Enable net packet debugging.], netdebug_flag="-DNET_DEBUG_MSG" )
AC_SUBST(netdebug_flag)
-dnl set localedir
-localedir=$datadir/locale
locdir_flag="-DLOCALEDIR=\\\"$localedir\\\""
dnl installation&highscore path
diff -ru lbreakout2-2.6.1.orig/docs/Makefile.am lbreakout2-2.6.1/docs/Makefile.am
--- lbreakout2-2.6.1.orig/docs/Makefile.am 2005-02-16 16:07:25.000000000 -0500
+++ lbreakout2-2.6.1/docs/Makefile.am 2009-12-30 15:44:55.780855338 -0500
@@ -7,11 +7,11 @@
warp.jpg screen.jpg
install-data-local:
- $(mkinstalldirs) $(DESTDIR)$(doc_dir)/lbreakout2
+ $(mkinstalldirs) $(DESTDIR)$(doc_dir)
@for file in *.jpg; do\
- $(INSTALL_DATA) $$file $(DESTDIR)$(doc_dir)/lbreakout2/$$file;\
+ $(INSTALL_DATA) $$file $(DESTDIR)$(doc_dir)/$$file;\
done
- $(INSTALL_DATA) index.html $(DESTDIR)$(doc_dir)/lbreakout2/index.html
+ $(INSTALL_DATA) index.html $(DESTDIR)$(doc_dir)/index.html
win32-install-script:
@for file in $(EXTRA_DIST); do \
diff -ru lbreakout2-2.6.1.orig/po/Makefile.in.in lbreakout2-2.6.1/po/Makefile.in.in
--- lbreakout2-2.6.1.orig/po/Makefile.in.in 2009-10-26 11:36:51.000000000 -0400
+++ lbreakout2-2.6.1/po/Makefile.in.in 2009-12-30 15:44:36.248781296 -0500
@@ -24,7 +24,7 @@
exec_prefix = @exec_prefix@
datadir = @datadir@
datarootdir = @datarootdir@
-localedir = $(datadir)/locale
+localedir = @localedir@
gettextsrcdir = $(datadir)/gettext/po
INSTALL = @INSTALL@
|