pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/SDL_gfx Changes 2.0.15:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c9bfa9a79c62
branches:  trunk
changeset: 523406:c9bfa9a79c62
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun Jan 07 12:06:35 2007 +0000

description:
Changes 2.0.15:
* bugfixes in 32bit _putPixelAlpha/filledRectAlpha
* various bugfixes in return value generation and return
* lock font-surface before using it
* fix some breakage in non-MMX filter routines
* fix typo in TestABGR
* fix double buffer flipping in Tets programs
* fixed microversion in .h
* fixed texturePolygon inverted bug
* fixed wrong surface use in test 21 of TestRotozoom
* added pitch handling in font surface

Changes 2.0.14:
* added texturedPolygon routine to library
* changed iterator condition in aaellipse to add some overdraw to smooth circle
* added ShrinkImage routine to rotozoom code
* added TestABGR Test program
* improved TestImageFilter program
* changed .so versioning from .so.13.0.0 to .so.0.0.14
* added updated MacOSX ProjectBuilder file
* added info on MacOSX 10.3 build
* added mingw (on cygwin) makefile
* added Dev-Cpp makefile
* removed some unused variables from gfx and rotozoom code
* fixed a non-critical typecast mistake
* converted all C++ comments to C comments in SDL_imageFilter

diffstat:

 devel/SDL_gfx/Makefile      |  15 +++++++--------
 devel/SDL_gfx/PLIST         |  11 +++++------
 devel/SDL_gfx/buildlink3.mk |   4 ++--
 devel/SDL_gfx/distinfo      |   8 ++++----
 4 files changed, 18 insertions(+), 20 deletions(-)

diffs (94 lines):

diff -r 592e2eee2d1a -r c9bfa9a79c62 devel/SDL_gfx/Makefile
--- a/devel/SDL_gfx/Makefile    Sun Jan 07 12:03:59 2007 +0000
+++ b/devel/SDL_gfx/Makefile    Sun Jan 07 12:06:35 2007 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.27 2006/12/15 14:34:20 wiz Exp $
+# $NetBSD: Makefile,v 1.28 2007/01/07 12:06:35 adam Exp $
 
-DISTNAME=      SDL_gfx-2.0.13
-PKGREVISION=   4
+DISTNAME=      SDL_gfx-2.0.15
 CATEGORIES=    devel
 MASTER_SITES=  http://www.ferzkopp.net/Software/SDL_gfx-2.0/
 
@@ -10,16 +9,16 @@
 COMMENT=       Basic drawing routines for SDL
 
 USE_TOOLS+=            gmake
-USE_LIBTOOL=           YES
-GNU_CONFIGURE=         YES
-
+USE_LIBTOOL=           yes
+GNU_CONFIGURE=         yes
 .if (${MACHINE_ARCH} != "i386")
 CONFIGURE_ARGS+=       --disable-mmx
 .endif
 
+INSTALLATION_DIRS+=    share/doc/SDL_gfx
+INSTALLATION_DIRS+=    share/doc/SDL_gfx/Screenshots
+
 post-install:
-       ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/SDL_gfx/
-       ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/SDL_gfx/Screenshots
        ${INSTALL_DATA} ${WRKSRC}/Docs/*.* ${PREFIX}/share/doc/SDL_gfx/
        ${INSTALL_DATA} ${WRKSRC}/Docs/Screenshots/* \
                ${PREFIX}/share/doc/SDL_gfx/Screenshots
diff -r 592e2eee2d1a -r c9bfa9a79c62 devel/SDL_gfx/PLIST
--- a/devel/SDL_gfx/PLIST       Sun Jan 07 12:03:59 2007 +0000
+++ b/devel/SDL_gfx/PLIST       Sun Jan 07 12:06:35 2007 +0000
@@ -1,19 +1,18 @@
-@comment $NetBSD: PLIST,v 1.5 2005/10/23 16:03:10 rillig Exp $
+@comment $NetBSD: PLIST,v 1.6 2007/01/07 12:06:35 adam Exp $
 include/SDL/SDL_framerate.h
 include/SDL/SDL_gfxPrimitives.h
 include/SDL/SDL_gfxPrimitives_font.h
 include/SDL/SDL_imageFilter.h
 include/SDL/SDL_rotozoom.h
 lib/libSDL_gfx.la
+share/doc/SDL_gfx/Screenshots/SDL_gfxPrimitives-thumb.jpg
+share/doc/SDL_gfx/Screenshots/SDL_gfxPrimitives.jpg
+share/doc/SDL_gfx/Screenshots/SDL_rotozoom-thumb.jpg
+share/doc/SDL_gfx/Screenshots/SDL_rotozoom.jpg
 share/doc/SDL_gfx/blank.gif
 share/doc/SDL_gfx/framerate-thumb.png
 share/doc/SDL_gfx/framerate.fig
 share/doc/SDL_gfx/framerate.png
 share/doc/SDL_gfx/index.html
-share/doc/SDL_gfx/Screenshots/SDL_gfxPrimitives-thumb.jpg
-share/doc/SDL_gfx/Screenshots/SDL_gfxPrimitives.jpg
-share/doc/SDL_gfx/Screenshots/SDL_rotozoom-thumb.jpg
-share/doc/SDL_gfx/Screenshots/SDL_rotozoom.jpg
-share/doc/SDL_gfx/styles.css
 @dirrm share/doc/SDL_gfx/Screenshots
 @dirrm share/doc/SDL_gfx
diff -r 592e2eee2d1a -r c9bfa9a79c62 devel/SDL_gfx/buildlink3.mk
--- a/devel/SDL_gfx/buildlink3.mk       Sun Jan 07 12:03:59 2007 +0000
+++ b/devel/SDL_gfx/buildlink3.mk       Sun Jan 07 12:06:35 2007 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.9 2006/07/08 23:10:41 jlam Exp $
+# $NetBSD: buildlink3.mk,v 1.10 2007/01/07 12:06:35 adam Exp $
 
 BUILDLINK_DEPTH:=      ${BUILDLINK_DEPTH}+
 SDL_GFX_BUILDLINK3_MK:=        ${SDL_GFX_BUILDLINK3_MK}+
@@ -13,7 +13,7 @@
 
 .if !empty(SDL_GFX_BUILDLINK3_MK:M+)
 BUILDLINK_API_DEPENDS.SDL_gfx+=        SDL_gfx>=2.0.3nb2
-BUILDLINK_ABI_DEPENDS.SDL_gfx?=        SDL_gfx>=2.0.13nb4
+BUILDLINK_ABI_DEPENDS.SDL_gfx+=        SDL_gfx>=2.0.15
 BUILDLINK_PKGSRCDIR.SDL_gfx?=  ../../devel/SDL_gfx
 .endif # SDL_GFX_BUILDLINK3_MK
 
diff -r 592e2eee2d1a -r c9bfa9a79c62 devel/SDL_gfx/distinfo
--- a/devel/SDL_gfx/distinfo    Sun Jan 07 12:03:59 2007 +0000
+++ b/devel/SDL_gfx/distinfo    Sun Jan 07 12:06:35 2007 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.6 2005/02/23 22:24:08 agc Exp $
+$NetBSD: distinfo,v 1.7 2007/01/07 12:06:35 adam Exp $
 
-SHA1 (SDL_gfx-2.0.13.tar.gz) = 406c2aecec20961156338b7eba83963bc22a5287
-RMD160 (SDL_gfx-2.0.13.tar.gz) = 237510724dbcfe86163fa715a5b005588009b096
-Size (SDL_gfx-2.0.13.tar.gz) = 598297 bytes
+SHA1 (SDL_gfx-2.0.15.tar.gz) = ded4d1b02e96fc1d2fc044db6b455658fc3b3d33
+RMD160 (SDL_gfx-2.0.15.tar.gz) = 8b25c2606c951148dc6228d861c532cebe6fe84e
+Size (SDL_gfx-2.0.15.tar.gz) = 836131 bytes



Home | Main Index | Thread Index | Old Index