29d2713a1f
Most Important Changes: * PDF/X-1a export. * The Barcode plug-in has been updated to reflect the latest changes in the underlying Barcode Writer in Pure PostScript (BWIPP). * The Autoquote script has been rewritten and enhanced. It now provides more options and adds thin spaces to French texts where appropriate. * A script to align images in frames has been added. * Full support of the OpenICC Directory Proposal (http://www.oyranos.org/wiki/index.php?title=OpenIccDirectoryProposal). * The handling of transparencies in Photoshop-generated TIFF files has been improved. * Page borders can now act as guides (and thus be used for snapping of items). * The CMYK color palette created by the Newspaper Association of America (NAA) for newspaper advertisements has been integrated into Scribus. * A new color palette for professional geographers has been added. * Export to various bitmap formats has been re-enabled on Mac OS X. * Several issues related to the user interface and canvas display have been resolved. * Adjustments for Windows 8.x. * An issue with the spellchecker, resulting in a crash, has been resolved. * Documentation and translation updates and improvements. For a complete list of changes see: http://bugs.scribus.net/view_all_bug_page.php?filter=99610
41 lines
1.4 KiB
Makefile
41 lines
1.4 KiB
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= scribus
|
|
PORTVERSION= 1.4.4
|
|
CATEGORIES= print editors
|
|
MASTER_SITES= SF \
|
|
http://www.scribus.net/downloads/${PORTVERSION}/
|
|
|
|
MAINTAINER= bsam@FreeBSD.org
|
|
COMMENT= Comprehensive desktop publishing program
|
|
|
|
LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \
|
|
liblcms.so:${PORTSDIR}/graphics/lcms \
|
|
libpng15.so:${PORTSDIR}/graphics/png \
|
|
libtiff.so:${PORTSDIR}/graphics/tiff \
|
|
libcups.so:${PORTSDIR}/print/cups-client \
|
|
libfreetype.so:${PORTSDIR}/print/freetype2 \
|
|
libpodofo.so:${PORTSDIR}/graphics/podofo \
|
|
libboost_thread.so:${PORTSDIR}/devel/boost-libs \
|
|
libhunspell-1.3.so:${PORTSDIR}/textproc/hunspell \
|
|
libcairo.so:${PORTSDIR}/graphics/cairo \
|
|
libhyphen.so:${PORTSDIR}/textproc/hyphen \
|
|
libexecinfo.so:${PORTSDIR}/devel/libexecinfo \
|
|
libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:${PORTSDIR}/x11-toolkits/py-tkinter \
|
|
${PYTHON_SITELIBDIR}/PIL/_imaging.so:${PORTSDIR}/graphics/py-imaging
|
|
|
|
USE_QT4= gui linguist_build moc_build qmake_build rcc_build uic_build xml network
|
|
USE_GNOME= libartlgpl2 libxml2
|
|
USE_GHOSTSCRIPT_RUN= yes
|
|
USE_PYTHON= yes
|
|
USES= cmake desktop-file-utils pkgconfig shared-mime-info tar:xz
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ARGS+= -DWANT_HUNSPELL=YES -Wno-ferror-limit
|
|
|
|
post-install:
|
|
${LN} -sf ${DATADIR}/icons/scribus.png ${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
|
|
.include <bsd.port.mk>
|