From owner-svn-ports-all@freebsd.org Wed Jun 20 13:35:24 2018 Return-Path: Delivered-To: svn-ports-all@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 9A8D81019DD6; Wed, 20 Jun 2018 13:35:24 +0000 (UTC) (envelope-from mat@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 4C8697AFCD; Wed, 20 Jun 2018 13:35:24 +0000 (UTC) (envelope-from mat@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 2146322E84; Wed, 20 Jun 2018 13:35:24 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5KDZNj7036933; Wed, 20 Jun 2018 13:35:23 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5KDZNl6036932; Wed, 20 Jun 2018 13:35:23 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201806201335.w5KDZNl6036932@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 20 Jun 2018 13:35:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472870 - head/net-p2p/qbittorrent X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/net-p2p/qbittorrent X-SVN-Commit-Revision: 472870 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jun 2018 13:35:24 -0000 Author: mat Date: Wed Jun 20 13:35:23 2018 New Revision: 472870 URL: https://svnweb.freebsd.org/changeset/ports/472870 Log: Better use flavors. Sponsored by: Absolight Modified: head/net-p2p/qbittorrent/Makefile (contents, props changed) Modified: head/net-p2p/qbittorrent/Makefile ============================================================================== --- head/net-p2p/qbittorrent/Makefile Wed Jun 20 12:38:43 2018 (r472869) +++ head/net-p2p/qbittorrent/Makefile Wed Jun 20 13:35:23 2018 (r472870) @@ -18,6 +18,7 @@ LIB_DEPENDS= libtorrent-rasterbar.so:net-p2p/libtorren libboost_system.so:devel/boost-libs FLAVORS= default nox +FLAVOR= ${FLAVORS:[1]} default_LIB_DEPENDS= libGeoIP.so:net/GeoIP nox_PKGNAMESUFFIX= -nox nox_PLIST= ${NONEXISTENT} @@ -29,13 +30,13 @@ CONFIGURE_ARGS= CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLA QT_NONSTANDARD= yes DESTDIRNAME= INSTALL_ROOT -.if ${FLAVOR:Udefault} == default +.if ${FLAVOR} == default USES+= desktop-file-utils USE_QT5+= concurrent gui widgets USE_GL= gl .endif -.if ${FLAVOR:U} == nox +.if ${FLAVOR} == nox SUFFIX= -nox COMMENT+= (web UI version) CONFIGURE_ARGS+= --disable-gui