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
36 lines
737 B
Makefile
36 lines
737 B
Makefile
# Created by: Ken Moore <ken@pcbsd.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lumina-xdg-entry
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.3.0
|
|
DISTVERSIONSUFFIX= -p1
|
|
CATEGORIES= deskutils
|
|
|
|
MAINTAINER= kmoore@FreeBSD.org
|
|
COMMENT= XDG desktop entry creator from the Lumina Desktop
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
OPTIONS_DEFINE= I18N
|
|
OPTIONS_DEFAULT=I18N
|
|
I18N_DESC= Install localization files
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
MAKE_JOBS_UNSAFE=yes
|
|
|
|
USE_QT= core gui widgets network svg \
|
|
buildtools_build x11extras concurrent multimedia
|
|
USES= qmake qt:5
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= trueos
|
|
GH_PROJECT= lumina
|
|
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>
|