pkgsrc/devel/SDL_gfx/Makefile
wiz 27e68e95fc Update to 2.0.18:
Ver 2.0.18 - Sun Dec 21 08:38:20 PST 2008

* libtool update for dependencies
* MSVC C89 variable hoisting to enable MSVC compile (sweetlilmre)
* addition of VC9 (Visual Studio 2008) project file (sweetlilmre)
* update to MinGW make file (Sergio Padrino, sweetlilmre)
* fix uninitialised variables in _putPixelAlpha() (Paul Pedriana)
* reverted to original alpha routine in _putPixelAlpha() as new one was causing issues in 16bbp
  new routine #define has been renamed to EXPERIMENTAL_ALPHA_PIXEL_ROUTINE
  original is now DEFAULT_ALPHA_PIXEL_ROUTINE
* added colorkey handling patch to rotozoom (Sergio Padrino)
* downgraded optimization to -O for asm compatibility with gcc4


Ver 2.0.17 - Sun Jun  1 15:39:38 EDT 2008

* hline/vline clipping and swap-logic fixed
* clipping box dimension check added and clipping-checks optimized
* TestFonts program updated
* Updated documentation on cross-compilation, AMD64
* Fixed circleColor overdraw
* Added arcColor routine
* Added polygonColorMT and polygonTextureMT routines
* Updated 32bit alpha blending routine
2009-01-07 10:55:22 +00:00

30 lines
813 B
Makefile

# $NetBSD: Makefile,v 1.31 2009/01/07 10:55:22 wiz Exp $
DISTNAME= SDL_gfx-2.0.18
CATEGORIES= devel
MASTER_SITES= http://www.ferzkopp.net/Software/SDL_gfx-2.0/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.ferzkopp.net/Software/SDL_gfx-2.0/
COMMENT= Basic drawing routines for SDL
PKG_DESTDIR_SUPPORT= user-destdir
USE_TOOLS+= gmake
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} ${WRKSRC}/Docs/*.* \
${DESTDIR}${PREFIX}/share/doc/SDL_gfx/
${INSTALL_DATA} ${WRKSRC}/Docs/Screenshots/* \
${DESTDIR}${PREFIX}/share/doc/SDL_gfx/Screenshots
.include "../../devel/SDL/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"