From owner-svn-ports-head@freebsd.org Thu Jun 1 20:22:19 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC0F2B7E14C; Thu, 1 Jun 2017 20:22:19 +0000 (UTC) (envelope-from danfe@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 mx1.freebsd.org (Postfix) with ESMTPS id 7CB2966A29; Thu, 1 Jun 2017 20:22:19 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v51KMItX021384; Thu, 1 Jun 2017 20:22:18 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v51KMIBa021383; Thu, 1 Jun 2017 20:22:18 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201706012022.v51KMIBa021383@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 1 Jun 2017 20:22:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442330 - head/net-p2p/torrent-file-editor X-SVN-Group: ports-head 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.23 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, 01 Jun 2017 20:22:19 -0000 Author: danfe Date: Thu Jun 1 20:22:18 2017 New Revision: 442330 URL: https://svnweb.freebsd.org/changeset/ports/442330 Log: - Add missing `desktop-file-utils' to USES as reported by `stage-qa' - Allow to optionally inhibit donation text in the About dialog Modified: head/net-p2p/torrent-file-editor/Makefile Modified: head/net-p2p/torrent-file-editor/Makefile ============================================================================== --- head/net-p2p/torrent-file-editor/Makefile Thu Jun 1 19:59:21 2017 (r442329) +++ head/net-p2p/torrent-file-editor/Makefile Thu Jun 1 20:22:18 2017 (r442330) @@ -11,15 +11,20 @@ COMMENT= Qt-based GUI tool for creating and editing .t LICENSE= GPLv3 -USES= cmake +USES= cmake desktop-file-utils _QT4_DEPS= linguisttools_build moc_build qmake_build rcc_build \ uic_build corelib gui _QT5_DEPS= buildtools_build linguisttools_build qmake_build \ core gui widgets -OPTIONS_DEFINE= QT5 +OPTIONS_DEFINE= DONATION QT5 +OPTIONS_DEFAULT= DONATION + +DONATION_DESC= Show donation text in the About dialog QT5_DESC= Build against Qt 5 instead of Qt 4 + +DONATION_CMAKE_OFF= -DDISABLE_DONATION:BOOL=ON QT5_USE= QT5=${_QT5_DEPS:ts,} QT5_USE_OFF= QT4=${_QT4_DEPS:ts,}