Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.9.0.ebuild
Date: Mon, 01 Jun 2015 09:00:14
Message-Id: 20150601090009.ED513A10@oystercatcher.gentoo.org
1 aballier 15/06/01 09:00:09
2
3 Modified: ChangeLog
4 Added: libsoundtouch-1.9.0.ebuild
5 Log:
6 version bump
7
8 Signed-off-by: Alexis Ballier <aballier@g.o>
9 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.88 media-libs/libsoundtouch/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.88&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.88&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.87&r2=1.88
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
21 retrieving revision 1.87
22 retrieving revision 1.88
23 diff -u -r1.87 -r1.88
24 --- ChangeLog 25 Feb 2015 15:29:33 -0000 1.87
25 +++ ChangeLog 1 Jun 2015 09:00:09 -0000 1.88
26 @@ -1,6 +1,12 @@
27 # ChangeLog for media-libs/libsoundtouch
28 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.87 2015/02/25 15:29:33 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.88 2015/06/01 09:00:09 aballier Exp $
31 +
32 +*libsoundtouch-1.9.0 (01 Jun 2015)
33 +
34 + 01 Jun 2015; Alexis Ballier <aballier@g.o>
35 + +libsoundtouch-1.9.0.ebuild:
36 + version bump
37
38 25 Feb 2015; Agostino Sarubbo <ago@g.o> libsoundtouch-1.8.0-r1.ebuild:
39 Stable for x86, wrt bug #526018
40
41
42
43 1.1 media-libs/libsoundtouch/libsoundtouch-1.9.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.9.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.9.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libsoundtouch-1.9.0.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.9.0.ebuild,v 1.1 2015/06/01 09:00:09 aballier Exp $
53
54 EAPI=5
55 inherit autotools eutils flag-o-matic multilib-minimal
56
57 MY_PN=${PN/lib}
58
59 DESCRIPTION="Audio processing library for changing tempo, pitch and playback rates"
60 HOMEPAGE="http://www.surina.net/soundtouch/"
61 SRC_URI="http://www.surina.net/soundtouch/${P/lib}.tar.gz"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
66 IUSE="cpu_flags_x86_sse openmp static-libs"
67
68 DEPEND=">=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]"
69
70 S=${WORKDIR}/${MY_PN}
71
72 src_prepare() {
73 use openmp && { tc-has-openmp || die "Please switch to an openmp compatible compiler"; }
74 sed -i "s:^\(pkgdoc_DATA=\)COPYING.TXT :\1:" Makefile.am || die
75 sed -i 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:g' configure.ac || die
76 eautoreconf
77 }
78
79 multilib_src_configure() {
80 ECONF_SOURCE=${S} \
81 econf \
82 --enable-shared \
83 --disable-integer-samples \
84 $(use_enable cpu_flags_x86_sse x86-optimizations) \
85 $(use_enable openmp) \
86 $(use_enable static-libs static)
87 }
88
89 multilib_src_compile() {
90 emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
91 }
92
93 multilib_src_install() {
94 emake DESTDIR="${D}" pkgdocdir="${EPREFIX}"/usr/share/doc/${PF}/html install
95 }
96
97 multilib_src_install_all() {
98 prune_libtool_files
99 }