46 lines
1.0 KiB
Makefile
46 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.10 2010/11/20 09:48:39 espie Exp $
|
|
|
|
# libgs from ghostscript is only provided on shared libs archs
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= library for rendering Postscript documents
|
|
|
|
DISTNAME= libspectre-0.2.6
|
|
CATEGORIES= print
|
|
|
|
SHARED_LIBS= spectre 0.1 # .2.4
|
|
|
|
HOMEPAGE= http://libspectre.freedesktop.org/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.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= ghostscript-*-!no_x11:print/ghostscript/gnu
|
|
WANTLIB = gs>=11
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib -pthread"
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--disable-silent-rules
|
|
|
|
.ifdef DEBUG
|
|
BUILD_DEPENDS+= graphics/cairo
|
|
CONFIGURE_ARGS+=--enable-test
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-test
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|