655fcbcb58
Ver 2.0.23 - Sat Dec 3 22:55:04 PST 2011 * Updated sources to resolve some splint (static code analysis) issues * Updates for OpenSDK (WinCE6/ARM) build target (patch contributed itsnotabigtruck) * Added OSX Xcode3+ template files to Other Builds collection (contributed by Vasyl) * Added various fixes and improvements contributed by folks on sourceforge (thanks contributors). * Switched library and test code to zlib license.
33 lines
862 B
Makefile
33 lines
862 B
Makefile
# $NetBSD: Makefile,v 1.37 2012/01/28 13:58:25 wiz Exp $
|
|
|
|
DISTNAME= SDL_gfx-2.0.23
|
|
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= zlib
|
|
|
|
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"
|