Release 0.78.0: core: * Fix line annotation arrows for usage in dimensioning * Handle Ink annots without an InkList but with an AP * Fix typos preventing parsing of Movie start and duration * Fix crash on malformed files glib: * Add poppler_document_create_dests_tree() * Don't use the deprecated g_type_class_add_private() * Document the differences between render() and render_for_printing() * Fix introspection for poppler_document_new_from_data * Don't create PopplerInputStream with length 0. Issue #414 * Document G_IO_ERROR as a possible error condition * docs: Add index for API new in 0.78 build system: * Fixes cross compilation of gir in Void Linux * Add -Wshadow to the default warning flags * install pkg-config pc files if pkg-config is found PR: 238857 Exp-run by: antoine Approved by: gnome (kwm, implicit)
63 lines
1.8 KiB
Makefile
63 lines
1.8 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= krita
|
|
DISTVERSION= 4.2.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics kde
|
|
MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}
|
|
DIST_SUBDIR= KDE/${PORTNAME}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Sketching and painting program
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libImath.so:graphics/ilmbase \
|
|
libOpenColorIO.so:graphics/opencolorio \
|
|
libX11.so:x11/libX11 \
|
|
libboost_system.so:devel/boost-libs \
|
|
libfftw3.so:math/fftw3 \
|
|
libexiv2.so:graphics/exiv2 \
|
|
libcurl.so:ftp/curl \
|
|
libgif.so:graphics/giflib \
|
|
libgsl.so:math/gsl \
|
|
liblcms2.so:graphics/lcms2 \
|
|
libpng.so:graphics/png \
|
|
libpoppler.so:graphics/poppler \
|
|
libpoppler-qt5.so:graphics/poppler-qt5 \
|
|
libquazip5.so:archivers/quazip \
|
|
libraw.so:graphics/libraw \
|
|
libtiff.so:graphics/tiff \
|
|
libxcb.so:x11/libxcb \
|
|
libxcb-util.so:x11/xcb-util
|
|
|
|
# Disable ninja generator for now (with gmake), until the duplicate test targets are resolved upstream.
|
|
USES= cmake:noninja gmake compiler:c++11-lib desktop-file-utils \
|
|
eigen:3 gettext jpeg kde:5 pkgconfig python:3.4+ qt:5 \
|
|
shared-mime-info
|
|
USE_KDE= archive completion config coreaddons crash guiaddons i18n \
|
|
itemmodels itemviews kio service widgetsaddons windowsystem
|
|
USE_QT= concurrent core dbus declarative gui multimedia network printsupport \
|
|
svg testlib widgets x11extras xml \
|
|
buildtools_build qmake_build
|
|
USE_XORG= ice sm xcb xext xi
|
|
|
|
OPTIONS_DEFINE= GMIC OPENEXR
|
|
OPTIONS_DEFAULT= OPENEXR
|
|
OPTIONS_SUB= yes
|
|
|
|
GMIC_DESC= Depend on the G'Mic plugin #'
|
|
GMIC_RUN_DEPENDS= gmic_krita_qt:graphics/gmic-qt
|
|
|
|
OPENEXR_LIB_DEPENDS= libIlmImf.so:graphics/openexr
|
|
OPENEXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR
|
|
|
|
CONFLICTS_INSTALL= calligra-2*
|
|
|
|
PLIST_SUB= SHLIB_VER=18.0.0 \
|
|
SHLIB_SHVER=18
|
|
|
|
LDFLAGS= -lpthread
|
|
|
|
.include <bsd.port.mk>
|