* Add VC9 project files, source code formatting, fix compiler warnings, move VC8 project files, remove leftover autoconf/m4 files * Move static transfer lookup array from .h to .c (patch contributed by Zbigniew Holdys) * Add support for VC++ compiler/MASM assembly with active USE_MMX (contributed by Markus Hossner) * Added Haiku build support in configure.in (contributed by Scott McCreary) * Added helper function that multiplies the alpha channel in a 32bit surface (contributed by Zbigniew Holdys) * Disable MMX for 64bit platforms due to lack of support for pusha/popa (contributed by Olivier Boudeville) * Update all library functions for doxygen markup. Add doxygen configuration file. * Added font rotation support and updated TestFonts sample * Fixed rotate90 for 0 degree case (contributed by Chris Allport) * Updated TestRotozoom with rotate90 case and message display * Added support for SDL 1.3 * Added doxygen generated documentation.
33 lines
872 B
Makefile
33 lines
872 B
Makefile
# $NetBSD: Makefile,v 1.35 2010/06/01 10:59:55 adam Exp $
|
|
|
|
DISTNAME= SDL_gfx-2.0.21
|
|
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
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= gmake
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
PKGCONFIG_OVERRIDE= SDL_gfx.pc.in
|
|
|
|
.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"
|