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 279E11382C5 for ; Wed, 4 Apr 2018 04:37:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD60BE0C31; Wed, 4 Apr 2018 04:37:51 +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 B5201E0C31 for ; Wed, 4 Apr 2018 04:37:51 +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 1B1AF335C09 for ; Wed, 4 Apr 2018 04:37:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6E6EA264 for ; Wed, 4 Apr 2018 04:37:48 +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: <1522816649.7423f1b903d66d620c8b4b05ea96cffc69040a14.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/twolame/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/twolame/twolame-0.3.13-r1.ebuild X-VCS-Directories: media-sound/twolame/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7423f1b903d66d620c8b4b05ea96cffc69040a14 X-VCS-Branch: master Date: Wed, 4 Apr 2018 04:37:48 +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: 243003f7-b05c-4504-8d8b-6f9c066f3123 X-Archives-Hash: 339359ee7e6d3ecd69420baf15cde333 commit: 7423f1b903d66d620c8b4b05ea96cffc69040a14 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Apr 4 04:37:29 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Apr 4 04:37:29 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7423f1b9 media-sound/twolame: Revert Drop old This reverts commit 1bd105aa7a0024931c950c07ab662e1a54630850. media-sound/twolame/twolame-0.3.13-r1.ebuild | 43 ++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/media-sound/twolame/twolame-0.3.13-r1.ebuild b/media-sound/twolame/twolame-0.3.13-r1.ebuild new file mode 100644 index 00000000000..72f6a6d3ffd --- /dev/null +++ b/media-sound/twolame/twolame-0.3.13-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +AUTOTOOLS_PRUNE_LIBTOOL_FILES=all +inherit autotools-multilib + +DESCRIPTION="An optimised MPEG Audio Layer 2 (MP2) encoder" +HOMEPAGE="http://www.twolame.org" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="static-libs" + +RDEPEND=">=media-libs/libsndfile-1.0.25[${MULTILIB_USEDEP}] + abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r6 + !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog README TODO ) + +src_prepare() { + sed -i -e '/CFLAGS/s:-O3::' configure || die + + if [[ ${CHOST} == *solaris* ]]; then + # libsndfile doesn't like -std=c99 on Solaris + sed -i -e '/CFLAGS/s:-std=c99::' configure || die + # configure isn't really bourne shell (comment 0) or dash (comment 6) + # compatible, bug #388885 + export CONFIG_SHELL=${BASH} + fi + + autotools-multilib_src_prepare +} + +src_install() { + autotools-multilib_src_install \ + pkgdocdir="${EPREFIX}/usr/share/doc/${PF}" +}