From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 66D89138359 for ; Sun, 9 Aug 2020 15:04:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75F10E0908; Sun, 9 Aug 2020 15:04:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 59730E0908 for ; Sun, 9 Aug 2020 15:04:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 10B9934EE81 for ; Sun, 9 Aug 2020 15:04:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8652D2CC for ; Sun, 9 Aug 2020 15:04:55 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1596985491.25285989c5a293b88d61476bf03825ee9af82183.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/libvirt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/libvirt/libvirt-9999.ebuild X-VCS-Directories: app-emulation/libvirt/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 25285989c5a293b88d61476bf03825ee9af82183 X-VCS-Branch: master Date: Sun, 9 Aug 2020 15:04:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7f1b5d0b-3090-4648-acb8-c3f4f7c2aa57 X-Archives-Hash: fa7e749227ae7b5898b86ca612bffc6a commit: 25285989c5a293b88d61476bf03825ee9af82183 Author: Michal Privoznik redhat com> AuthorDate: Wed Aug 5 05:44:26 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sun Aug 9 15:04:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25285989 app-emulation/libvirt-9999: Drop special casing of virtualbox-ose The app-emulation/virtualbox-ose doesn't exist anymore. Don't special case building of configure arguments then. Signed-off-by: Michal Privoznik redhat.com> Closes: https://github.com/gentoo/gentoo/pull/17021 Signed-off-by: Sergei Trofimovich gentoo.org> app-emulation/libvirt/libvirt-9999.ebuild | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app-emulation/libvirt/libvirt-9999.ebuild b/app-emulation/libvirt/libvirt-9999.ebuild index f0ec21a60c1..6967bcf86d8 100644 --- a/app-emulation/libvirt/libvirt-9999.ebuild +++ b/app-emulation/libvirt/libvirt-9999.ebuild @@ -259,6 +259,7 @@ my_src_configure() { $(use_with udev) $(use_with vepa virtualport) $(use_with virt-network network) + $(use_with virtualbox vbox) $(use_with wireshark-plugins wireshark-dissector) $(use_with xen libxl) $(use_with zfs storage-zfs) @@ -283,11 +284,6 @@ my_src_configure() { --enable-dependency-tracking ) - if use virtualbox && has_version app-emulation/virtualbox-ose; then - myeconfargs+=( --with-vbox=/usr/lib/virtualbox-ose/ ) - else - myeconfargs+=( $(use_with virtualbox vbox) ) - fi econf "${myeconfargs[@]}" }