Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libsoundtouch/
Date: Mon, 07 Jan 2019 10:11:52
Message-Id: 1546855898.02e51bbbb03b9d2245ea2e6156ff1dc9a7c7f1a4.polynomial-c@gentoo
1 commit: 02e51bbbb03b9d2245ea2e6156ff1dc9a7c7f1a4
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 7 10:11:38 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 7 10:11:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02e51bbb
7
8 media-libs/libsoundtouch: Bump to version 2.1.2
9
10 Package-Manager: Portage-2.3.54, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 media-libs/libsoundtouch/Manifest | 1 +
14 .../libsoundtouch/libsoundtouch-2.1.2.ebuild | 55 ++++++++++++++++++++++
15 2 files changed, 56 insertions(+)
16
17 diff --git a/media-libs/libsoundtouch/Manifest b/media-libs/libsoundtouch/Manifest
18 index aca3c6599d4..0789f3c11c1 100644
19 --- a/media-libs/libsoundtouch/Manifest
20 +++ b/media-libs/libsoundtouch/Manifest
21 @@ -1,2 +1,3 @@
22 DIST soundtouch-2.0.0.tar.gz 455148 BLAKE2B e38358b0b773edc03a1b227222418d1e79a97f7a1c7abd22f2cb96bb2a7e3427802214775c908329eeec87710b4d199fba819ad7b99f3d58071749cf372991a1 SHA512 c916bdd2cb3d7547f264b1caf09b739b48a161c8c6288c3893fc97379546ed6b41dafaf603b583fbf64ae91270fdeb90811e5b0df0e9c051dc9f6ddca4d319f9
23 DIST soundtouch-2.1.1.tar.bz2 526206 BLAKE2B bc5d2edef5ae7d297cd017968fb1206d14306c117a847ba34090dcd284a174edcc8f4694be4a98fee7a7d100e7a912e81c2e14a998a22ab2c50eb0d27ca823f7 SHA512 9272141e5c1a4def7356add524d861f2c78eb9574ebca2bab3a57190821fb1eb5c85624aa7b31d90ada38a5165bafd8445f6fdd51e2b3a262ca9a2f2db35a9aa
24 +DIST soundtouch-2.1.2.tar.bz2 526281 BLAKE2B f15f004fd6abdf4cd6fdb842c650480c670a517c6d94365633a7cc4beb95447d7a8bee965d4b258da6c31630e370e3c1c1fc73abfe8568ace465ce41a87397cf SHA512 d45cb0f94e3df32e9c76722a148f201277b2ddc3e390394c1f4ae1263f13557c6b664e90301b5f62d7561d743ab4903a44a34ab7248880b343d581cebd5f0cd9
25
26 diff --git a/media-libs/libsoundtouch/libsoundtouch-2.1.2.ebuild b/media-libs/libsoundtouch/libsoundtouch-2.1.2.ebuild
27 new file mode 100644
28 index 00000000000..4f379707630
29 --- /dev/null
30 +++ b/media-libs/libsoundtouch/libsoundtouch-2.1.2.ebuild
31 @@ -0,0 +1,55 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit autotools flag-o-matic multilib-minimal
38 +
39 +MY_PN=${PN/lib}
40 +MY_P=${MY_PN}-${PV}
41 +DESCRIPTION="Audio processing library for changing tempo, pitch and playback rates"
42 +HOMEPAGE="https://www.surina.net/soundtouch/ https://gitlab.com/soundtouch/soundtouch"
43 +SRC_URI="https://gitlab.com/${MY_PN}/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
44 +
45 +LICENSE="LGPL-2.1"
46 +# subslot = libSoundTouch.so soname
47 +SLOT="0/1"
48 +KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
49 +IUSE="cpu_flags_x86_sse openmp static-libs"
50 +
51 +BDEPEND=">=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]"
52 +
53 +S="${WORKDIR}/${MY_P}"
54 +
55 +src_prepare() {
56 + default
57 + if use openmp ; then
58 + tc-has-openmp || die "Please switch to an openmp compatible compiler"
59 + fi
60 + sed -i "s:^\(dist_doc_DATA=\)COPYING.TXT :\1:" Makefile.am || die
61 + sed -i 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:g' configure.ac || die
62 + eautoreconf
63 +}
64 +
65 +multilib_src_configure() {
66 + local myeconfargs=(
67 + --enable-shared
68 + --disable-integer-samples
69 + $(use_enable cpu_flags_x86_sse x86-optimizations)
70 + $(use_enable openmp)
71 + $(use_enable static-libs static)
72 + )
73 + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
74 +}
75 +
76 +multilib_src_compile() {
77 + emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
78 +}
79 +
80 +multilib_src_install() {
81 + emake DESTDIR="${D}" pkgdocdir="${EPREFIX}"/usr/share/doc/${PF}/html install
82 +}
83 +
84 +multilib_src_install_all() {
85 + find "${ED}" -name '*.la' -delete || die
86 +}