104a083fec
* bugfixes and enhancements ok ajacoutot@
42 lines
958 B
Makefile
42 lines
958 B
Makefile
# $OpenBSD: Makefile,v 1.5 2009/10/25 16:01:09 jasper Exp $
|
|
|
|
# libgs from ghostscript is only provided on shared libs archs
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= library for rendering Postscript documents
|
|
|
|
DISTNAME= libspectre-0.2.3
|
|
CATEGORIES= print
|
|
|
|
SHARED_LIBS= spectre 0.1 # .2.3
|
|
|
|
HOMEPAGE= http://libspectre.freedesktop.org/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/releases/
|
|
|
|
# we want the 'display' device from ghostscript, which is not available
|
|
# in the no_x11 FLAVOR
|
|
LIB_DEPENDS= gs.>=11:ghostscript-*-!no_x11:print/ghostscript/gnu
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib -pthread"
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
|
|
.ifdef DEBUG
|
|
BUILD_DEPENDS+= ::graphics/cairo
|
|
CONFIGURE_ARGS+=--enable-test
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-test
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|