88d9d97ff5
The SDL_gfx library evolved out of the SDL_gfxPrimitives code which provided basic drawing routines such as lines, circles or polygons, and SDL_rotozoom which implemented a interpolating rotozoomer for SDL surfaces.
33 lines
707 B
Makefile
33 lines
707 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/08/09 03:22:50 jolan Exp $
|
|
|
|
COMMENT= "primitives drawing/other support functions for SDL"
|
|
DISTNAME= SDL_gfx-2.0.8
|
|
PKGNAME= ${DISTNAME:L:S/_/-/}
|
|
CATEGORIES= devel graphics x11
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
HOMEPAGE= http://www.ferzkopp.net/Software/SDL_gfx-2.0/
|
|
|
|
MAINTAINER= Jolan Luff <jolan@openbsd.org>
|
|
|
|
# LGPL
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
|
|
USE_GMAKE= Yes
|
|
USE_X11= Yes
|
|
|
|
LIB_DEPENDS= SDL::devel/sdl
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include"
|
|
CONFIGURE_ARGS+=${CONFIGURE_SHARED}
|
|
|
|
.if ${MACHINE_ARCH} != "i386"
|
|
CONFIGURE_ARGS+=--disable-mmx
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|