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 74ADA1382C5 for ; Mon, 21 Jun 2021 00:41:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6751E07FA; Mon, 21 Jun 2021 00:41:41 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 AA541E07FA for ; Mon, 21 Jun 2021 00:41:41 +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 5C60533E02F for ; Mon, 21 Jun 2021 00:41:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B33F878E for ; Mon, 21 Jun 2021 00:41:38 +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: <1624236089.a08c8635572f9b5dd90a4a83af02740687731e43.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.07.00.ebuild X-VCS-Directories: media-libs/portaudio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a08c8635572f9b5dd90a4a83af02740687731e43 X-VCS-Branch: master Date: Mon, 21 Jun 2021 00:41:38 +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: a7c3ed2b-2811-47ba-b4d5-6919da9f005c X-Archives-Hash: 1b0fb52c37bbcce4c1cd0f64f216b0dc commit: a08c8635572f9b5dd90a4a83af02740687731e43 Author: Sam James gentoo org> AuthorDate: Mon Jun 21 00:10:56 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jun 21 00:41:29 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a08c8635 media-libs/portaudio: add 19.07.00 Closes: https://bugs.gentoo.org/797241 Signed-off-by: Sam James gentoo.org> media-libs/portaudio/portaudio-19.07.00.ebuild | 75 ++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/media-libs/portaudio/portaudio-19.07.00.ebuild b/media-libs/portaudio/portaudio-19.07.00.ebuild new file mode 100644 index 00000000000..7555dcdbcff --- /dev/null +++ b/media-libs/portaudio/portaudio-19.07.00.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools 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" +S="${WORKDIR}/${PN}" + +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 +" + +DOCS=( README.txt ) + +PATCHES=( + "${DISTDIR}/${PN}-19.06.00-audacity-portmixer.patch" + "${FILESDIR}"/${PN}-19.06.00-AR.patch # bug #720966, trigger reconf + "${FILESDIR}"/${PN}-19.06.00-slibtool.patch +) + +src_prepare() { + default + + eautoconf +} + +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() { + default + + use doc && dodoc -r doc/html + + find "${ED}" -name "*.la" -delete || die +}