From owner-svn-ports-head@freebsd.org Thu Jul 19 16:03:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87AC6103F65C; Thu, 19 Jul 2018 16:03:23 +0000 (UTC) (envelope-from jsm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3841C96FB1; Thu, 19 Jul 2018 16:03:23 +0000 (UTC) (envelope-from jsm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 193672B6F3; Thu, 19 Jul 2018 16:03:23 +0000 (UTC) (envelope-from jsm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6JG3MAh011213; Thu, 19 Jul 2018 16:03:22 GMT (envelope-from jsm@FreeBSD.org) Received: (from jsm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6JG3MlD011209; Thu, 19 Jul 2018 16:03:22 GMT (envelope-from jsm@FreeBSD.org) Message-Id: <201807191603.w6JG3MlD011209@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jsm set sender to jsm@FreeBSD.org using -f From: Jesper Schmitz Mouridsen Date: Thu, 19 Jul 2018 16:03:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474968 - in head/sysutils: . lxqt-policykit X-SVN-Group: ports-head X-SVN-Commit-Author: jsm X-SVN-Commit-Paths: in head/sysutils: . lxqt-policykit X-SVN-Commit-Revision: 474968 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Jul 2018 16:03:23 -0000 Author: jsm Date: Thu Jul 19 16:03:22 2018 New Revision: 474968 URL: https://svnweb.freebsd.org/changeset/ports/474968 Log: Add new port sysutils/lxqt-policykit PR: 229289 Approved by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D16343 Added: head/sysutils/lxqt-policykit/ head/sysutils/lxqt-policykit/Makefile (contents, props changed) head/sysutils/lxqt-policykit/distinfo (contents, props changed) head/sysutils/lxqt-policykit/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Jul 19 15:39:51 2018 (r474967) +++ head/sysutils/Makefile Thu Jul 19 16:03:22 2018 (r474968) @@ -634,6 +634,7 @@ SUBDIR += lttng-ust SUBDIR += luckybackup SUBDIR += lxinput + SUBDIR += lxqt-policykit SUBDIR += lxqt-qtplugin SUBDIR += lxsplit SUBDIR += lxtask Added: head/sysutils/lxqt-policykit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/lxqt-policykit/Makefile Thu Jul 19 16:03:22 2018 (r474968) @@ -0,0 +1,28 @@ +# Created by: Olivier Duchateau +# $FreeBSD$ + +PORTNAME= lxqt-policykit +PORTVERSION= 0.13.0 +CATEGORIES= sysutils +MASTER_SITES= LXQT + +MAINTAINER= jsm@FreeBSD.org +COMMENT= PolicyKit authentication agent + +LICENSE= LGPL21+ + +LIB_DEPENDS= libpolkit-qt5-agent-1.so:sysutils/polkit-qt@qt5 \ + libpolkit-agent-1.so:sysutils/polkit + +USES= cmake:outsource compiler:c++11-lib gettext-runtime kde:5 qt:5 \ + localbase:ldflags lxqt pkgconfig tar:xz +USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ + svg widgets x11extras xml +USE_KDE= windowsystem +USE_LXQT= buildtools lxqt +USE_GNOME= glib20 + +PLIST_FILES= bin/lxqt-policykit-agent \ + etc/xdg/autostart/lxqt-policykit-agent.desktop + +.include Added: head/sysutils/lxqt-policykit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/lxqt-policykit/distinfo Thu Jul 19 16:03:22 2018 (r474968) @@ -0,0 +1,3 @@ +TIMESTAMP = 1527328595 +SHA256 (lxqt/lxqt-policykit-0.13.0.tar.xz) = f729a898a0ace59cf7702146dbe2891d8cb93494e0e6683099b60863b47727b5 +SIZE (lxqt/lxqt-policykit-0.13.0.tar.xz) = 33144 Added: head/sysutils/lxqt-policykit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/lxqt-policykit/pkg-descr Thu Jul 19 16:03:22 2018 (r474968) @@ -0,0 +1,4 @@ +Polkit authentification agent of LXQt. +The authentication agent can elevate user privileges for other processes via polkit. + +WWW: http://lxqt.org/