freebsd-ports/www/otter-browser/Makefile
Adriaan de Groot af10b61a08 Update otter-browser to a snapshot.
The last official release was 1.0.01 in january 2019, way too long
ago for a web browser. Many Linux distro's also offer weekly
snapshots of this browser (often calling it 1.0.81). Instead,
bump to a different fake release number; I'm concerned that
1.0.81 might be too high.

Fixes in the tree relate to both QtWebKit and QtWebEngine compatibility,
as well as Qt 5.13 compatibility.

Initial patch by George; I bumped to a different (newer) revision in week 300.

PR:		239203
Reported by:	George
2019-10-12 12:56:41 +00:00

43 lines
1.1 KiB
Makefile

# $FreeBSD$
PORTNAME= otter-browser
DISTVERSIONPREFIX= v
# Latest upstream release is 1.0.01, this is "after 1.0.01 but before
# whatever comes next".
# DISTVERSION= 1.0.01
PORTVERSION= 1.0.01.1
CATEGORIES= www
MAINTAINER= kde@FreeBSD.org
COMMENT= Browser based on Qt 5
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libhunspell-1.7.so:textproc/hunspell
USES= cmake compiler:c++11-lib desktop-file-utils qt:5
USE_QT= concurrent core dbus declarative gui multimedia network printsupport \
script sql sql-sqlite3 svg widgets xmlpatterns \
buildtools_build qmake_build
USE_GITHUB= yes
GH_ACCOUNT= OtterBrowser
GH_TAGNAME= 22de58d
OPTIONS_MULTI= BACKEND
OPTIONS_MULTI_BACKEND= QTWEBENGINE QTWEBKIT
OPTIONS_DEFAULT= QTWEBKIT
OPTIONS_DEFAULT_amd64= QTWEBENGINE
OPTIONS_DEFAULT_i386= QTWEBENGINE
QTWEBENGINE_DESC= Build QtWebEngine backend
QTWEBKIT_DESC= Build QtWebKit backend
QTWEBENGINE_USE= qt=declarative,location,webchannel,webengine
QTWEBENGINE_CMAKE_BOOL= ENABLE_QTWEBENGINE
QTWEBKIT_USE= qt=webkit
QTWEBKIT_CMAKE_BOOL= ENABLE_QTWEBKIT
.include <bsd.port.mk>