mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
b1a1d38bf9
From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540
47 lines
983 B
Makefile
47 lines
983 B
Makefile
# Created by: Ken Moore <ken@pcbsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lumina-calculator
|
|
PORTVERSION= 1.4.1
|
|
CATEGORIES= deskutils
|
|
|
|
MAINTAINER= jt@ixsystems.com
|
|
COMMENT= Scientific calculator from the Lumina Desktop
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
LIB_DEPENDS+= libxcb-ewmh.so:x11/xcb-util-wm \
|
|
libxcb-icccm.so:x11/xcb-util-wm \
|
|
libxcb-image.so:x11/xcb-util-image \
|
|
libxcb-util.so:x11/xcb-util
|
|
|
|
CONFLICTS_INSTALL= lumina-1.2.*
|
|
|
|
OPTIONS_DEFINE= I18N
|
|
OPTIONS_DEFAULT= I18N
|
|
OPTIONS_SUB= yes
|
|
|
|
I18N_DESC= Install localization files
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
MAKE_JOBS_UNSAFE=yes
|
|
|
|
USES= qmake qt:5
|
|
USE_GL= gl
|
|
USE_XORG= x11 xdamage xcb
|
|
USE_QT= core gui widgets network svg \
|
|
buildtools_build x11extras concurrent multimedia
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= trueos
|
|
GH_PROJECT= lumina
|
|
GH_TAGNAME= b6536c1547571ae8dd0618bed752e2e0025bf2a7
|
|
WRKSRC_SUBDIR= src-qt5/desktop-utils/${PORTNAME}
|
|
|
|
.if${PORT_OPTIONS:MI18N}
|
|
USE_QT+= linguist_build
|
|
QMAKE_ARGS+=CONFIG+=WITH_I18N
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|