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 EBA8C138334 for ; Sat, 25 May 2019 20:59:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D16D9E0856; Sat, 25 May 2019 20:59:20 +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 74BF3E084A for ; Sat, 25 May 2019 20:59:20 +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 4E53D34501D for ; Sat, 25 May 2019 20:59:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C7C75FC for ; Sat, 25 May 2019 20:59:15 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1558817679.bbe0edcdd17fda4e14ad085b5c7ac02df2117d5a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/erec/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/erec/erec-2.2.0.1-r1.ebuild X-VCS-Directories: media-sound/erec/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: bbe0edcdd17fda4e14ad085b5c7ac02df2117d5a X-VCS-Branch: master Date: Sat, 25 May 2019 20:59:15 +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: 36b5f48e-050c-473a-a27d-305f25351235 X-Archives-Hash: a74d21ffa6915c7eb9467ec1455d911a commit: bbe0edcdd17fda4e14ad085b5c7ac02df2117d5a Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri May 24 05:08:52 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat May 25 20:54:39 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbe0edcd media-sound/erec: EAPI=7 bump Closes: https://bugs.gentoo.org/686642 Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/erec/erec-2.2.0.1-r1.ebuild | 46 +++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/media-sound/erec/erec-2.2.0.1-r1.ebuild b/media-sound/erec/erec-2.2.0.1-r1.ebuild new file mode 100644 index 00000000000..527e1ace368 --- /dev/null +++ b/media-sound/erec/erec-2.2.0.1-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Shared audio recording server" +HOMEPAGE="https://bisqwit.iki.fi/source/erec.html" +SRC_URI="https://bisqwit.iki.fi/src/arch/${P}.tar.bz2" + +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +LICENSE="GPL-2+" +SLOT="0" + +PATCHES=( "${FILESDIR}/${P}-gcc43.patch" ) + +DOCS=( README ) +HTML_DOCS=( README.html ) + +src_prepare() { + sed -i \ + -e "s:BINDIR=/usr/local/bin:BINDIR=${D}usr/bin:" \ + -e "s:^\\(ARGHLINK.*-L.*\\):#\\1:" \ + -e "s:^#\\(ARGHLINK=.*a\\)$:\\1:" \ + -e "s:\$(CXX):\$(CXX) \$(CXXFLAGS) -I\"${S}\"/argh:g" \ + Makefile || die + + sed -i \ + -e "s:CPPFLAGS=:CPPFLAGS=-I\"${S}\"/argh :" \ + Makefile.sets || die + + echo "" > .depend || die + echo "" > argh/.depend || die + default +} + +src_compile() { + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" \ + CXXFLAGS="${CXXFLAGS}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -j1 +} + +src_install() { + dobin erec + einstalldocs +}