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 8D2BD138334 for ; Sat, 23 Mar 2019 10:18:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80F0BE0997; Sat, 23 Mar 2019 10:18:03 +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 5A8F7E0997 for ; Sat, 23 Mar 2019 10:18:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 36790335CFF for ; Sat, 23 Mar 2019 10:18:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93951566 for ; Sat, 23 Mar 2019 10:18:00 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1553336272.bf2aa5e01c6d97d1ea8c7fb1cb2a5804cd45635b.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/darkice/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/darkice/darkice-1.3.ebuild X-VCS-Directories: media-sound/darkice/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: bf2aa5e01c6d97d1ea8c7fb1cb2a5804cd45635b X-VCS-Branch: master Date: Sat, 23 Mar 2019 10:18:00 +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: 0c83bcba-1fe2-47ac-98af-1c5cebbf207d X-Archives-Hash: 81d0ad6ace78eb5a1d7903c7651fe286 commit: bf2aa5e01c6d97d1ea8c7fb1cb2a5804cd45635b Author: Lars Wendler gentoo org> AuthorDate: Sat Mar 23 10:17:52 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sat Mar 23 10:17:52 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf2aa5e0 media-sound/darkice: Minor ebuild improvements. Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> media-sound/darkice/darkice-1.3.ebuild | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/media-sound/darkice/darkice-1.3.ebuild b/media-sound/darkice/darkice-1.3.ebuild index b3c01b46636..5ea84fbe503 100644 --- a/media-sound/darkice/darkice-1.3.ebuild +++ b/media-sound/darkice/darkice-1.3.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit eutils DESCRIPTION="A live audio streamer" HOMEPAGE="http://www.darkice.org/" @@ -28,23 +27,21 @@ DEPEND="${RDEPEND}" REQUIRED_USE="|| ( aac aacplus mp3 opus twolame vorbis ) || ( alsa jack pulseaudio )" -#PATCHES=( -# "${FILESDIR}"/${PN}-1.2-gcc47.patch -#) - src_configure() { - econf \ - $(use_enable debug) \ - $(use_with aac faac) \ - $(use_with aacplus) \ - $(use_with alsa) \ - $(use_with jack) \ - $(use_with libsamplerate samplerate) \ - $(use_with mp3 lame) \ - $(use_with opus) \ - $(use_with pulseaudio) \ - $(use_with twolame) \ + local myeconfargs=( + $(use_enable debug) + $(use_with aac faac) + $(use_with aacplus) + $(use_with alsa) + $(use_with jack) + $(use_with libsamplerate samplerate) + $(use_with mp3 lame) + $(use_with opus) + $(use_with pulseaudio) + $(use_with twolame) $(use_with vorbis) + ) + econf "${myeconfargs[@]}" } src_install() {