FreeBSD Bugzilla – Attachment 145605 Details for
Bug 192546
[stage] games/xpacman update to 1.002
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
xpacman.patch
xpacman.patch (text/plain), 5.33 KB, created by
Vladimir Kondratyev
on 2014-08-10 07:57:15 UTC
(
hide
)
Description:
xpacman.patch
Filename:
MIME Type:
Creator:
Vladimir Kondratyev
Created:
2014-08-10 07:57:15 UTC
Size:
5.33 KB
patch
obsolete
>Index: games/xpacman/Makefile >=================================================================== >--- games/xpacman/Makefile (revision 364398) >+++ games/xpacman/Makefile (working copy) >@@ -2,20 +2,23 @@ > # $FreeBSD$ > > PORTNAME= xpacman >-PORTVERSION= 1.0 >-PORTREVISION= 3 >+PORTVERSION= 1.002 > CATEGORIES= games > MASTER_SITES= ftp://ftp.nvg.unit.no/pub/pacman/ >-DISTNAME= pacman10 >+DISTNAME= pacman-1_002 > > MAINTAINER= ports@FreeBSD.org > COMMENT= Old action game > >-NO_WRKSUBDIR= Does not unpack into subdir. >-USES= imake zip >+LICENSE= GPLv2 >+ >+RUN_DEPENDS+= ${LOCALBASE}/lib/X11/fonts/misc/9x18.pcf.gz:${PORTSDIR}/x11-fonts/font-misc-misc >+ >+GNU_CONFIGURE= yes >+CONFIGURE_ARGS+=--enable-doublesize >+CPPFLAGS+= -I${LOCALBASE}/include >+LDFLAGS+= -L${LOCALBASE}/lib > USE_XORG= x11 xext >-MAN1= pacman.1 > PLIST_FILES= bin/pacman > >-NO_STAGE= yes > .include <bsd.port.mk> >Index: games/xpacman/distinfo >=================================================================== >--- games/xpacman/distinfo (revision 364398) >+++ games/xpacman/distinfo (working copy) >@@ -1,2 +1,2 @@ >-SHA256 (pacman10.zip) = 6614635a5fbc3455772e62f4719ea3de5daad56ae2cbcb1564d57246d58c4cfd >-SIZE (pacman10.zip) = 64523 >+SHA256 (pacman-1_002.tar.gz) = c033268ab520937c867a8ff6f989a4dbe5d4bd38c23191db29ec39d8e807d622 >+SIZE (pacman-1_002.tar.gz) = 86822 >Index: games/xpacman/files/patch-a >=================================================================== >--- games/xpacman/files/patch-a (revision 364398) >+++ games/xpacman/files/patch-a (working copy) >@@ -1,12 +0,0 @@ >---- Imakefile.orig Sun Sep 8 13:55:25 2002 >-+++ Imakefile Sun Sep 8 13:55:59 2002 >-@@ -23,7 +23,8 @@ >- /* most X11 screens are rather large, you might wisht to use "double" mode */ >- CXXEXTRA_DEFINES = -DDOUBLE >- >--NormalProgramTarget(pacman,$(OBJS),$(DEPXLIB),$(CURSES),$(XLIB)) >-+NormalCplusplusProgramTarget(pacman,$(OBJS),$(DEPXLIB),$(CURSES),$(XLIB)) >- InstallProgram(pacman,$(BINDIR)) >- InstallManPage(pacman,$(MANDIR)) >-+AllTarget(pacman) >- DependTarget() >Index: games/xpacman/files/patch-board.cc >=================================================================== >--- games/xpacman/files/patch-board.cc (revision 364398) >+++ games/xpacman/files/patch-board.cc (working copy) >@@ -1,15 +1,6 @@ > --- board.cc.orig Tue Jul 18 11:03:22 1995 > +++ board.cc Mon Mar 10 20:52:04 2008 >-@@ -119,7 +119,7 @@ >- oldtemp=oldlist; >- while (oldtemp) { //delete elements in the now previous sprite list >- oldnext=oldtemp->next; >-- delete oldnext; >-+ delete oldtemp; >- oldtemp=oldnext; >- } >- if (zero && oldlist) { //personal thingie used for debug, not useful >-@@ -157,6 +157,7 @@ >+@@ -527,6 +527,7 @@ > void Board::sprite(DynamicElement *g) { //let dynamicelement be a sprite > liststruct *temp=0,*last=0; //resets to null > liststruct *ny=new liststruct; //get a new liststruct >Index: games/xpacman/files/patch-f >=================================================================== >--- games/xpacman/files/patch-f (revision 364398) >+++ games/xpacman/files/patch-f (working copy) >@@ -2,9 +2,10 @@ > +++ point.cc Sun Jan 9 01:51:34 2000 > @@ -1,7 +1,7 @@ > #include"point.h" >- Point::Point(int xx=0,int yy=0) { x=xx; y=yy; }; >+-Point::Point(int xx=0,int yy=0) { x=xx; y=yy; }; > -Point::val_x() { return x; }; > -Point::val_y() { return y; }; >++Point::Point(int xx,int yy) { x=xx; y=yy; }; > +int Point::val_x() { return x; }; > +int Point::val_y() { return y; }; > void Point::set_x(int xx) { x=xx; }; >Index: games/xpacman/files/patch-pac.cc >=================================================================== >--- games/xpacman/files/patch-pac.cc (revision 0) >+++ games/xpacman/files/patch-pac.cc (working copy) >@@ -0,0 +1,11 @@ >+--- pac.cc.orig 1995-07-20 16:59:35.000000000 +0400 >++++ pac.cc 2014-08-09 11:48:00.762643451 +0400 >+@@ -82,7 +82,7 @@ >+ UserInterface::setlpCmdLine(lpCmdLine); >+ UserInterface::setnCmdShow(nCmdShow); >+ #else >+-main(int argc,char **argv) { >++int main(int argc,char **argv) { >+ Argument(argc, argv); // storing the command line arguments >+ #endif >+ > >Property changes on: games/xpacman/files/patch-pac.cc >___________________________________________________________________ >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Index: games/xpacman/files/patch-sizes.h >=================================================================== >--- games/xpacman/files/patch-sizes.h (revision 0) >+++ games/xpacman/files/patch-sizes.h (working copy) >@@ -0,0 +1,17 @@ >+--- sizes.h.orig 1995-07-13 16:14:05.000000000 +0400 >++++ sizes.h 2014-08-09 11:16:01.638794330 +0400 >+@@ -21,12 +21,12 @@ >+ #ifndef DOUBLE >+ #define TEXTWIDTH 8 >+ #define TEXTHEIGHT 8 >+-#define FONT1 "5x8" >++#define FONT1 "-misc-fixed-*-r-*-*-8-*-*-*-*-*-*-*" >+ #define FONT2 "5x7" >+ #else >+ #define TEXTWIDTH 8 >+ #define TEXTHEIGHT 16 >+-#define FONT1 "8x16" >++#define FONT1 "-misc-fixed-*-r-*-*-18-*-*-*-*-*-*-*" >+ #define FONT2 "7x14" >+ #endif >+ //#define PFONT "clR6x8.fb"/*clR8x8" "6x10"*/ > >Property changes on: games/xpacman/files/patch-sizes.h >___________________________________________________________________ >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 192546
: 145605