~ubuntu-branches/ubuntu/raring/powermanga/raring

« back to all changes in this revision

Viewing changes to debian/patches/000_data_path.diff

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese, Cyril Brulebois, Barry deFreese
  • Date: 2009-11-13 14:28:30 UTC
  • mfrom: (3.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091113142830-k36l15k5qda01jy3
Tags: 0.90-dfsg-2
[ Cyril Brulebois ]
* Add missing context to the 020_copyright.diff patch, so as to prevent
  an FTBFS with the new “3.0 (quilt)” source package format, thanks to
  Raphaël Hertzog for the notice (Closes: #485021).

[ Barry deFreese ]
* Update my e-mail address.
* 005_link_libm.diff - Add -lm to LDFLAGS. (Closes: #556072).
* 030_manpage_typo.diff - Fix typo in manpage. (Closes: #455227).
* Update postinst to make powermanga setgid games. (Closes: #419572).
  + Thanks to Javier Fernández-Sanguino Peña for the fix.
* Add dversionmangle in watch file to remove -dfsg version.
* Add set -e to postrm.
* Clean the quilt dir on clean.
* Add README.source for quilt.
* Bump Standards Version to 3.8.3. (No changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Index: powermanga-0.80/Makefile.am
2
 
===================================================================
3
 
--- powermanga-0.80.orig/Makefile.am    2005-01-25 06:51:13.000000000 +0100
4
 
+++ powermanga-0.80/Makefile.am 2006-05-16 19:16:52.000000000 +0200
5
 
@@ -2,6 +2,6 @@
6
 
 SUBDIRS = src graphics sounds
7
 
 EXTRA_DIST = bootstrap
8
 
 
9
 
-pkgdatadir = $(mandir)
10
 
+pkgdatadir = $(mandir)/man6
11
 
 dist_pkgdata_DATA = powermanga.6
12
 
 
13
 
Index: powermanga-0.80/src/Makefile.am
14
 
===================================================================
15
 
--- powermanga-0.80.orig/src/Makefile.am        2006-04-09 10:17:39.000000000 +0200
16
 
+++ powermanga-0.80/src/Makefile.am     2006-05-16 19:17:35.000000000 +0200
17
 
@@ -1,10 +1,10 @@
18
 
 
19
 
 gamesdir = $(prefix)/games
20
 
-scoredir = /var/games
21
 
+scoredir = /var/games/powermanga
22
 
 score = powermanga.hi
23
 
 
24
 
 games_PROGRAMS = powermanga
25
 
-powermanga_SOURCES = $(SOURCES_MAIN) $(SOURCES_EXTRA)
26
 
+powermanga_SOURCES = $(SOURCES_MAIN) $(SOURCES_CPP) $(SOURCES_ASM)
27
 
 powermanga_CXXFLAGS = -DPREFIX=\"$(prefix)\" -DSCOREFILE=\"$(scoredir)/$(score)\" @XLIB_CFLAGS@ @SDL_CFLAGS@
28
 
 powermanga_LDADD = @XLIB_LIBS@ @SDL_LIBS@
29
 
 
30
 
@@ -19,9 +19,9 @@
31
 
        done
32
 
 
33
 
 if ASSEMBLY
34
 
-SOURCES_EXTRA = assembler.S assembler_opt.S assembler.h
35
 
+SOURCES_ASM = assembler.S assembler_opt.S assembler.h
36
 
 else
37
 
-SOURCES_EXTRA = gfxroutines.cpp gfxroutines.hpp
38
 
+SOURCES_CPP = gfxroutines.cpp gfxroutines.hpp
39
 
 endif
40
 
 
41
 
 SOURCES_MAIN = \