QPDF is a command-line program that does structural, content-preserving transformations on PDF files. It could have been called something like pdf-to-pdf. It also provides many useful capabilities to developers of PDF-producing software or for people who just want to look at the innards of a PDF file to learn more about how they work. This will be needed by an update to cups-filters which I am working on. ok jasper@
37 lines
762 B
Makefile
Executable File
37 lines
762 B
Makefile
Executable File
# $OpenBSD: Makefile,v 1.1.1.1 2012/08/24 07:38:57 ajacoutot Exp $
|
|
|
|
COMMENT= PDF transformation and inspection utility
|
|
|
|
DISTNAME= qpdf-3.0.1
|
|
|
|
SHARED_LIBS += qpdf 0.0 # 8.2
|
|
|
|
CATEGORIES= print graphics
|
|
|
|
HOMEPAGE= http://qpdf.sourceforge.net/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# Artistic License 2.0
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += c m pcre stdc++ z
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qpdf/}
|
|
|
|
VMEM_WARNING= Yes
|
|
USE_LIBTOOL= Yes
|
|
USE_GMAKE= Yes
|
|
|
|
LIB_DEPENDS= devel/pcre
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
|
|
|
|
.include <bsd.port.mk>
|