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 662CB1382C5 for ; Thu, 7 Jan 2021 11:33:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43F7BE08FB; Thu, 7 Jan 2021 11:33:33 +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 2B7AAE08FB for ; Thu, 7 Jan 2021 11:33:33 +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 0F49B341393 for ; Thu, 7 Jan 2021 11:33:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D2E684C for ; Thu, 7 Jan 2021 11:33:28 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1610019203.ed5aa32aed534742d172e03240b9c0bcec4b4067.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/portaudio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/portaudio/portaudio-19.06.00-r2.ebuild X-VCS-Directories: media-libs/portaudio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ed5aa32aed534742d172e03240b9c0bcec4b4067 X-VCS-Branch: master Date: Thu, 7 Jan 2021 11:33:28 +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: 9c6ffe6c-96a0-4342-80f8-d5d200e09147 X-Archives-Hash: 330c17e4c2a08da09395ec6349df2c28 commit: ed5aa32aed534742d172e03240b9c0bcec4b4067 Author: Sam James gentoo org> AuthorDate: Thu Jan 7 11:32:18 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 7 11:33:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed5aa32a media-libs/portaudio: cleanup old Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> media-libs/portaudio/portaudio-19.06.00-r2.ebuild | 65 ----------------------- 1 file changed, 65 deletions(-) diff --git a/media-libs/portaudio/portaudio-19.06.00-r2.ebuild b/media-libs/portaudio/portaudio-19.06.00-r2.ebuild deleted file mode 100644 index f1945f99dd2..00000000000 --- a/media-libs/portaudio/portaudio-19.06.00-r2.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit multilib-minimal - -DESCRIPTION="A free, cross-platform, open-source, audio I/O library" -HOMEPAGE="http://www.portaudio.com/" -SRC_URI="http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz - https://sources.debian.org/data/main/p/portaudio19/19.6.0-1/debian/patches/audacity-portmixer.patch -> ${PN}-19.06.00-audacity-portmixer.patch" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="alsa +cxx debug doc jack oss static-libs" - -RDEPEND="alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] ) - jack? ( virtual/jack[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND}" -BDEPEND=" - doc? ( app-doc/doxygen ) - virtual/pkgconfig -" - -S="${WORKDIR}/${PN}" - -DOCS=( README.txt ) - -PATCHES=( - "${DISTDIR}/${PN}-19.06.00-audacity-portmixer.patch" -) - -multilib_src_configure() { - local myeconfargs=( - $(use_enable debug debug-output) - $(use_enable cxx) - $(use_enable static-libs static) - $(use_with alsa) - $(use_with jack) - $(use_with oss) - ) - - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" -} - -multilib_src_compile() { - # workaround parallel build issue - emake lib/libportaudio.la - emake -} - -src_compile() { - multilib-minimal_src_compile - - if use doc; then - doxygen -u Doxyfile || die - doxygen Doxyfile || die - fi -} - -multilib_src_install_all() { - einstalldocs - use doc && dodoc -r doc/html - find "${ED}" -name "*.la" -delete || die -}