diff options
author | joerg <joerg@pkgsrc.org> | 2005-12-29 18:58:23 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-12-29 18:58:23 +0000 |
commit | 70a080d21b529a5479503bcc84b6918883ed29e9 (patch) | |
tree | 4f9669ab62ec42bca7be11f272e62a9760f006a7 /games | |
parent | d807d1a3b113f6d3a9e5e3c484b63432fdb3e343 (diff) | |
download | pkgsrc-70a080d21b529a5479503bcc84b6918883ed29e9.tar.gz |
This is GNU configure. Use ulong definition on DragonFly as well.
Diffstat (limited to 'games')
-rw-r--r-- | games/d2x/Makefile | 4 | ||||
-rw-r--r-- | games/d2x/distinfo | 3 | ||||
-rw-r--r-- | games/d2x/patches/patch-ab | 13 |
3 files changed, 17 insertions, 3 deletions
diff --git a/games/d2x/Makefile b/games/d2x/Makefile index ce24146dab8..f0564c5ab15 100644 --- a/games/d2x/Makefile +++ b/games/d2x/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2005/12/11 09:40:40 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2005/12/29 18:58:23 joerg Exp $ # DISTNAME= d2x-0.2.5 @@ -10,7 +10,7 @@ MAINTAINER= airhead@users.sourceforge.net HOMEPAGE= http://icculus.org/d2x/ COMMENT= Descent II port -HAS_CONFIGURE= yes +GNU_CONFIGURE= yes USE_TOOLS+= gmake D2X_DATA= ${PREFIX}/share/games/${PKGBASE} diff --git a/games/d2x/distinfo b/games/d2x/distinfo index 011d4f95ccb..4a1d1938d47 100644 --- a/games/d2x/distinfo +++ b/games/d2x/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.2 2005/02/23 23:11:56 agc Exp $ +$NetBSD: distinfo,v 1.3 2005/12/29 18:58:23 joerg Exp $ SHA1 (d2x-0.2.5.tar.gz) = b68c74fdc1f31a5ae32f6b27d7d3658e7e0dbdca RMD160 (d2x-0.2.5.tar.gz) = c27f16f52eaa7a3742cd7b50307bd747ab79c96f Size (d2x-0.2.5.tar.gz) = 2015249 bytes SHA1 (patch-aa) = c7b5790409851bea1637d0f2fc1a8d86924c4528 +SHA1 (patch-ab) = b59b2de4d60d98bec20117f085be06016ee03047 diff --git a/games/d2x/patches/patch-ab b/games/d2x/patches/patch-ab new file mode 100644 index 00000000000..5369e782004 --- /dev/null +++ b/games/d2x/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2005/12/29 18:58:23 joerg Exp $ + +--- include/pstypes.h.orig 2005-12-29 18:46:17.000000000 +0000 ++++ include/pstypes.h +@@ -23,7 +23,7 @@ typedef signed char byte; + + //define unsigned types; + typedef unsigned char ubyte; +-#ifndef __unix__ ++#if !defined(__unix__) || defined(__DragonFly__) + typedef unsigned short ushort; + typedef unsigned int uint; + typedef unsigned long ulong; |