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 3160C138335 for ; Sat, 11 Aug 2018 10:35:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D24EE07E0; Sat, 11 Aug 2018 10:35:23 +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 734E5E07E0 for ; Sat, 11 Aug 2018 10:35:23 +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 C3702335C63 for ; Sat, 11 Aug 2018 10:35:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BBDC53A2 for ; Sat, 11 Aug 2018 10:35:19 +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: <1533983710.a9aa237e23e632bdae14a58c3b0f4fdee162db71.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libclalsadrv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libclalsadrv/libclalsadrv-2.0.0-r1.ebuild X-VCS-Directories: media-libs/libclalsadrv/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a9aa237e23e632bdae14a58c3b0f4fdee162db71 X-VCS-Branch: master Date: Sat, 11 Aug 2018 10:35:19 +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: 89bfca94-515e-4310-bfbf-ef4679d4c789 X-Archives-Hash: 59853b114c8841c1624745dd53b9fb40 commit: a9aa237e23e632bdae14a58c3b0f4fdee162db71 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sat Jul 28 17:40:15 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Aug 11 10:35:10 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9aa237e media-libs/libclalsadrv: EAPI7, improve ebuild Closes: https://github.com/gentoo/gentoo/pull/9367 .../libclalsadrv/libclalsadrv-2.0.0-r1.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/media-libs/libclalsadrv/libclalsadrv-2.0.0-r1.ebuild b/media-libs/libclalsadrv/libclalsadrv-2.0.0-r1.ebuild new file mode 100644 index 00000000000..0579ddc4258 --- /dev/null +++ b/media-libs/libclalsadrv/libclalsadrv-2.0.0-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit toolchain-funcs + +MY_P=${P/lib} + +DESCRIPTION="ALSA driver C++ access library" +HOMEPAGE="http://packages.debian.org/libclalsadrv" +SRC_URI="mirror://gentoo/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="media-libs/alsa-lib" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${P/lib}/libs" + +PATCHES=( "${FILESDIR}"/${P}-makefile.patch ) + +src_compile() { + tc-export CXX + emake +} + +src_install() { + emake LIBDIR="$(get_libdir)" PREFIX="${D}/usr" install + dodoc ../AUTHORS +}