* updated config.sub to newer version * added custom RGBA blitter function that sets/maintains target alpha * added setAlpha function that sets alpha values in 32bit surfaces * added TextGfxBlit testprogram for new functions * Fixed C++ type in .h files (thanks Olivier) * Update some text in README and .spec file * Removed broken Uint filter routines from test program * "Cosmetic" changes to test programs and Automake.am
27 lines
755 B
Makefile
27 lines
755 B
Makefile
# $NetBSD: Makefile,v 1.29 2007/02/06 10:13:46 adam Exp $
|
|
|
|
DISTNAME= SDL_gfx-2.0.16
|
|
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
|
|
|
|
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/*.* ${PREFIX}/share/doc/SDL_gfx/
|
|
${INSTALL_DATA} ${WRKSRC}/Docs/Screenshots/* \
|
|
${PREFIX}/share/doc/SDL_gfx/Screenshots
|
|
|
|
.include "../../devel/SDL/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|