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 C6A2A138334 for ; Sat, 29 Jun 2019 06:31:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2677E084A; Sat, 29 Jun 2019 06:31:57 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 DA7D2E0849 for ; Sat, 29 Jun 2019 06:31:57 +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 B5F6E346838 for ; Sat, 29 Jun 2019 06:31:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55155629 for ; Sat, 29 Jun 2019 06:31:55 +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: <1561789895.d8b40c149ae86b4d3eff0c1dd25b626c3c13a656.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.ebuild X-VCS-Directories: media-sound/erec/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d8b40c149ae86b4d3eff0c1dd25b626c3c13a656 X-VCS-Branch: master Date: Sat, 29 Jun 2019 06:31: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: 22a5e035-d034-4034-ad4f-6f2debf7a6fc X-Archives-Hash: 0af93d8224b0495541796c31414e8d8f commit: d8b40c149ae86b4d3eff0c1dd25b626c3c13a656 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jun 29 06:12:32 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 29 06:31:35 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8b40c14 media-sound/erec: Drop 2.2.0.1 (r0) Package-Manager: Portage-2.3.67, Repoman-2.3.16 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/erec/erec-2.2.0.1.ebuild | 48 ------------------------------------ 1 file changed, 48 deletions(-) diff --git a/media-sound/erec/erec-2.2.0.1.ebuild b/media-sound/erec/erec-2.2.0.1.ebuild deleted file mode 100644 index 4d9f2c35205..00000000000 --- a/media-sound/erec/erec-2.2.0.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils 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" -IUSE="" - -RDEPEND="" -DEPEND="sys-apps/sed" - -src_unpack() { - unpack ${A} - cd "${S}" - - 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 - - sed -i \ - -e "s:CPPFLAGS=:CPPFLAGS=-I\"${S}\"/argh :" \ - Makefile.sets - - echo "" > .depend - echo "" > argh/.depend - epatch "${FILESDIR}/${P}-gcc43.patch" -} - -src_compile() { - emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" -j1 || die -} - -src_install() { - dobin erec || die - dodoc README - dohtml README.html -}