freebsd-ports/www/otter-browser/Makefile
Felix Palmen ddae4e92d8 Mk/Uses: always use colon for build/run suffix
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.

Document in CHANGES.

PR:			266034
Exp-run by:		antoine
Approved by:		tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D36349
2022-09-11 12:20:14 +02:00

48 lines
1.4 KiB
Makefile

PORTNAME= otter-browser
DISTVERSIONPREFIX= v
# Occasionally otter-browser is updated to intermediate commits;
# releases are rather infrequent. To update to an intermediate:
# - Make up a PORTVERSION that resembles the DISTVERSION, add a
# .tweak number to it, comment-out DISTVERSION
# - Set a GH_TAG to the intermediate commit (below)
# - Add a comment here to indicate that the intermediate is
# intentional
#
# PORTVERSION= 1.0.01.1
DISTVERSION= 1.0.03
CATEGORIES= www
MAINTAINER= kde@FreeBSD.org
COMMENT= Browser based on Qt 5
WWW= https://otter-browser.org/
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 # For intermediate versions only
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>