Approved by: pkubaj (maintainer), adamw (mentor) Differential Revision: https://reviews.freebsd.org/D43276
74 lines
2.4 KiB
Makefile
74 lines
2.4 KiB
Makefile
PORTNAME= scribus
|
|
PORTVERSION= 1.5.8
|
|
PORTREVISION= 24
|
|
CATEGORIES= print editors
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}${PKGNAMESUFFIX}/${PORTVERSION}/ \
|
|
http://www.scribus.net/downloads/${PORTVERSION}/
|
|
PKGNAMESUFFIX= -devel
|
|
|
|
MAINTAINER= pkubaj@FreeBSD.org
|
|
COMMENT= Comprehensive desktop publishing program (development version)
|
|
WWW= https://www.scribus.net/
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= liblcms2.so:graphics/lcms2 \
|
|
libboost_thread.so:devel/boost-libs \
|
|
libhunspell-1.7.so:textproc/hunspell \
|
|
libcairo.so:graphics/cairo \
|
|
librevenge-0.0.so:textproc/librevenge \
|
|
libcups.so:print/cups \
|
|
libwpg-0.3.so:graphics/libwpg03 \
|
|
libcdr-0.1.so:graphics/libcdr01 \
|
|
libfreehand-0.1.so:graphics/libfreehand \
|
|
libpagemaker-0.0.so:print/libpagemaker \
|
|
libmspub-0.1.so:print/libmspub01 \
|
|
libvisio-0.1.so:textproc/libvisio01 \
|
|
libfreetype.so:print/freetype2 \
|
|
libtiff.so:graphics/tiff \
|
|
libpoppler.so:graphics/poppler \
|
|
libharfbuzz-icu.so:print/harfbuzz-icu \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libpodofo09.so:graphics/podofo09 \
|
|
libharfbuzz.so:print/harfbuzz \
|
|
libpng.so:graphics/png \
|
|
libicuuc.so:devel/icu \
|
|
libqxp-0.0.so:textproc/libqxp \
|
|
libzmf-0.0.so:graphics/libzmf
|
|
|
|
USES= cmake compiler:c++17-lang desktop-file-utils dos2unix gnome \
|
|
jpeg pkgconfig python qt:5 shared-mime-info tar:xz
|
|
USE_QT= buildtools:build core declarative gui linguisttools:build \
|
|
network opengl printsupport qmake:build widgets xml
|
|
DOS2UNIX_REGEX= .*\.(cpp|h|txt)
|
|
USE_GNOME= libxml2
|
|
|
|
CMAKE_ARGS+= -DWANT_HUNSPELL=YES \
|
|
-DWANT_CPP17=YES \
|
|
-DCMAKE_COLOR_MAKEFILE:BOOL=ON
|
|
|
|
CONFLICTS_INSTALL= scribus
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# Patch sources to force using include files installed by graphics/podofo09
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^[\t ]*#include/s|podofo/podofo.h|podofo09/podofo.h|' \
|
|
${WRKSRC}/scribus/plugins/import/ps/importps.cpp \
|
|
${WRKSRC}/scribus/plugins/import/ai/importai.cpp \
|
|
${WRKSRC}/scribus/imagedataloaders/scimgdataloader_pdf.cpp \
|
|
${WRKSRC}/scribus/pdflib_core.h \
|
|
${WRKSRC}/scribus/pdf_analyzer.h
|
|
.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 160
|
|
@${REINPLACE_CMD} -e 's|std::unary_function|std::__unary_function|' \
|
|
${WRKSRC}/scribus/desaxe/digester.cpp
|
|
.endif
|
|
|
|
post-install:
|
|
${LN} -sf ../share/icons/1_5_1/scribus.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
|
|
.include <bsd.port.post.mk>
|