90a4ed701a
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
68 lines
1.7 KiB
Makefile
68 lines
1.7 KiB
Makefile
# Created by: Olivier Duchateau
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tumbler
|
|
PORTVERSION= 0.2.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= deskutils xfce
|
|
MASTER_SITES= XFCE
|
|
PKGNAMEPREFIX= xfce4-
|
|
DIST_SUBDIR= xfce4
|
|
|
|
MAINTAINER= xfce@FreeBSD.org
|
|
COMMENT= Thumbnail service for Xfce desktop
|
|
|
|
LICENSE= GPLv2+ LGPL20+
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_GPLv2+ = ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libpng.so:graphics/png
|
|
|
|
USES= gettext-tools gmake gnome libtool localbase:ldflags pathfix \
|
|
pkgconfig tar:bzip2 xfce
|
|
USE_GNOME= cairo gdkpixbuf2 glib20 intltool libgsf librsvg2
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
SUB_FILES= pkg-message
|
|
CONFIGURE_ARGS= --enable-xdg-cache \
|
|
--enable-pixbuf-thumbnailer \
|
|
--disable-gtk-doc-html \
|
|
--without-html-dir
|
|
|
|
OPTIONS_DEFINE= NLS FONTS JPEG FFMPEG POPPLER \
|
|
GSTREAMER ODF COVER
|
|
OPTIONS_DEFAULT= FONTS JPEG POPPLER GSTREAMER ODF
|
|
OPTIONS_SUB= yes
|
|
|
|
FONTS_DESC= Fonts thumbnailer plugin
|
|
COVER_DESC= Open Movie Database plugin (check pkg-message)
|
|
GSTREAMER_DESC= GStreamer thumbnailer plugin
|
|
|
|
COVER_CONFIGURE_ENABLE= cover-thumbnailer
|
|
COVER_LIB_DEPENDS= libcurl.so:ftp/curl
|
|
|
|
FFMPEG_CONFIGURE_ENABLE= ffmpeg-thumbnailer
|
|
FFMPEG_LIB_DEPENDS= libffmpegthumbnailer.so:multimedia/ffmpegthumbnailer
|
|
|
|
FONTS_CONFIGURE_ENABLE= font-thumbnailer
|
|
FONTS_LIB_DEPENDS= libfreetype.so:print/freetype2
|
|
|
|
GSTREAMER_CONFIGURE_ENABLE= gstreamer-thumbnailer
|
|
GSTREAMER_USE= gstreamer1=yes
|
|
|
|
JPEG_CONFIGURE_ENABLE= jpeg-thumbnailer
|
|
JPEG_LIB_DEPENDS= libexif.so:graphics/libexif
|
|
JPEG_USES= jpeg
|
|
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext-runtime
|
|
|
|
ODF_CONFIGURE_ENABLE= odf-thumbnailer
|
|
ODF_USE= gnome=libgsf
|
|
|
|
POPPLER_CONFIGURE_ENABLE= poppler-thumbnailer
|
|
POPPLER_LIB_DEPENDS= libpoppler-glib.so:graphics/poppler-glib
|
|
|
|
.include <bsd.port.mk>
|