440cb2d1df
Currently supported output targets include the X Window System, and image buffers. Other backends include OpenGL (through glitz), PostScript and PDF file output. From Eric Faurot
37 lines
798 B
Makefile
37 lines
798 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/09/11 05:05:11 marcm Exp $
|
|
|
|
COMMENT= "vector graphics library"
|
|
|
|
DISTNAME= cairo-1.0.0
|
|
CATEGORIES= graphics
|
|
|
|
HOMEPAGE= http://cairographics.org/introduction
|
|
|
|
MAINTAINER= Eric Faurot <eric.faurot@gmail.com>
|
|
|
|
WANTLIB= X11 Xext Xrender freetype fontconfig m z
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://cairographics.org/releases/
|
|
|
|
USE_X11= Yes
|
|
USE_LIBTOOL= Yes
|
|
|
|
BUILD_DEPENDS+= :pkgconfig-*:devel/pkgconfig
|
|
|
|
LIB_DEPENDS= png::graphics/png \
|
|
glitz::graphics/glitz
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ENV= PKG_CONFIG_PATH="${X11BASE}/lib/pkgconfig"
|
|
CONFIGURE_ARGS+= --enable-ps
|
|
CONFIGURE_ARGS+= --enable-pdf
|
|
CONFIGURE_ARGS+= --enable-glitz
|
|
|
|
.include <bsd.port.mk>
|