Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libsoundtouch: ChangeLog libsoundtouch-1.8.0.ebuild
Date: Sat, 25 Jan 2014 09:08:57
Message-Id: 20140125090853.5DA202004C@flycatcher.gentoo.org
1 radhermit 14/01/25 09:08:53
2
3 Modified: ChangeLog
4 Added: libsoundtouch-1.8.0.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.72 media-libs/libsoundtouch/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.72&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?rev=1.72&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/ChangeLog?r1=1.71&r2=1.72
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v
20 retrieving revision 1.71
21 retrieving revision 1.72
22 diff -u -r1.71 -r1.72
23 --- ChangeLog 25 Jan 2014 09:06:33 -0000 1.71
24 +++ ChangeLog 25 Jan 2014 09:08:53 -0000 1.72
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/libsoundtouch
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.71 2014/01/25 09:06:33 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.72 2014/01/25 09:08:53 radhermit Exp $
30 +
31 +*libsoundtouch-1.8.0 (25 Jan 2014)
32 +
33 + 25 Jan 2014; Tim Harder <radhermit@g.o> +libsoundtouch-1.8.0.ebuild:
34 + Version bump.
35
36 25 Jan 2014; Tim Harder <radhermit@g.o> libsoundtouch-1.7.1.ebuild:
37 Fix build with newer versions of automake (bug #468716).
38
39
40
41 1.1 media-libs/libsoundtouch/libsoundtouch-1.8.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.8.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.8.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libsoundtouch-1.8.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.8.0.ebuild,v 1.1 2014/01/25 09:08:53 radhermit Exp $
51
52 EAPI=5
53 inherit autotools eutils flag-o-matic
54
55 MY_PN=${PN/lib}
56
57 DESCRIPTION="Audio processing library for changing tempo, pitch and playback rates."
58 HOMEPAGE="http://www.surina.net/soundtouch/"
59 SRC_URI="http://www.surina.net/soundtouch/${P/lib}.tar.gz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
64 IUSE="sse2 static-libs"
65
66 DEPEND="virtual/pkgconfig"
67
68 S=${WORKDIR}/${MY_PN}
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${PN}-1.7.0-flags.patch
72 sed -i "s:^\(pkgdoc_DATA=\)COPYING.TXT :\1:" Makefile.am || die
73 sed -i 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:g' configure.ac || die
74 eautoreconf
75 }
76
77 src_configure() {
78 econf \
79 --enable-shared \
80 --disable-integer-samples \
81 --enable-x86-optimizations=$(usex sse2) \
82 $(use_enable static-libs static)
83 }
84
85 src_compile() {
86 emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" pkgdocdir="${EPREFIX}"/usr/share/doc/${PF}/html install
91 prune_libtool_files
92 }