~ubuntu-branches/ubuntu/maverick/xmame/maverick

« back to all changes in this revision

Viewing changes to debian/patches/01_use_system_expat.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Bruno Barrera C.
  • Date: 2004-09-03 18:52:25 UTC
  • Revision ID: james.westby@ubuntu.com-20040903185225-33pwteanu2cik84q
Tags: 0.86-1
* New Maintainer (closes: #268747)
* New Upstream Release (closes: #231567, #219222)
* README.Debian now indicates the executables names, and where the 
  roms should be configurated. (closes: #76889, #217325)
* Fixed manpage (No more warnings) (closes: #117084)
* Fixed the runtime error on unsupported architectures (closes: #155304)
* Fixed the the locations of the Cabinets (closes: #76194)
* Added watch file.
* Updated xmamerc with new options.
* Added new binary package: xmame-tools with useful tools
  from the xmame source distribution.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh -e
 
2
## 01-use_system_expat.dpatch by  <anarxia@gmx.net>
 
3
##
 
4
## All lines beginning with `## DP:' are a description of the patch.
 
5
## DP: Use system libexpat.
 
6
 
 
7
if [ $# -lt 1 ]; then
 
8
    echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
 
9
    exit 1
 
10
fi
 
11
 
 
12
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
 
13
patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}"
 
14
 
 
15
case "$1" in
 
16
    -patch) patch -p1 ${patch_opts} < $0;;
 
17
    -unpatch) patch -R -p1 ${patch_opts} < $0;;
 
18
    *)
 
19
        echo "`basename $0`: script expects -patch|-unpatch as argument" >&2
 
20
        exit 1;;
 
21
esac
 
22
 
 
23
exit 0
 
24
 
 
25
@DPATCH@
 
26
--- xmame/makefile.unix 2004-08-11 05:39:13.000000000 +0300
 
27
+++ xmame.nicos/makefile.unix   2004-08-14 05:00:56.000000000 +0300
 
28
@@ -456,7 +456,7 @@
 
29
 ###########################################################################
 
30
 
 
31
 # Uncomment next line to build expat as part of the build.
 
32
-BUILD_EXPAT = 1
 
33
+# BUILD_EXPAT = 1
 
34
 
 
35
 # Uncomment next line to build zlib as part of the build.
 
36
 # BUILD_ZLIB = 1