~ubuntu-branches/ubuntu/quantal/gnurobbo/quantal

« back to all changes in this revision

Viewing changes to debian/patches/dejavu-font

  • Committer: Bazaar Package Importer
  • Author(s): Ansgar Burchardt, Ansgar Burchardt, Gonéri Le Bouder
  • Date: 2009-03-14 23:10:50 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090314231050-70zcgdcmp7177pql
Tags: 0.61-1
[ Ansgar Burchardt ]
* New Upstream Version (LP: #337089)
* Do not dump vm usage information
  + New patch: do-not-dump-vmusage.diff
* Update packaging for debhelper 7
* Update copyright information
* Update Vcs-* fields for the Git repository
* Bump Standards Version to 3.8.0
  + add debian/README.source
* Add watch file

[ Gonéri Le Bouder ]
* Do not install the LICENSE-font files 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Index: gnurobbo-0.57.1/Makefile.am
2
 
===================================================================
3
 
--- gnurobbo-0.57.1.orig/Makefile.am
4
 
+++ gnurobbo-0.57.1/Makefile.am
5
 
@@ -1,7 +1,7 @@
6
 
 bin_PROGRAMS = gnurobbo
7
 
 
8
 
 gnurobbo_SOURCES = game.c game.h board.c data_init.c
9
 
-EXTRA_DIST = levels.dat icons/icons.bmp robbo.ttf icons/ciphers.bmp icons/background.bmp
10
 
+EXTRA_DIST = levels.dat icons/icons.bmp icons/ciphers.bmp icons/background.bmp
11
 
 
12
 
 install-data-local:
13
 
        @$(NORMAL_INSTALL)
14
 
@@ -13,7 +13,6 @@
15
 
              fi \
16
 
            done \
17
 
        fi
18
 
-       $(INSTALL_DATA) robbo.ttf $(DESTDIR)$(pkgdatadir)
19
 
        $(INSTALL_DATA) levels.dat $(DESTDIR)$(pkgdatadir)
20
 
 
21
 
 dist-hook:
22
 
@@ -25,5 +24,4 @@
23
 
            fi \
24
 
          done \
25
 
        fi
26
 
-       cp -p robbo.ttf $(destdir)
27
 
        cp -p levels.dat $(destdir)
28
 
Index: gnurobbo-0.57.1/game.h
29
 
===================================================================
30
 
--- gnurobbo-0.57.1.orig/game.h
31
 
+++ gnurobbo-0.57.1/game.h
32
 
@@ -72,12 +72,12 @@
33
 
 #define BMP_ICONS (PACKAGE_DATA_DIR "pixmaps/icons.bmp")
34
 
 #define BMP_CIPHERS (PACKAGE_DATA_DIR "pixmaps/ciphers.bmp")
35
 
 #define BMP_BACKGROUND (PACKAGE_DATA_DIR "pixmaps/background.bmp")
36
 
-#define ROBBO_FONT (PACKAGE_DATA_DIR "robbo.ttf")
37
 
+#define ROBBO_FONT ("/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf")
38
 
 #define ROBBO_LEVELS (PACKAGE_DATA_DIR "levels.dat")
39
 
 #else
40
 
 #define BMP_ICONS "pixmaps/icons.bmp"
41
 
 #define BMP_CIPHERS "pixmaps/ciphers.bmp"
42
 
-#define ROBBO_FONT "robbo.ttf"
43
 
+#define ROBBO_FONT "/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf"
44
 
 #define ROBBO_LEVELS "levels.dat"
45
 
 #endif
46