9449a7dc56
FBReader is an e-book reader for various platforms. Main features: * Supported formats are * fb2 e-book format (style attributes are not supported yet). * HTML format (tables are not supported). * CHM format (tables are not supported). * plucker format (tables are not supported). * Palmdoc (aportis doc). * zTxt (Weasel format). * TCR (psion text) format. * RTF format (stylesheets and tables are not supported). * OEB format (css and tables are not supported). * OpenReader format (css and tables are not supported). * Non-DRM'ed mobipocket format (tables are not supported). * Plain text format. * Direct reading from tar, zip, gzip and bzip2 archives. (Multiple books in one archive are supported.) * Automatic library building. * Automatic language and character encoding detection is supported. * Automatically generated contents table. * Embedded images support. * Footnotes/hyperlinks support. * Position indicator. * Keeps the last open book and the last read positions for all opened books between runs. * List of last opened books. * Automatic hyphenations. * Text search. * Full-screen mode. * Screen rotation by 90, 180 and 270 degrees.
31 lines
725 B
Makefile
31 lines
725 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2009/01/18 17:39:37 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.fbreader
|
|
PKG_OPTIONS_REQUIRED_GROUPS= gui
|
|
PKG_OPTIONS_GROUP.gui= gtk2 # qt3 qt4 - untested
|
|
PKG_SUPPORTED_OPTIONS= debug
|
|
PKG_SUGGESTED_OPTIONS= gtk2
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
MAKE_ENV+= TARGET_STATUS=debug
|
|
.else
|
|
MAKE_ENV+= TARGET_STATUS=release
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mgtk2)
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
MAKE_ENV+= UI_TYPE=gtk
|
|
USE_TOOLS+= pkg-config
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mqt3)
|
|
.include "../../x11/qt3-libs/buildlink3.mk"
|
|
MAKE_ENV+= UI_TYPE=qt
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mqt4)
|
|
.include "../../x11/qt4-libs/buildlink3.mk"
|
|
MAKE_ENV+= UI_TYPE=qt4
|
|
.endif
|