50c559f642
GNU libxmi is a C/C++ function library for rasterizing 2-D vector graphics. It can draw 2-D graphical primitives, including wide polygonal lines and circular and elliptical arcs, into a user-supplied matrix of pixels. Sophisticated line styles, such as multicolored dashing patterns, can be specified. There is also support for filling and texturing polygons.
29 lines
550 B
Makefile
29 lines
550 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/04/16 22:17:43 sthen Exp $
|
|
|
|
COMMENT = library for rasterizing 2-D vector graphics
|
|
|
|
DISTNAME = libxmi-1.2
|
|
|
|
SHARED_LIBS += xmi 0.0
|
|
|
|
CATEGORIES = graphics
|
|
|
|
HOMEPAGE = http://www.gnu.org/software/libxmi/
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB += m
|
|
|
|
MASTER_SITES = ${MASTER_SITE_GNU:=libxmi/}
|
|
|
|
SEPARATE_BUILD = concurrent
|
|
USE_LIBTOOL = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += ${CONFIGURE_SHARED}
|
|
|
|
.include <bsd.port.mk>
|