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 161ED138334 for ; Wed, 22 Aug 2018 20:43:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7D3AE08F0; Wed, 22 Aug 2018 20:43:09 +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 B2281E08F0 for ; Wed, 22 Aug 2018 20:43:09 +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 D7DBE335C9F for ; Wed, 22 Aug 2018 20:43:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B39BE2BA for ; Wed, 22 Aug 2018 20:43:05 +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: <1534970566.6d8fc8c006ebff66b9f86d45087738b48c2d8cfa.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/wavpack/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/wavpack/wavpack-5.1.0-r1.ebuild X-VCS-Directories: media-sound/wavpack/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6d8fc8c006ebff66b9f86d45087738b48c2d8cfa X-VCS-Branch: master Date: Wed, 22 Aug 2018 20:43:05 +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: 985f42fa-3f1c-4074-977b-cdc7f196bd7e X-Archives-Hash: 3083743794b7b82d09e3363739d27c2a commit: 6d8fc8c006ebff66b9f86d45087738b48c2d8cfa Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Aug 22 20:17:14 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 22 20:42:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d8fc8c0 media-sound/wavpack: EAPI-7 bump Package-Manager: Portage-2.3.48, Repoman-2.3.10 media-sound/wavpack/wavpack-5.1.0-r1.ebuild | 35 +++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/media-sound/wavpack/wavpack-5.1.0-r1.ebuild b/media-sound/wavpack/wavpack-5.1.0-r1.ebuild new file mode 100644 index 00000000000..39cd22ab4e6 --- /dev/null +++ b/media-sound/wavpack/wavpack-5.1.0-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools multilib-minimal + +DESCRIPTION="Hybrid lossless audio compression tools" +HOMEPAGE="http://www.wavpack.com/" +SRC_URI="http://www.wavpack.com/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="static-libs" + +RDEPEND=">=virtual/libiconv-0-r1" +DEPEND="${RDEPEND}" + +PATCHES=( "${FILESDIR}/${P}-armv7.patch" ) + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE=${S} econf \ + $(multilib_native_enable apps) +} + +multilib_src_install_all() { + einstalldocs + find "${D}" -name '*.la' -delete || die +}