7afc71b552
================ Evince 2.24.1 ================ Bug fixes: * Disable toggle function of F5 when in presentation mode (#556162, Dave Neary) * Create a loading thumbnail for every different page size (#556264, Carlos Garcia Campos) * Fix several memory leaks (Carlos Garcia Campos) * Do not show bad titles like 'Microsoft Word' in the window title bar (#534684, Robin Sonefors and Nickolay V. Shmyrev) * Fix mailto links which were considered as http uris (#555801, Carlos Garcia Campos) * Fix launching external applications (#554500, Carlos Garcia Campos) * Other bugs fixed (#552382, #553369, #555134, Carlos Garcia Campos) Translation updates: * Ihar Hrachyshka (be@latin) * Adrian Guniš (cs) * Kenneth Nielsen (da) * Ivar Smolin (et) * Takeshi AIHANA (ja)
22 lines
603 B
Makefile
22 lines
603 B
Makefile
# $NetBSD: options.mk,v 1.1 2008/10/25 00:11:13 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.evince
|
|
PKG_SUPPORTED_OPTIONS= dvi djvu
|
|
PKG_SUGGESTED_OPTIONS= # none
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdvi)
|
|
CONFIGURE_ARGS+= --enable-dvi
|
|
#BUILD_DIRS= pdf dvi backend lib properties
|
|
# need shared libkpathsea
|
|
BUILDLINK_API_DEPENDS.teTeX-bin+= teTeX-bin>=3.0nb13
|
|
.include "../../print/teTeX3-bin/buildlink3.mk"
|
|
#.else
|
|
#BUILD_DIRS= pdf backend lib properties
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdjvu)
|
|
CONFIGURE_ARGS+= --enable-djvu
|
|
.include "../../graphics/djvulibre-lib/buildlink3.mk"
|
|
.endif
|