freebsd-ports/graphics/inkscape/Makefile
Tobias C. Berner 1fb34516c1 Update poppler to 0.72
This update brings many changes
- the build system has switched to cmake
- some ports needed to be switched to use their bundled
  version of poppler:
  - print/tex-luatex (r487226)
  - print/tex-xetex (r487226)
  - editors/opeonffice-devel
- Qt4 support has been dropped
  - print/frescobaldi has been removed for this reason.
- most of the added patches can be removed with the next
  upgrade of the concerning port.

PR:		233452
Exp-run by:	antoine
Approved by:	gnome (kwm)
Differential Revision:	https://reviews.freebsd.org/D17456
2018-12-16 15:10:42 +00:00

89 lines
2.7 KiB
Makefile

# Created by: Alexander Nedotsukov <bland@FreeBSD.org>
# $FreeBSD$
PORTNAME= inkscape
PORTVERSION= 0.92.3
PORTREVISION= 7
CATEGORIES= graphics gnome
MASTER_SITES= https://inkscape.org/en/gallery/item/12187/
MAINTAINER= gnome@FreeBSD.org
COMMENT= Full featured open source SVG editor
LICENSE= GPLv2+ GPLv3+ LGPL21 MPL11
LICENSE_COMB= multi
LICENSE_FILE_GPLv2= ${WRKSRC}/GPL2.txt
LICENSE_FILE_GPLv3= ${WRKSRC}/GPL3.txt
LICENSE_FILE_LGPL21= ${WRKSRC}/LGPL2.1.txt
BUILD_DEPENDS= ${LOCALBASE}/include/boost/concept_check.hpp:devel/boost-libs
LIB_DEPENDS= libpopt.so:devel/popt \
libgc.so:devel/boehm-gc \
libgsl.so:math/gsl \
libgtkspell.so:textproc/gtkspell \
liblcms2.so:graphics/lcms2 \
libfribidi.so:converters/fribidi \
libaspell.so:textproc/aspell \
libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libpotrace.so:graphics/libpotrace \
libpng.so:graphics/png \
libMagick++-6.so:graphics/ImageMagick6
USES= compiler:c++11-lib cmake cpe desktop-file-utils gnome \
iconv:wchar_t jpeg pathfix pkgconfig python:2.7,build \
shebangfix tar:bzip2
USE_GNOME= gtkmm24 libxml2 libxslt
USE_XORG= x11
INSTALLS_ICONS= yes
CMAKE_ARGS+= -DWITH_GNOME_VFS:BOOL=NO
SHEBANG_FILES= cxxtest/cxxtestgen.pl share/extensions/*.p[lm] \
share/extensions/*.py share/extensions/genpofiles.sh \
fix-roff-punct
OPTIONS_DEFINE= POPPLER VISIO CDR DBUS WPG
OPTIONS_DEFAULT=POPPLER VISIO CDR WPG
OPTIONS_SUB= yes
CDR_DESC= Support for CorelDRAW diagrams
CDR_CMAKE_BOOL= WITH_LIBCDR
CDR_LIB_DEPENDS= librevenge-stream-0.0.so:textproc/librevenge \
libcdr-0.1.so:graphics/libcdr01
DBUS_CMAKE_BOOL= WITH_DBUS
DBUS_LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib \
libdbus-1.so:devel/dbus
#OPENMP_USES= compiler:openmp
#OPENMP_USES_OFF= compiler:c++11-lib
#OPENMP_CMAKE_BOOL= WITH_OPENMP
CMAKE_ARGS+= -DWITH_OPENMP:BOOL=NO
POPPLER_DESC= PDF preview rendering
POPPLER_CMAKE_BOOL= ENABLE_POPPLER ENABLE_POPPLER_CAIRO
POPPLER_LIB_DEPENDS= libpoppler.so:graphics/poppler \
libpoppler-glib.so:graphics/poppler-glib
VISIO_DESC= Support for Microsoft Visio diagrams
VISIO_CMAKE_BOOL= WITH_LIBVISIO
VISIO_LIB_DEPENDS= librevenge-stream-0.0.so:textproc/librevenge \
libvisio-0.1.so:textproc/libvisio01
WPG_DESC= Support for WordPerfect graphics
WPG_CMAKE_BOOL= WITH_LIBWPG
WPG_LIB_DEPENDS= libwpg-0.3.so:graphics/libwpg03
# temporary until the build works for the !NLS case
USES+= gettext
#NLS_CMAKE_BOOL= WITH_NLS
#NLS_USES= gettext
post-patch:
@${REINPLACE_CMD} -e 's|COMMAND python|COMMAND ${PYTHON_VERSION}|g' \
${WRKSRC}/share/*/CMakeLists.txt
# Obtained from Arch Linux
@${REINPLACE_CMD} -e 's|gTrue|true|g' -e 's|gFalse|false|g' -e 's|GBool|bool|g' \
${WRKSRC}/src/extension/internal/pdfinput/pdf-parser.*
.include <bsd.port.mk>