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 E117C138336 for ; Fri, 7 Sep 2018 12:13:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A829CE0798; Fri, 7 Sep 2018 12:13:27 +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 8184EE0798 for ; Fri, 7 Sep 2018 12:13:27 +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 B9851335CD6 for ; Fri, 7 Sep 2018 12:13:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 149B83D0 for ; Fri, 7 Sep 2018 12:13:23 +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: <1536322336.a4718a505b18fd3eba4cc4468468371ff75ccc5c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/brutefir/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/brutefir/brutefir-1.0k-r2.ebuild X-VCS-Directories: media-sound/brutefir/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a4718a505b18fd3eba4cc4468468371ff75ccc5c X-VCS-Branch: master Date: Fri, 7 Sep 2018 12:13:23 +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-Archives-Salt: ba860e1d-a648-470d-a12d-b7ead04636a6 X-Archives-Hash: 5b278d4f472cd03c90b625ba54ae6ef2 commit: a4718a505b18fd3eba4cc4468468371ff75ccc5c Author: Michael Mair-Keimberger gmail com> AuthorDate: Tue Sep 4 18:39:31 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Sep 7 12:12:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4718a50 media-sound/brutefir: EAPI7 revbump, improve ebuild Closes: https://bugs.gentoo.org/665238 Closes: https://github.com/gentoo/gentoo/pull/9779 media-sound/brutefir/brutefir-1.0k-r2.ebuild | 44 ++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/media-sound/brutefir/brutefir-1.0k-r2.ebuild b/media-sound/brutefir/brutefir-1.0k-r2.ebuild new file mode 100644 index 00000000000..c4bc957fd6f --- /dev/null +++ b/media-sound/brutefir/brutefir-1.0k-r2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Software convolution engine for applying long FIR filters" +HOMEPAGE="https://www.ludd.ltu.se/~torger/brutefir.html" +SRC_URI="https://www.ludd.ltu.se/~torger/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND="media-libs/alsa-lib + media-sound/jack-audio-connection-kit + sci-libs/fftw:3.0" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}"/${P}-ld.patch ) + +src_compile() { + tc-export AS CC + emake +} + +src_install() { + emake LIBDIR="/usr/$(get_libdir)" DESTDIR="${D}" \ + install + dodoc CHANGES README + + insinto /usr/share/${PN} + doins xtc_config directpath.txt crosspath.txt massive_config \ + bench1_config bench2_config bench3_config bench4_config \ + bench5_config +} + +pkg_postinst() { + elog "Brutefir is a complicated piece of software. Please" + elog "read the documentation first! You can find" + elog "documentation here: http://www.ludd.luth.se/~torger/brutefir.html" + elog "Example config files are in /usr/share/brutefir" +}