mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
a8713d15f4
- Enable `long double` C99 math usage - Switch 9.x back to building with GCC Changes: http://www.boost.org/users/history/ PR: 199601 Submitted by: Chen Xu, bapt, amdmi3, truckman (based on) Reviewed by: rakuco (kde) (earlier version) Exp-run by: antoine (3 tries), truckman (consumers only, earlier versions) Approved by: bapt (office)
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# Created by: alepulver
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pdfedit
|
|
PORTVERSION= 0.4.5
|
|
PORTREVISION= 4
|
|
CATEGORIES= editors
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= PDF document manipulating library
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \
|
|
libfreetype.so:print/freetype2 \
|
|
libpng16.so:graphics/png \
|
|
libt1.so:devel/t1lib
|
|
|
|
USES= gmake perl5 tar:bzip2
|
|
USE_PERL5= build
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-root-dir=${STAGEDIR} \
|
|
--with-ft-library=${LOCALBASE}/lib \
|
|
--with-ft-includes=${LOCALBASE}/include \
|
|
--with-t1-library=${LOCALBASE}/lib \
|
|
--with-t1-includes=${LOCALBASE}/include \
|
|
--with-parallel-make=off \
|
|
--disable-gui \
|
|
--enable-pdfedit-core-dev \
|
|
--enable-tools
|
|
INSTALL_TARGET= install install-tools
|
|
PORTDOCS= Changelog README AUTHORS
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_DEFAULT=DOCS
|
|
|
|
BROKEN_sparc64= Fails to configure: error: Could not link against boost_program_options
|
|
|
|
post-extract:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/AUTHORS ${WRKSRC}
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|