2f973a2955
Release 21.04.0: core: * Hide symbols by default * TextSelectionDumper: fix word order for RTL text * Fix rendering of text in some files. Issue #1052 * Implement rendering of Masks of Image subtype. Issue #1058 * Forms: fix unclicking standalone form buttons. Issue #1034 glib: * Expose more fields from MediaRendition in PopplerMedia * Use stock glib macro to define boxed type * Remove incorrecly used volatile from enum type registration code qt5: * Fix crash in files with malformed signatures * Fix memory leak when QImage constructor "fails" qt6: * Fix crash in files with malformed signatures * Fix memory leak when QImage constructor "fails" utils: * pdfsig: New paragraph for "-sign" in manpage * pdfimages: Do not assert in "too big images". Issue #1061 build system: * Require cmake >= 3.10 * Require Qt 5 >= 5.9 * Require glib >= 2.56 * Require gtk 3 >= 3.22 * Require gdk-pixbuf >= 2.36 PR: poppler-21.04.0 Exp-run by: antoine
66 lines
2.1 KiB
Makefile
66 lines
2.1 KiB
Makefile
# Created by: Piotr Kubaj <pkubaj@anongoth.pl>
|
|
|
|
PORTNAME= scribus
|
|
PORTVERSION= 1.5.6.1
|
|
PORTREVISION= 4
|
|
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)
|
|
|
|
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 \
|
|
libpodofo.so:graphics/podofo \
|
|
libharfbuzz.so:print/harfbuzz \
|
|
libpng16.so:graphics/png \
|
|
libicuuc.so:devel/icu \
|
|
libqxp-0.0.so:textproc/libqxp \
|
|
libzmf-0.0.so:graphics/libzmf
|
|
|
|
USES= cmake compiler:gcc-c++11-lib desktop-file-utils dos2unix gnome \
|
|
jpeg pkgconfig python:3.6+ qt:5 shared-mime-info ssl 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
|
|
INSTALLS_ICONS= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ARGS+= -DWANT_HUNSPELL=YES -DCMAKE_COLOR_MAKEFILE:BOOL=ON
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${LN} -sf ../share/icons/1_5_1/scribus.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/man/de/man1 \
|
|
${STAGEDIR}${PREFIX}/man/pl/man1
|
|
${MV} ${STAGEDIR}${PREFIX}/share/man/de/man1/scribus.1 \
|
|
${STAGEDIR}${PREFIX}/man/de/man1/
|
|
${MV} ${STAGEDIR}${PREFIX}/share/man/man1/scribus.1 \
|
|
${STAGEDIR}${PREFIX}/man/man1/
|
|
${MV} ${STAGEDIR}${PREFIX}/share/man/pl/man1/scribus.1 \
|
|
${STAGEDIR}${PREFIX}/man/pl/man1/
|
|
|
|
.include <bsd.port.mk>
|