Codebase list pangzero / f060fbf
pangzero (1.1-1) unstable; urgency=low * New upstream release (Closes: #408307). * debian/control: + Build-depend on quilt for patch management. * debian/patches/100_rotozoom_calls.diff: + New patch to fix “uninitialized value in subroutine entry” errors (Closes: #407743, #408851). -- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Tue, 20 Feb 2007 14:20:20 +0100 Sam Hocevar 17 years ago
5 changed file(s) with 54 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 pangzero (1.1-1) unstable; urgency=low
1
2 * New upstream release (Closes: #408307).
3 * debian/control:
4 + Build-depend on quilt for patch management.
5 * debian/patches/100_rotozoom_calls.diff:
6 + New patch to fix “uninitialized value in subroutine entry” errors
7 (Closes: #407743, #408851).
8
9 -- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Tue, 20 Feb 2007 14:20:20 +0100
10
011 pangzero (0.17-1) unstable; urgency=low
112
213 * Initial release. Closes: #381631
11 Section: games
22 Priority: extra
33 Maintainer: Debian Games Team <pkg-games-devel@lists.alioth.debian.org>
4 Uploaders: Miriam Ruiz <little_miry@yahoo.es>
5 Build-Depends: debhelper (>= 5), autotools-dev, libsdl-perl
4 Uploaders: Miriam Ruiz <little_miry@yahoo.es>, Sam Hocevar (Debian packages) <sam+deb@zoy.org>
5 Build-Depends: debhelper (>= 5), quilt, autotools-dev, libsdl-perl
66 Standards-Version: 3.7.2
77
88 Package: pangzero
0 --- pangzero-1.1/bin/pangzero 2006-12-15 11:04:14 +0100
1 +++ pangzero 2007-02-10 15:59:53 +0100
2 @@ -2379,7 +2379,7 @@ sub RenderBorder {
3 -flags=>::SDL_SWSURFACE(), -width => 128, -height => 16, -depth => 32);
4 $srcrect1->x(16); $srcrect1->y(0); $srcrect1->width(128); $srcrect1->height(16);
5 $borderSurface->blit( $srcrect1, $zoom, new SDL::Rect );
6 - $::RotoZoomer->zoom( $zoom, $ScreenWidth / 128, 1);
7 + $::RotoZoomer->zoom( $zoom, $ScreenWidth / 128, 1, 0);
8 $dstrect->x(16); $dstrect->y(0);
9 $zoom->blit( 0, $targetSurface, $dstrect );
10
11 @@ -2388,7 +2388,7 @@ sub RenderBorder {
12 -flags=>::SDL_SWSURFACE(), -width => 16, -height => 128, -depth => 32);
13 $srcrect1->x(0); $srcrect1->y(16); $srcrect1->height(128); $srcrect1->width(16);
14 $borderSurface->blit( $srcrect1, $zoom, new SDL::Rect );
15 - $::RotoZoomer->zoom( $zoom, 1, $ScreenHeight / 128);
16 + $::RotoZoomer->zoom( $zoom, 1, $ScreenHeight / 128, 0);
17 $dstrect->x(0); $dstrect->y(16);
18 $zoom->blit( 0, $targetSurface, $dstrect );
19 }
20 @@ -2429,7 +2429,7 @@ sub RenderBorder {
21 -flags=>::SDL_SWSURFACE(), -width => 128, -height => 16, -depth => 32);
22 $srcrect1->x(16); $srcrect1->y(0); $srcrect1->width(128); $srcrect1->height(16);
23 $borderSurface->blit( $srcrect1, $zoom, new SDL::Rect );
24 - $::RotoZoomer->zoom( $zoom, $ScreenWidth / 128, 1);
25 + $::RotoZoomer->zoom( $zoom, $ScreenWidth / 128, 1, 0);
26 $dstrect->x(16); $dstrect->y(0);
27 $zoom->blit( 0, $targetSurface, $dstrect );
28
29 @@ -2438,7 +2438,7 @@ sub RenderBorder {
30 -flags=>::SDL_SWSURFACE(), -width => 16, -height => 128, -depth => 32);
31 $srcrect1->x(0); $srcrect1->y(16); $srcrect1->height(128); $srcrect1->width(16);
32 $borderSurface->blit( $srcrect1, $zoom, new SDL::Rect );
33 - $::RotoZoomer->zoom( $zoom, 1, $ScreenHeight / 128);
34 + $::RotoZoomer->zoom( $zoom, 1, $ScreenHeight / 128, 0);
35 $dstrect->x(0); $dstrect->y(16);
36 $zoom->blit( 0, $targetSurface, $dstrect );
37 }
0 100_rotozoom_patches.diff
1717
1818 config.status: configure
1919 dh_testdir
20 QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2
2021 ifneq "$(wildcard /usr/share/misc/config.sub)" ""
2122 cp -f /usr/share/misc/config.sub config.sub
2223 endif
4243 rm -f build-stamp
4344 -$(MAKE) distclean
4445 -rm -f config.sub config.guess config.log config.status
46 QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2
4547 dh_clean
4648
4749 install: build