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)
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= texstudio
|
|
DISTVERSION= 2.12.16
|
|
PORTREVISION= 1
|
|
CATEGORIES= editors
|
|
|
|
MAINTAINER= rigoletto@FreeBSD.org
|
|
COMMENT= Integrated writing environment for LaTeX documents
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BROKEN_armv6= fails to compile: error: no member named mc_eip in __mcontext
|
|
|
|
LIB_DEPENDS= libhunspell-1.7.so:textproc/hunspell \
|
|
libpoppler.so:graphics/poppler \
|
|
libpoppler-qt5.so:graphics/poppler-qt5 \
|
|
libquazip5.so:archivers/quazip
|
|
|
|
USES= compiler:c++11-lang desktop-file-utils dos2unix \
|
|
ghostscript:run gl pkgconfig qmake qt:5
|
|
USE_QT = core gui network script svg widgets xml \
|
|
printsupport concurrent uitools buildtools_build
|
|
QMAKE_ARGS= QUAZIP_INCLUDE="${LOCALBASE}/include/quazip5" \
|
|
QUAZIP_LIB="-lquazip5"
|
|
QTVER_SUFFIX= 5
|
|
|
|
USE_XORG= x11
|
|
USE_GL= gl
|
|
USE_TEX= latex dvipsk
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ${PORTNAME}-org
|
|
|
|
DOS2UNIX_FILES= ${PORTNAME}.pro
|
|
|
|
QMAKE_ARGS+= USE_SYSTEM_HUNSPELL=true USE_SYSTEM_QUAZIP=true
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,^\(utilities.path =\).*,\1 ${DATADIR},' \
|
|
-e 's,/usr/include,${LOCALBASE}/include,g' \
|
|
-e 's,/usr/lib,${LOCALBASE}/lib,g' \
|
|
-e '/appdata.path/s,\/usr,${PREFIX},' \
|
|
${WRKSRC}/${PORTNAME}.pro
|
|
|
|
.include <bsd.port.mk>
|