40 lines
776 B
Makefile
Raw Normal View History

Update devel/zeal 0.2.1 => 0.3.1 OK abieber@ port changes: - add x11/qt5/qt5base dependency to LIB_DEPENDS - add Qt5Concurrent to WANTLIB (from qtbase) - mark USE_WXNEEDED = Yes (uses qt webkit) upstream changelog: ===== 0.3.1 ===== Fixed Issues: Fixed random crashing on application start and exit. (#595) Fixed web view hanging caused by URLs with no schema. (#532) Fixed docset removal on Windows. (#621) Fixed race condition (and warning) in docset removal logic. Fixed docset selection with Select All shortcut (usually Ctrl+A). ===== 0.3.0 ===== This releases contains a lot of bug fixes, as well as improvements to the UI and application performance. See the link above for the complete list of changes. The most interesting changes are listed below. New Features: Dedicated docset management UI available via Tools -> Docsets.... (#354) Added portable mode support. (#486) Search results now have two icons per item: docset and symbol type. New search term highlighting instead of the bold font. Tabs can be cloned with Ctrl+Alt+T. (#524) Remote resources can be open within the application. (#474) Added support for system style icons (FreeDesktop) if available. A new tab can set to open after currently selected one. Dropped support for --query command line parameter. Plugins should have switched to dash-plugin URL scheme by now. Users can invoke search by running zeal <query>. Improvements: A lot of search performance improvements! Implemented a short delay before starting a search to allow user to finish typing. Added tooltips for elided texts across the app (tabs, search results). Page Up/Page Down now work when search text box is focused. Splitters and tool bars do not override system styling. Splitters cannot be collapsed anymore. Updated symbol type icons and definitions. Main menu updated to be more browser-like. Show current page title in the window title. Better detection of another application instances. Fixed Issues: Fixed viewing of Android 7 docset. (#596) Fixed AppIndicator support with Cinnamon DE. (#487) Fixed many crashes in different situations. Ctrl+Shift+Tab now properly navigates through tabs backwards. (#518) Fixed filename corruption on Windows with non-Latin locale. (#508) Fixed docset list not updating on storage change. (#475) Known Issues: Under some circumstances Zeal crashes on exit or start. (#595 and #605 ) Due to performance optimisations ordering of search results became less relevant. (#603)
2017-02-08 10:50:21 +00:00
# qt5 webkit
USE_WXNEEDED = Yes
COMMENT = simple offline API documentation browser
V = 0.6.1
DISTNAME = zeal-${V}
REVISION = 1
CATEGORIES = devel
HOMEPAGE = https://zealdocs.org/
MAINTAINER = Adam Wolk <awolk@openbsd.org>
# GPLv3
PERMIT_PACKAGE = Yes
WANTLIB += ${COMPILER_LIBCXX} ICE Qt5Concurrent Qt5Core Qt5Gui
WANTLIB += Qt5Network Qt5WebKit Qt5WebKitWidgets Qt5Widgets Qt5X11Extras
WANTLIB += SM X11 Xext archive c m sqlite3 xcb xcb-keysyms
Update devel/zeal 0.2.1 => 0.3.1 OK abieber@ port changes: - add x11/qt5/qt5base dependency to LIB_DEPENDS - add Qt5Concurrent to WANTLIB (from qtbase) - mark USE_WXNEEDED = Yes (uses qt webkit) upstream changelog: ===== 0.3.1 ===== Fixed Issues: Fixed random crashing on application start and exit. (#595) Fixed web view hanging caused by URLs with no schema. (#532) Fixed docset removal on Windows. (#621) Fixed race condition (and warning) in docset removal logic. Fixed docset selection with Select All shortcut (usually Ctrl+A). ===== 0.3.0 ===== This releases contains a lot of bug fixes, as well as improvements to the UI and application performance. See the link above for the complete list of changes. The most interesting changes are listed below. New Features: Dedicated docset management UI available via Tools -> Docsets.... (#354) Added portable mode support. (#486) Search results now have two icons per item: docset and symbol type. New search term highlighting instead of the bold font. Tabs can be cloned with Ctrl+Alt+T. (#524) Remote resources can be open within the application. (#474) Added support for system style icons (FreeDesktop) if available. A new tab can set to open after currently selected one. Dropped support for --query command line parameter. Plugins should have switched to dash-plugin URL scheme by now. Users can invoke search by running zeal <query>. Improvements: A lot of search performance improvements! Implemented a short delay before starting a search to allow user to finish typing. Added tooltips for elided texts across the app (tabs, search results). Page Up/Page Down now work when search text box is focused. Splitters and tool bars do not override system styling. Splitters cannot be collapsed anymore. Updated symbol type icons and definitions. Main menu updated to be more browser-like. Show current page title in the window title. Better detection of another application instances. Fixed Issues: Fixed viewing of Android 7 docset. (#596) Fixed AppIndicator support with Cinnamon DE. (#487) Fixed many crashes in different situations. Ctrl+Shift+Tab now properly navigates through tabs backwards. (#518) Fixed filename corruption on Windows with non-Latin locale. (#508) Fixed docset list not updating on storage change. (#475) Known Issues: Under some circumstances Zeal crashes on exit or start. (#595 and #605 ) Due to performance optimisations ordering of search results became less relevant. (#603)
2017-02-08 10:50:21 +00:00
MASTER_SITES = https://github.com/zealdocs/zeal/releases/download/v${V}/
EXTRACT_SUFX = .tar.xz
MODULES = devel/kf5
RUN_DEPENDS += devel/desktop-file-utils \
x11/gtk+3,-guic
LIB_DEPENDS += archivers/libarchive \
databases/sqlite3 \
x11/qt5/qtwebkit \
x11/qt5/qtx11extras
NO_TEST = Yes
.include <bsd.port.mk>