mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
99bd3bb02d
Release 0.89.0: core: * Add support for ResetForm action. Issue #225 * Fix crash in PDFDoc::getSignatureFields when there's no Forms at all * Fix exporting to PS of some files with CID fonts * Use ICC profiles in PS output (if new enough lcms is used) * Allow almost-singular tiling pattern matrices. Issue #894 * Fix memory leak when failing to load some fonts * CairoOutputDev: Use stroke opacity when clipping to a stroke path * CairoOutputDev: Fix tiling patterns when pattern cell is too far. Issue #190 glib: * Add poppler_movie_get_aspect cpp: * Add the font infos to the text_box object Exp-run by: antoine PR: 246848
79 lines
2.1 KiB
Makefile
79 lines
2.1 KiB
Makefile
# Created by: Jan Henrik Sylvester <me@janh.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xournal
|
|
PORTVERSION= 0.4.8.2016
|
|
PORTREVISION= 14
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= me@janh.de
|
|
COMMENT= Notetaking application that can annotate PDFs
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libpoppler-glib.so:graphics/poppler-glib \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2
|
|
|
|
USES= gnome pkgconfig desktop-file-utils shared-mime-info xorg
|
|
USE_GNOME= cairo libgnomecanvas
|
|
USE_XORG= x11
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --docdir="${DOCSDIR}"
|
|
INSTALLS_ICONS= yes
|
|
INSTALL_TARGET= install desktop-install
|
|
|
|
OPTIONS_DEFINE= GHOSTSCRIPT DOCS
|
|
GHOSTSCRIPT_DESC= Install ghostscript (PS/PDF as bitmap bg)
|
|
OPTIONS_DEFAULT= GHOSTSCRIPT
|
|
|
|
GHOSTSCRIPT_USES= ghostscript:run
|
|
MAKE_ENV+= DATADIR=${DATADIR}
|
|
|
|
PORTDOCS_MAIN= AUTHORS \
|
|
ChangeLog \
|
|
COPYING \
|
|
README
|
|
PORTDOCS= ${PORTDOCS_MAIN} \
|
|
html-doc/screenshot.png \
|
|
html-doc/manual.html \
|
|
html-doc/pixmaps/lightgreen.png \
|
|
html-doc/pixmaps/medium.png \
|
|
html-doc/pixmaps/ruler.png \
|
|
html-doc/pixmaps/green.png \
|
|
html-doc/pixmaps/magenta.png \
|
|
html-doc/pixmaps/default-pen.png \
|
|
html-doc/pixmaps/lasso.png \
|
|
html-doc/pixmaps/highlighter.png \
|
|
html-doc/pixmaps/red.png \
|
|
html-doc/pixmaps/hand.png \
|
|
html-doc/pixmaps/fullscreen.png \
|
|
html-doc/pixmaps/white.png \
|
|
html-doc/pixmaps/xoj.svg \
|
|
html-doc/pixmaps/pencil.png \
|
|
html-doc/pixmaps/rect-select.png \
|
|
html-doc/pixmaps/stretch.png \
|
|
html-doc/pixmaps/blue.png \
|
|
html-doc/pixmaps/lightblue.png \
|
|
html-doc/pixmaps/orange.png \
|
|
html-doc/pixmaps/yellow.png \
|
|
html-doc/pixmaps/gray.png \
|
|
html-doc/pixmaps/xournal.svg \
|
|
html-doc/pixmaps/xournal.png \
|
|
html-doc/pixmaps/thin.png \
|
|
html-doc/pixmaps/thick.png \
|
|
html-doc/pixmaps/eraser.png \
|
|
html-doc/pixmaps/recycled.png \
|
|
html-doc/pixmaps/shapes.png \
|
|
html-doc/pixmaps/black.png \
|
|
html-doc/pixmaps/text-tool.png
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS_MAIN:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/html-doc
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} html-doc/ ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|