forked from Lainports/freebsd-ports
Release 0.84.0:
core:
* Fix crash when converting from Unicode to ASCII-7
* Splash::scaleImageYdXu: Protect against crash if srcWidth is too big
* JBIG2Stream: fix potential crash in malformed documents
* JBIG2Stream: fix leak in reset() if called several times
* Internal code improvements
utils:
* pdfimages: Add error message if first page is larger then number of pages.
* pdfinfo: Improved paper size recognition
* pdfsig: Fix exit code when dumping signatures
* pdftocairo: Error out when even/odd selects 0 pages
* pdftohtml: Fix memory leak
* pdftoppm: Add an option to scale before rotate
* pdftoppm: Add -hide-annotations option
* pdftoppm: Error out when even/odd selects 0 pages
* pdftops: Improve -optimizecolorspace
qt5:
* Code cleanups
glib:
* Fix compiler warnings
Release 0.83.0
core:
* Improve when a file is recognized as Linearized
* Improve const-ness of the code
* Make code a bit more readable/maintanable
* Fix uninitialized memory uses in broken files
utils:
* pdffonts: Make code a bit more readable/maintanable
* pdftohtml: Make code a bit more readable/maintanable
qt5:
* Remove a bunch of unused internal functions
* trUtf8 -> tr (less warnings)
build system:
* make-glib-api-docs: switch to python3
PR: 243433
Exp-run by: antoine
46 lines
1.4 KiB
Makefile
46 lines
1.4 KiB
Makefile
# Created by: TAKATSU Tomonari <tota@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rabbit
|
|
PORTVERSION= 2.2.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= misc rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= tota@FreeBSD.org
|
|
COMMENT= RD-document-based presentation application
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE_GPLv2+ = ${WRKSRC}/GPL
|
|
|
|
RUN_DEPENDS= rubygem-coderay>=1.0.0:textproc/rubygem-coderay \
|
|
rubygem-faraday>0:www/rubygem-faraday \
|
|
rubygem-gdk_pixbuf2>=3.0.9:graphics/rubygem-gdk_pixbuf2 \
|
|
rubygem-gettext>=3.0.1:devel/rubygem-gettext \
|
|
rubygem-gio2>0:devel/rubygem-gio2 \
|
|
rubygem-gtk2>0:x11-toolkits/rubygem-gtk2 \
|
|
rubygem-hikidoc>0:textproc/rubygem-hikidoc \
|
|
rubygem-kramdown>0:textproc/rubygem-kramdown \
|
|
rubygem-nokogiri>0:textproc/rubygem-nokogiri \
|
|
rubygem-poppler>0:x11-toolkits/rubygem-poppler \
|
|
rubygem-rdtool>0:textproc/rubygem-rdtool \
|
|
rubygem-rouge>0:textproc/rubygem-rouge \
|
|
rubygem-rsvg2>0:graphics/rubygem-rsvg2 \
|
|
rubygem-rttool>0:textproc/rubygem-rttool
|
|
|
|
NO_ARCH= yes
|
|
USES= gem gettext
|
|
USE_RUBY= yes
|
|
PLIST_FILES= bin/rabbit bin/rabbirc bin/rabbit-command bin/rabbit-slide \
|
|
bin/rabbit-theme
|
|
|
|
OPTIONS_DEFINE= MIMETEX
|
|
MIMETEX_DESC= Run with mimetex
|
|
|
|
MIMETEX_RUN_DEPENDS= ${LOCALBASE}/www/mimetex/cgi-bin/mimetex.cgi:www/mimetex
|
|
|
|
post-patch-MIMETEX-on:
|
|
${REINPLACE_CMD} -e 's|"mimetex.cgi"|"${PREFIX}/www/mimetex/cgi-bin/mimetex.cgi"|' \
|
|
${WRKSRC}/lib/rabbit/parser/ext/tex.rb
|
|
|
|
.include <bsd.port.mk>
|