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/libfishsound: libfishsound-0.9.2.ebuild ChangeLog
Date: Wed, 04 Nov 2009 11:23:12
Message-Id: E1N5dxF-0000o8-7H@stork.gentoo.org
1 aballier 09/11/04 11:23:09
2
3 Modified: ChangeLog
4 Added: libfishsound-0.9.2.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc48/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 media-libs/libfishsound/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 14 Sep 2009 21:24:56 -0000 1.6
23 +++ ChangeLog 4 Nov 2009 11:23:08 -0000 1.7
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/libfishsound
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v 1.6 2009/09/14 21:24:56 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v 1.7 2009/11/04 11:23:08 aballier Exp $
29 +
30 +*libfishsound-0.9.2 (04 Nov 2009)
31 +
32 + 04 Nov 2009; Alexis Ballier <aballier@g.o>
33 + +libfishsound-0.9.2.ebuild:
34 + version bump
35
36 14 Sep 2009; Markus Meier <maekke@g.o> libfishsound-0.9.1.ebuild:
37 amd64/x86 stable, bug #284380
38
39
40
41 1.1 media-libs/libfishsound/libfishsound-0.9.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/libfishsound-0.9.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libfishsound/libfishsound-0.9.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libfishsound-0.9.2.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/libfishsound-0.9.2.ebuild,v 1.1 2009/11/04 11:23:08 aballier Exp $
51
52 DESCRIPTION="Simple programming interface for decoding and encoding audio data using vorbis or speex"
53 HOMEPAGE="http://www.annodex.net/software/libfishsound/html/"
54 SRC_URI="http://www.annodex.net/software/libfishsound/download/${P}.tar.gz"
55
56 LICENSE="BSD"
57 SLOT="0"
58 KEYWORDS="~amd64 ~x86"
59 IUSE="doc speex"
60
61 RDEPEND="media-libs/libvorbis media-libs/libogg
62 speex? ( media-libs/speex )"
63 # flac? ( media-libs/flac )"
64 DEPEND="${RDEPEND}
65 dev-util/pkgconfig
66 doc? ( app-doc/doxygen virtual/latex-base )"
67
68 src_unpack() {
69 unpack ${A}
70 cd "${S}"
71 use doc || sed -i -e "s/doxygen/doxygen-dummy/" configure
72 rm -rf "${S}/doc/libfishsound"
73 }
74
75 src_compile() {
76 local myconf=""
77 # use flac ||
78 # disable it for now, it causes compile failures in sonic-visualiser because
79 # it adds -I/usr/include/FLAC to pkgconfig cflags...
80 myconf="$myconf --disable-flac"
81 use speex || myconf="$myconf --disable-speex"
82 econf $myconf
83
84 emake || die "emake failed"
85 if use doc; then
86 export VARTEXFONTS="${T}/fonts"
87 cd "${S}/doc/libfishsound/latex"
88 emake refman.ps || die "failed to create refman.ps"
89 fi
90 }
91
92 src_install() {
93 emake DESTDIR="${D}" install || die "emake install failed"
94 dodoc AUTHORS ChangeLog README
95 }