From owner-svn-ports-head@freebsd.org Mon May 13 13:33:12 2019 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 5E0D915905A8; Mon, 13 May 2019 13:33:12 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "relay.issp.ac.ru", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B525382174; Mon, 13 May 2019 13:33:11 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail-vk1-f176.google.com [209.85.221.176:34892] (HELO/EHLO mail-vk1-f176.google.com, authenticated with PLAIN) by mail.issp.ac.ru with ESMTPSA/inet id x4DDX7K7045740 (using TLSv1.2, with cipher ECDHE-RSA-AES128-GCM-SHA256 (128 bits), verified FAIL) Mon, 13 May 2019 16:33:08 +0300 (MSK) Received: by mail-vk1-f176.google.com with SMTP id t74so3302713vke.2; Mon, 13 May 2019 06:33:08 -0700 (PDT) X-Gm-Message-State: APjAAAXJC2fn+b/LjuuDHalxgKjWPnTEaWgS2uRa/COXtHPV+QS2h+XZ GcVx8JYmB25CNCBPpFvRqxne/xlAX+vU/mEmUyk= X-Google-Smtp-Source: APXvYqzyGyBpgHuNu6CAUOvynZjXGWz+0RN1wO5rQ2eQLeCCX8OXyw0UFPcWM/18HCd92uxACgMUw7WL0MD4lR/tsT4= X-Received: by 2002:a1f:a611:: with SMTP id p17mr518056vke.50.1557754386799; Mon, 13 May 2019 06:33:06 -0700 (PDT) MIME-Version: 1.0 References: <201905120055.x4C0tDGF015497@repo.freebsd.org> In-Reply-To: <201905120055.x4C0tDGF015497@repo.freebsd.org> From: Max Brazhnikov Date: Mon, 13 May 2019 16:32:55 +0300 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r501351 - head/sysutils/bareos-traymonitor To: Jose Alonso Cardenas Marquez Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: B525382174 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.93)[-0.935,0]; ASN(0.00)[asn:42317, ipnet:77.236.32.0/20, country:RU] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Mon, 13 May 2019 13:33:12 -0000 Hi Jose, On Sun, 12 May 2019 at 03:55, Jose Alonso Cardenas Marquez wrote: > > Author: acm > Date: Sun May 12 00:55:13 2019 > New Revision: 501351 > URL: https://svnweb.freebsd.org/changeset/ports/501351 > > Log: > - Fix build > > Reported by: pkg-fallout > > Modified: > head/sysutils/bareos-traymonitor/Makefile > > Modified: head/sysutils/bareos-traymonitor/Makefile > ============================================================================== > --- head/sysutils/bareos-traymonitor/Makefile Sun May 12 00:42:15 2019 (r501350) > +++ head/sysutils/bareos-traymonitor/Makefile Sun May 12 00:55:13 2019 (r501351) > @@ -12,7 +12,7 @@ LIB_DEPENDS+= libqwt5-qt5.so:x11-toolkits/qwt5-qt5 \ > CONFLICTS= bacula*-bat-* bareos16-traymonitor-* > > USES= pkgconfig gettext-runtime desktop-file-utils qt:5 > -USE_QT5= qmake_build uic_build moc_build rcc_build gui corelib > +USE_QT= buildtools qmake uitools gui core You can use _build suffix for Qt components, e.g. buildtools_build, qmake_build, and uitools_build to avoid needless runtime dependencies. Cheers, Max