r11375 - in packages/trunk/3dchess/debian: . patches source

Paul Wise pabs at alioth.debian.org
Sat Sep 11 08:53:23 UTC 2010


Author: pabs
Date: 2010-09-11 08:53:18 +0000 (Sat, 11 Sep 2010)
New Revision: 11375

Added:
   packages/trunk/3dchess/debian/patches/01_fix_includes.patch
   packages/trunk/3dchess/debian/patches/05_Makefile.patch
   packages/trunk/3dchess/debian/patches/12_3Dc-rules.html.patch
   packages/trunk/3dchess/debian/patches/13_machine.h.patch
   packages/trunk/3dchess/debian/patches/series
   packages/trunk/3dchess/debian/source/
   packages/trunk/3dchess/debian/source/format
Removed:
   packages/trunk/3dchess/debian/README.source
   packages/trunk/3dchess/debian/patches/00list
   packages/trunk/3dchess/debian/patches/01_piece.c.dpatch
   packages/trunk/3dchess/debian/patches/02_engine.c.dpatch
   packages/trunk/3dchess/debian/patches/03_init.c.dpatch
   packages/trunk/3dchess/debian/patches/04_main.c.dpatch
   packages/trunk/3dchess/debian/patches/05_Makefile.dpatch
   packages/trunk/3dchess/debian/patches/06_stack.c.dpatch
   packages/trunk/3dchess/debian/patches/07_DrawingA.c.dpatch
   packages/trunk/3dchess/debian/patches/08_xif.c.dpatch
   packages/trunk/3dchess/debian/patches/09_xnet.c.dpatch
   packages/trunk/3dchess/debian/patches/10_callbaks.c.dpatch
   packages/trunk/3dchess/debian/patches/11_ai.c.dpatch
   packages/trunk/3dchess/debian/patches/12_3Dc-rules.html.dpatch
   packages/trunk/3dchess/debian/patches/13_machine.h.dpatch
Modified:
   packages/trunk/3dchess/debian/changelog
   packages/trunk/3dchess/debian/control
   packages/trunk/3dchess/debian/rules
Log:
Use new quilt format instead of dpatch and merge inc patches

Deleted: packages/trunk/3dchess/debian/README.source
===================================================================
--- packages/trunk/3dchess/debian/README.source	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/README.source	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,3 +0,0 @@
-This package uses dpatch for applying patches.
-
-Refer to /usr/share/doc/dpatch/README.source.gz for more information

Modified: packages/trunk/3dchess/debian/changelog
===================================================================
--- packages/trunk/3dchess/debian/changelog	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/changelog	2010-09-11 08:53:18 UTC (rev 11375)
@@ -2,6 +2,7 @@
 
   * Team upload.
   * Update package description to be more accurate (LP: #602662)
+  * Use new quilt format instead of dpatch and merge inc patches
 
  -- Paul Wise <pabs at debian.org>  Sat, 11 Sep 2010 16:04:40 +0800
 

Modified: packages/trunk/3dchess/debian/control
===================================================================
--- packages/trunk/3dchess/debian/control	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/control	2010-09-11 08:53:18 UTC (rev 11375)
@@ -4,7 +4,7 @@
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
 Uploaders: Barry deFreese <bdefreese at debian.org>
 Standards-Version: 3.8.0
-Build-Depends: debhelper (>= 5), xaw3dg-dev, libx11-dev, libxpm-dev, libxt-dev, x11proto-core-dev, libxaw7-dev, dpatch
+Build-Depends: debhelper (>= 5), xaw3dg-dev, libx11-dev, libxpm-dev, libxt-dev, x11proto-core-dev, libxaw7-dev
 Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/3dchess/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/3dchess/?op=log
 

Deleted: packages/trunk/3dchess/debian/patches/00list
===================================================================
--- packages/trunk/3dchess/debian/patches/00list	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/00list	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,13 +0,0 @@
-01_piece.c.dpatch
-02_engine.c.dpatch
-03_init.c.dpatch
-04_main.c.dpatch
-05_Makefile.dpatch
-06_stack.c.dpatch
-07_DrawingA.c.dpatch
-08_xif.c.dpatch
-09_xnet.c.dpatch
-10_callbaks.c.dpatch
-11_ai.c.dpatch
-12_3Dc-rules.html.dpatch
-13_machine.h.dpatch

Added: packages/trunk/3dchess/debian/patches/01_fix_includes.patch
===================================================================
--- packages/trunk/3dchess/debian/patches/01_fix_includes.patch	                        (rev 0)
+++ packages/trunk/3dchess/debian/patches/01_fix_includes.patch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -0,0 +1,137 @@
+Description: Fix path for include files
+--- a/src/piece.c
++++ b/src/piece.c
+@@ -26,8 +26,8 @@
+ */
+ 
+ #include <malloc.h>
+-#include "machine.h"
+-#include "3Dc.h"
++#include "../include/machine.h"
++#include "../include/3Dc.h"
+ 
+ #define PARAMS (Piece *, File, Rank, Level)
+ 
+--- a/src/engine.c
++++ b/src/engine.c
+@@ -28,8 +28,8 @@
+ #include <stdlib.h>
+ #include <limits.h>
+ 
+-#include "machine.h"
+-#include "3Dc.h"
++#include "../include/machine.h"
++#include "../include/3Dc.h"
+ 
+ /*
+  * Returns a pointer to any one piece of the specified colour threatening
+--- a/src/init.c
++++ b/src/init.c
+@@ -29,8 +29,8 @@
+ #include <stdlib.h>
+ #include <malloc.h>
+ #include <sys/time.h>
+-#include "machine.h"
+-#include "3Dc.h"
++#include "../include/machine.h"
++#include "../include/3Dc.h"
+ 
+ int n3DcErr;
+ Piece *SQUARE_EMPTY, *SQUARE_INVALID;
+--- a/src/main.c
++++ b/src/main.c
+@@ -28,9 +28,9 @@
+ #include <X11/X.h>
+ #include <X11/Intrinsic.h>
+ 
+-#include "machine.h"
++#include "../include/machine.h"
+ 
+-#include "3Dc.h"
++#include "../include/3Dc.h"
+ 
+ #define MAX_RETRIES 100 /* Number of times to guess a tricky move */
+ 
+--- a/src/stack.c
++++ b/src/stack.c
+@@ -28,9 +28,9 @@
+ #include <stdio.h>
+ #include <stdlib.h>
+ 
+-#include "machine.h"
+-#include "3Dc.h"
+-#include "3DcErr.h"
++#include "../include/machine.h"
++#include "../include/3Dc.h"
++#include "../include/3DcErr.h"
+ 
+ Global stack *
+ StackNew(void)
+--- a/src/DrawingA.c
++++ b/src/DrawingA.c
+@@ -12,7 +12,7 @@
+ #include <X11/StringDefs.h>
+ #include <X11/CoreP.h>
+ #include <X11/Xaw/SimpleP.h>
+-#include "DrawingAP.h"
++#include "../include/DrawingAP.h"
+ 
+ static void	Initialize();
+ static void	Destroy();
+--- a/src/xif.c
++++ b/src/xif.c
+@@ -42,9 +42,9 @@
+ #include "DrawingA.h"
+ 
+ #include <X11/xpm.h>
+-#include "pieces.xpm"
++#include "../include/pieces.xpm"
+ 
+-#include "3Dc.h"
++#include "../include/3Dc.h"
+ 
+ Local GfxInfo GFX1;
+ GfxInfo *firstGFX, *secondGFX;
+--- a/src/xnet.c
++++ b/src/xnet.c
+@@ -28,10 +28,10 @@
+ #include <sys/types.h>
+ #include <sys/time.h>
+ 
+-#include "machine.h"
++#include "../include/machine.h"
+ 
+ /* AutoInclude all necessary files */
+-#include "3Dc.h"
++#include "../include/3Dc.h"
+ #include <X11/Shell.h>
+ 
+ Local GfxInfo GFX2;
+--- a/src/callbaks.c
++++ b/src/callbaks.c
+@@ -41,9 +41,9 @@
+ 
+ #include <X11/xpm.h>
+ 
+-#include "local.h"
+-#include "machine.h"
+-#include "3Dc.h"
++#include "../include/local.h"
++#include "../include/machine.h"
++#include "../include/3Dc.h"
+ 
+ Local GfxInfo *
+ Widget2GfxInfo(Widget w)
+--- a/src/ai.c
++++ b/src/ai.c
+@@ -32,8 +32,8 @@
+ #include <limits.h>
+ #include <sys/time.h>
+ 
+-#include "machine.h"
+-#include "3Dc.h"
++#include "../include/machine.h"
++#include "../include/3Dc.h"
+ 
+ #ifndef MAX
+ #define MAX(a,b) ((a) < (b) ? (b) : (a))

Deleted: packages/trunk/3dchess/debian/patches/01_piece.c.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/01_piece.c.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/01_piece.c.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,18 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Fix path for include files
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/src/piece.c
-+++ 3dchess-0.8.1/src/piece.c
-@@ -26,8 +26,8 @@
- */
- 
- #include <malloc.h>
--#include "machine.h"
--#include "3Dc.h"
-+#include "../include/machine.h"
-+#include "../include/3Dc.h"
- 
- #define PARAMS (Piece *, File, Rank, Level)
- 

Deleted: packages/trunk/3dchess/debian/patches/02_engine.c.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/02_engine.c.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/02_engine.c.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,18 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Fix path for include files
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/src/engine.c
-+++ 3dchess-0.8.1/src/engine.c
-@@ -28,8 +28,8 @@
- #include <stdlib.h>
- #include <limits.h>
- 
--#include "machine.h"
--#include "3Dc.h"
-+#include "../include/machine.h"
-+#include "../include/3Dc.h"
- 
- /*
-  * Returns a pointer to any one piece of the specified colour threatening

Deleted: packages/trunk/3dchess/debian/patches/03_init.c.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/03_init.c.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/03_init.c.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,18 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Fix path for include files
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/src/init.c
-+++ 3dchess-0.8.1/src/init.c
-@@ -29,8 +29,8 @@
- #include <stdlib.h>
- #include <malloc.h>
- #include <sys/time.h>
--#include "machine.h"
--#include "3Dc.h"
-+#include "../include/machine.h"
-+#include "../include/3Dc.h"
- 
- int n3DcErr;
- Piece *SQUARE_EMPTY, *SQUARE_INVALID;

Deleted: packages/trunk/3dchess/debian/patches/04_main.c.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/04_main.c.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/04_main.c.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,19 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Fix path for include files
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/src/main.c
-+++ 3dchess-0.8.1/src/main.c
-@@ -28,9 +28,9 @@
- #include <X11/X.h>
- #include <X11/Intrinsic.h>
- 
--#include "machine.h"
-+#include "../include/machine.h"
- 
--#include "3Dc.h"
-+#include "../include/3Dc.h"
- 
- #define MAX_RETRIES 100 /* Number of times to guess a tricky move */
- 

Deleted: packages/trunk/3dchess/debian/patches/05_Makefile.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/05_Makefile.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/05_Makefile.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,24 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Fix bindir to /usr/games and remove 3Dc dir on clean
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/src/Makefile
-+++ 3dchess-0.8.1/src/Makefile
-@@ -3,7 +3,7 @@
- # put it in /usr/games or equivalent but I think that the lastability
- # of 3Dc is too small without proper AI.  Until the computer can
- # play properly, 3Dc remains a local installation.
--BINDIR=..
-+BINDIR=/usr/games
- 
- # The principle system configuration area.
- # Define -DHAVE_UNISTD_H if /usr/include/unistd.h exists
-@@ -73,6 +73,7 @@
- 	${RM} *.o *~ TAGS
- 	${RM} ../*~
- 	${RM} ../include/*~
-+	${RM} 3Dc
- 
- tags:
- 	${RM} TAGS

Copied: packages/trunk/3dchess/debian/patches/05_Makefile.patch (from rev 11372, packages/trunk/3dchess/debian/patches/05_Makefile.dpatch)
===================================================================
--- packages/trunk/3dchess/debian/patches/05_Makefile.patch	                        (rev 0)
+++ packages/trunk/3dchess/debian/patches/05_Makefile.patch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -0,0 +1,20 @@
+Description: Fix bindir to /usr/games and remove 3Dc dir on clean
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -3,7 +3,7 @@
+ # put it in /usr/games or equivalent but I think that the lastability
+ # of 3Dc is too small without proper AI.  Until the computer can
+ # play properly, 3Dc remains a local installation.
+-BINDIR=..
++BINDIR=/usr/games
+ 
+ # The principle system configuration area.
+ # Define -DHAVE_UNISTD_H if /usr/include/unistd.h exists
+@@ -73,6 +73,7 @@
+ 	${RM} *.o *~ TAGS
+ 	${RM} ../*~
+ 	${RM} ../include/*~
++	${RM} 3Dc
+ 
+ tags:
+ 	${RM} TAGS

Deleted: packages/trunk/3dchess/debian/patches/06_stack.c.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/06_stack.c.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/06_stack.c.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,20 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Fix path for include files
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/src/stack.c
-+++ 3dchess-0.8.1/src/stack.c
-@@ -28,9 +28,9 @@
- #include <stdio.h>
- #include <stdlib.h>
- 
--#include "machine.h"
--#include "3Dc.h"
--#include "3DcErr.h"
-+#include "../include/machine.h"
-+#include "../include/3Dc.h"
-+#include "../include/3DcErr.h"
- 
- Global stack *
- StackNew(void)

Deleted: packages/trunk/3dchess/debian/patches/07_DrawingA.c.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/07_DrawingA.c.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/07_DrawingA.c.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,16 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Fix path for include files
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/src/DrawingA.c
-+++ 3dchess-0.8.1/src/DrawingA.c
-@@ -12,7 +12,7 @@
- #include <X11/StringDefs.h>
- #include <X11/CoreP.h>
- #include <X11/Xaw/SimpleP.h>
--#include "DrawingAP.h"
-+#include "../include/DrawingAP.h"
- 
- static void	Initialize();
- static void	Destroy();

Deleted: packages/trunk/3dchess/debian/patches/08_xif.c.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/08_xif.c.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/08_xif.c.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,19 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Fix path for include files
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/src/xif.c
-+++ 3dchess-0.8.1/src/xif.c
-@@ -42,9 +42,9 @@
- #include "DrawingA.h"
- 
- #include <X11/xpm.h>
--#include "pieces.xpm"
-+#include "../include/pieces.xpm"
- 
--#include "3Dc.h"
-+#include "../include/3Dc.h"
- 
- Local GfxInfo GFX1;
- GfxInfo *firstGFX, *secondGFX;

Deleted: packages/trunk/3dchess/debian/patches/09_xnet.c.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/09_xnet.c.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/09_xnet.c.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,20 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Fix path for include files
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/src/xnet.c
-+++ 3dchess-0.8.1/src/xnet.c
-@@ -28,10 +28,10 @@
- #include <sys/types.h>
- #include <sys/time.h>
- 
--#include "machine.h"
-+#include "../include/machine.h"
- 
- /* AutoInclude all necessary files */
--#include "3Dc.h"
-+#include "../include/3Dc.h"
- #include <X11/Shell.h>
- 
- Local GfxInfo GFX2;

Deleted: packages/trunk/3dchess/debian/patches/10_callbaks.c.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/10_callbaks.c.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/10_callbaks.c.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,20 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Fix path for include files
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/src/callbaks.c
-+++ 3dchess-0.8.1/src/callbaks.c
-@@ -41,9 +41,9 @@
- 
- #include <X11/xpm.h>
- 
--#include "local.h"
--#include "machine.h"
--#include "3Dc.h"
-+#include "../include/local.h"
-+#include "../include/machine.h"
-+#include "../include/3Dc.h"
- 
- Local GfxInfo *
- Widget2GfxInfo(Widget w)

Deleted: packages/trunk/3dchess/debian/patches/11_ai.c.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/11_ai.c.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/11_ai.c.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,18 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Fix path for include files
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/src/ai.c
-+++ 3dchess-0.8.1/src/ai.c
-@@ -32,8 +32,8 @@
- #include <limits.h>
- #include <sys/time.h>
- 
--#include "machine.h"
--#include "3Dc.h"
-+#include "../include/machine.h"
-+#include "../include/3Dc.h"
- 
- #ifndef MAX
- #define MAX(a,b) ((a) < (b) ? (b) : (a))

Deleted: packages/trunk/3dchess/debian/patches/12_3Dc-rules.html.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/12_3Dc-rules.html.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/12_3Dc-rules.html.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,16 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Add closing bold tag
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/3Dc-rules.html
-+++ 3dchess-0.8.1/3Dc-rules.html
-@@ -37,7 +37,7 @@
- It's easier to imagine if you draw the boards, or if you hold one (real)
- chess board above another.  If you've got a head for coordinates, then
- you should realise that square <b>Yd4</b> is adjacent to <b>Xd4</b>,
--<b>Xd5, <b>Ze3</b>, <b>Zc4</b> and
-+<b>Xd5</b>, <b>Ze3</b>, <b>Zc4</b> and
- lots others.
- <p>
- 

Copied: packages/trunk/3dchess/debian/patches/12_3Dc-rules.html.patch (from rev 11372, packages/trunk/3dchess/debian/patches/12_3Dc-rules.html.dpatch)
===================================================================
--- packages/trunk/3dchess/debian/patches/12_3Dc-rules.html.patch	                        (rev 0)
+++ packages/trunk/3dchess/debian/patches/12_3Dc-rules.html.patch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -0,0 +1,12 @@
+Description: Add closing bold tag
+--- a/3Dc-rules.html
++++ b/3Dc-rules.html
+@@ -37,7 +37,7 @@
+ It's easier to imagine if you draw the boards, or if you hold one (real)
+ chess board above another.  If you've got a head for coordinates, then
+ you should realise that square <b>Yd4</b> is adjacent to <b>Xd4</b>,
+-<b>Xd5, <b>Ze3</b>, <b>Zc4</b> and
++<b>Xd5</b>, <b>Ze3</b>, <b>Zc4</b> and
+ lots others.
+ <p>
+ 

Deleted: packages/trunk/3dchess/debian/patches/13_machine.h.dpatch
===================================================================
--- packages/trunk/3dchess/debian/patches/13_machine.h.dpatch	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/patches/13_machine.h.dpatch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -1,19 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## DP: Remove check for ULIMIT and don't include
-
- at DPATCH@
-
---- 3dchess-0.8.1.orig/include/machine.h
-+++ 3dchess-0.8.1/include/machine.h
-@@ -31,9 +31,11 @@
- #include <unistd.h>
- #endif
- 
-+/*
- #ifdef HAVE_ULIMIT_H
- #include <ulimit.h>
- #endif
-+*/
- 
- #ifdef __alpha__
- #include <alloca.h>

Copied: packages/trunk/3dchess/debian/patches/13_machine.h.patch (from rev 11372, packages/trunk/3dchess/debian/patches/13_machine.h.dpatch)
===================================================================
--- packages/trunk/3dchess/debian/patches/13_machine.h.patch	                        (rev 0)
+++ packages/trunk/3dchess/debian/patches/13_machine.h.patch	2010-09-11 08:53:18 UTC (rev 11375)
@@ -0,0 +1,15 @@
+Description: Remove check for ULIMIT and don't include
+--- a/include/machine.h
++++ b/include/machine.h
+@@ -31,9 +31,11 @@
+ #include <unistd.h>
+ #endif
+ 
++/*
+ #ifdef HAVE_ULIMIT_H
+ #include <ulimit.h>
+ #endif
++*/
+ 
+ #ifdef __alpha__
+ #include <alloca.h>

Copied: packages/trunk/3dchess/debian/patches/series (from rev 11372, packages/trunk/3dchess/debian/patches/00list)
===================================================================
--- packages/trunk/3dchess/debian/patches/series	                        (rev 0)
+++ packages/trunk/3dchess/debian/patches/series	2010-09-11 08:53:18 UTC (rev 11375)
@@ -0,0 +1,4 @@
+01_fix_includes.patch
+05_Makefile.patch
+12_3Dc-rules.html.patch
+13_machine.h.patch

Modified: packages/trunk/3dchess/debian/rules
===================================================================
--- packages/trunk/3dchess/debian/rules	2010-09-11 08:18:35 UTC (rev 11374)
+++ packages/trunk/3dchess/debian/rules	2010-09-11 08:53:18 UTC (rev 11375)
@@ -9,8 +9,6 @@
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
 
-include /usr/share/dpatch/dpatch.make
-
 CFLAGS = -Wall -g
 
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
@@ -21,15 +19,14 @@
 
 
 build: build-stamp
-build-stamp: patch-stamp
+build-stamp:
 	dh_testdir
 
 	$(MAKE) -C `pwd`/src
 
 	touch build-stamp
 
-clean: clean1 unpatch
-clean1:
+clean:
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp configure-stamp
@@ -72,4 +69,4 @@
 	dh_builddeb
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install clean1 patch unpatch 
+.PHONY: build clean binary-indep binary-arch binary install

Added: packages/trunk/3dchess/debian/source/format
===================================================================
--- packages/trunk/3dchess/debian/source/format	                        (rev 0)
+++ packages/trunk/3dchess/debian/source/format	2010-09-11 08:53:18 UTC (rev 11375)
@@ -0,0 +1 @@
+3.0 (quilt)




More information about the Pkg-games-commits mailing list