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-sound/sox: ChangeLog sox-14.0.0.ebuild
Date: Tue, 11 Sep 2007 21:12:44
Message-Id: E1IVCvP-00032F-IS@stork.gentoo.org
1 aballier 07/09/11 21:05:35
2
3 Modified: ChangeLog
4 Added: sox-14.0.0.ebuild
5 Log:
6 version bump, dropping mips keyword for ladspa useflag and deps
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.66 media-sound/sox/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/sox/ChangeLog?rev=1.66&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/sox/ChangeLog?rev=1.66&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/sox/ChangeLog?r1=1.65&r2=1.66
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v
19 retrieving revision 1.65
20 retrieving revision 1.66
21 diff -u -r1.65 -r1.66
22 --- ChangeLog 5 Aug 2007 16:16:37 -0000 1.65
23 +++ ChangeLog 11 Sep 2007 21:05:35 -0000 1.66
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/sox
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.65 2007/08/05 16:16:37 drac Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/sox/ChangeLog,v 1.66 2007/09/11 21:05:35 aballier Exp $
29 +
30 +*sox-14.0.0 (11 Sep 2007)
31 +
32 + 11 Sep 2007; Alexis Ballier <aballier@g.o> +sox-14.0.0.ebuild:
33 + version bump, dropping mips keyword for ladspa useflag and deps
34
35 05 Aug 2007; Samuli Suominen <drac@g.o> sox-12.17.9.ebuild,
36 sox-12.18.2.ebuild:
37
38
39
40 1.1 media-sound/sox/sox-14.0.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/sox/sox-14.0.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/sox/sox-14.0.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: sox-14.0.0.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-sound/sox/sox-14.0.0.ebuild,v 1.1 2007/09/11 21:05:35 aballier Exp $
50
51 inherit flag-o-matic eutils autotools
52
53 DESCRIPTION="The swiss army knife of sound processing programs"
54 HOMEPAGE="http://sox.sourceforge.net"
55 SRC_URI="mirror://sourceforge/sox/${P}.tar.gz"
56
57 LICENSE="LGPL-2.1"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
60 IUSE="alsa ao debug ffmpeg flac encode ladspa mad libsamplerate ogg oss sndfile"
61
62 DEPEND="alsa? ( media-libs/alsa-lib )
63 encode? ( media-sound/lame )
64 flac? ( media-libs/flac )
65 mad? ( media-libs/libmad )
66 sndfile? ( media-libs/libsndfile )
67 libsamplerate? ( media-libs/libsamplerate )
68 ogg? ( media-libs/libvorbis media-libs/libogg )
69 ao? ( media-libs/libao )
70 ffmpeg? ( media-video/ffmpeg )
71 ladspa? ( media-libs/ladspa-sdk )"
72 # Fails to compile here ...
73 # amrnb? ( media-libs/amrnb )
74 # amrwb? ( media-libs/amrwb )
75
76 src_compile () {
77 # Fixes wav segfaults. See Bug #35745.
78 append-flags -fsigned-char
79
80 econf $(use_enable alsa) \
81 $(use_enable debug) \
82 $(use_enable ao libao) \
83 $(use_enable oss) \
84 $(use_with encode lame) \
85 $(use_with mad) \
86 $(use_with sndfile) \
87 $(use_with flac) \
88 $(use_with ogg) \
89 $(use_with libsamplerate samplerate) \
90 $(use_with ffmpeg) \
91 $(use_with ladspa) \
92 --without-amr-wb \
93 --without-amr-nb \
94 --enable-fast-ulaw \
95 --enable-fast-alaw \
96 || die "configure failed"
97
98 #workaround for flac, it wants to include a damn config.h file
99 touch src/config.h
100 emake || die "make failed"
101 }
102
103 src_install() {
104 emake DESTDIR="${D}" install || die "make install failed"
105
106 dodoc NEWS ChangeLog README AUTHORS
107 }
108
109
110
111 --
112 gentoo-commits@g.o mailing list