public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libsoundtouch/
Date: Tue, 20 Oct 2015 14:19:50 +0000 (UTC)	[thread overview]
Message-ID: <1445350767.8c9439582aa7cfe0baecc4a82330a56be1181dce.aballier@gentoo> (raw)

commit:     8c9439582aa7cfe0baecc4a82330a56be1181dce
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 20 14:19:27 2015 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Oct 20 14:19:27 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c943958

media-libs/libsoundtouch: Bump to 1.9.2.

Package-Manager: portage-2.2.23

 media-libs/libsoundtouch/Manifest                  |  1 +
 .../libsoundtouch/libsoundtouch-1.9.2.ebuild       | 51 ++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/media-libs/libsoundtouch/Manifest b/media-libs/libsoundtouch/Manifest
index 61a9541..76d0939 100644
--- a/media-libs/libsoundtouch/Manifest
+++ b/media-libs/libsoundtouch/Manifest
@@ -1,3 +1,4 @@
 DIST soundtouch-1.7.1.tar.gz 101274 SHA256 385eafa438a9d31ddf84b8d2f713097a3f1fc93d7abdb2fc54c484b777ee0267 SHA512 92a9e2fb5e47f573771620f329e9193f559ff25ce21f16917479ff94e2aac1e3ebb79cb0fe1ae55d6505b40f694792e493b388470987fbe7a85505fd88e947cc WHIRLPOOL 0f36e93236747bbcdb3c4557791db55811c00f3171db2a386cbfb7d6f4a1657957f27378bbf22018931ce6c856d19da9db411fb8a190d46e4599db7ca6d9d0e1
 DIST soundtouch-1.8.0.tar.gz 106229 SHA256 3d4161d74ca25c5a98c69dbb8ea10fd2be409ba1a3a0bf81db407c4c261f166b SHA512 724e6ecc1727ee4c4f2503d183717dc1503ee2017b176677da6f0268e82254a7cca3ff9a27dbb9cab59e32d002797eec1b39d2b729f741e5f2ea77a147af4d39 WHIRLPOOL e4abc67aa23448a6ef8230794d1e6b9d3f4c33db1fc4fd7c784ab60953d6b79fd850b3cfbdb8ce983b238e7dc249ee96824160bb6e4683b17fd521a4b12b1b1c
 DIST soundtouch-1.9.0.tar.gz 169038 SHA256 1fe4fc03cbfe696c1281fd623d089baffe1b70265acc60eac7a6d9b5742971ad SHA512 383e6f8d1441a5d0676607d78e97a4906abe5b285a1d55f9145d8646e7c65b4d4c552250b6e5ca8e1bb74a4ba432f0370e8df666016aa3fdbf6642337d3e6110 WHIRLPOOL 4ba8f638b009c89cbe9b0320602297aff4db292f32c9a5c1494db05ef0b278f574163b6b256b77daebbaf4b673f00053833b3cfbe536ccba7fbbd3d380d06745
+DIST soundtouch-1.9.2.tar.gz 171369 SHA256 caeb86511e81420eeb454cb5db53f56d96b8451d37d89af6e55b12eb4da1c513 SHA512 d8f3f8970198a46ef3dc252719749bc19cbd2f8de5e00eeb2874565bfc421b60d94d400bacf702591293e595edf6c1c35917b6153fd395cad8d6b03115da7068 WHIRLPOOL a5c5fa4537ffb1f1bc815347e23e980dcc6d307e9882dd0eb38648b42c4745391f0131c4880a2d2c479bd90edbdd94dffb8874349c7e04a4c4169025b1874242

diff --git a/media-libs/libsoundtouch/libsoundtouch-1.9.2.ebuild b/media-libs/libsoundtouch/libsoundtouch-1.9.2.ebuild
new file mode 100644
index 0000000..5073d3c
--- /dev/null
+++ b/media-libs/libsoundtouch/libsoundtouch-1.9.2.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools eutils flag-o-matic multilib-minimal
+
+MY_PN=${PN/lib}
+
+DESCRIPTION="Audio processing library for changing tempo, pitch and playback rates"
+HOMEPAGE="http://www.surina.net/soundtouch/"
+SRC_URI="http://www.surina.net/soundtouch/${P/lib}.tar.gz"
+
+LICENSE="LGPL-2.1"
+# subslot = libSoundTouch.so soname
+SLOT="0/1"
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+IUSE="cpu_flags_x86_sse openmp static-libs"
+
+DEPEND=">=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]"
+
+S=${WORKDIR}/${MY_PN}
+
+src_prepare() {
+	use openmp && { tc-has-openmp || die "Please switch to an openmp compatible compiler"; }
+	sed -i "s:^\(dist_doc_DATA=\)COPYING.TXT :\1:" Makefile.am || die
+	sed -i 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:g' configure.ac || die
+	eautoreconf
+}
+
+multilib_src_configure() {
+	ECONF_SOURCE=${S} \
+	econf \
+		--enable-shared \
+		--disable-integer-samples \
+		$(use_enable cpu_flags_x86_sse x86-optimizations) \
+		$(use_enable openmp) \
+		$(use_enable static-libs static)
+}
+
+multilib_src_compile() {
+	emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
+}
+
+multilib_src_install() {
+	emake DESTDIR="${D}" pkgdocdir="${EPREFIX}"/usr/share/doc/${PF}/html install
+}
+
+multilib_src_install_all() {
+	prune_libtool_files
+}


             reply	other threads:[~2015-10-20 14:19 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-20 14:19 Alexis Ballier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-08-01  8:04 [gentoo-commits] repo/gentoo:master commit in: media-libs/libsoundtouch/ Lars Wendler
2017-08-01  8:04 Lars Wendler
2017-08-01  8:05 Lars Wendler
2017-08-31 12:37 Tim Harder
2018-08-22 17:07 Andreas Sturmlechner
2018-08-24  1:40 Thomas Deutschmann
2018-08-24  3:42 Mikle Kolyada
2018-08-25 18:25 Sergei Trofimovich
2018-08-25 18:55 Sergei Trofimovich
2019-01-04  8:20 Tim Harder
2019-01-07 10:11 Lars Wendler
2019-04-07 20:52 Sergei Trofimovich
2019-04-08  0:39 Aaron Bauman
2019-04-28 22:06 Thomas Deutschmann
2020-08-06  2:35 Sam James
2021-04-27 17:45 Miroslav Šulc
2021-05-29  9:02 Sam James
2021-05-29 13:28 Sam James
2021-05-29 15:23 Sam James
2021-05-30  9:50 Agostino Sarubbo
2021-05-30 10:40 Miroslav Šulc
2021-08-22  9:26 Miroslav Šulc
2021-09-22 14:30 Yixun Lan
2021-09-22 21:53 Sam James
2021-09-22 21:53 Sam James
2021-09-23  6:40 Agostino Sarubbo
2021-09-23  6:53 Miroslav Šulc
2021-09-23 13:58 Agostino Sarubbo
2021-09-24  6:46 Miroslav Šulc
2021-10-24  8:08 Sam James
2021-10-24  8:08 Sam James
2021-10-24  8:13 Sam James
2021-10-24  8:13 Sam James
2021-10-24  8:42 Miroslav Šulc
2022-05-14 21:30 David Seifert
2022-11-14  6:50 Miroslav Šulc
2022-12-15 16:51 Arthur Zamarin
2022-12-15 16:51 Arthur Zamarin
2022-12-15 16:51 Arthur Zamarin
2023-04-20 22:40 Sam James
2023-04-20 22:44 Sam James
2023-04-21  6:49 Miroslav Šulc
2023-09-06 18:43 WANG Xuerui
2024-03-24  7:46 Sam James
2024-03-24  7:46 Sam James
2024-05-01  8:44 Sam James
2024-05-01  8:44 Sam James
2024-05-01  8:46 Sam James
2024-05-01  8:52 Sam James
2025-02-07 17:50 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1445350767.8c9439582aa7cfe0baecc4a82330a56be1181dce.aballier@gentoo \
    --to=aballier@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox