pkgsrc/devel/SDL_gfx/Makefile
wiz edec8224c8 Update to 2.0.22:
Ver 2.0.22 - Sat Sep 11 23:26:42 EDT 2010
* Fixed line width calculation for normal and textured polygons
  (patch contributed by Daniel (SupSuper)
* Fixed version setup in configure.in
* Added rounded rectangle and rounded box primitives
* Updated test program for roundedbox + left/right-click support
* Fixed pie calculation (line-case detection, end-angle clipping)
* Updated DLL_EXPORT handling and added WIN64 test
  (patch contributed by tigerfishdaisy)
* Added thick line primitive based on Murphy's algorithm
2010-09-12 21:54:26 +00:00

33 lines
871 B
Makefile

# $NetBSD: Makefile,v 1.36 2010/09/12 21:54:26 wiz Exp $
DISTNAME= SDL_gfx-2.0.22
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"