Gentoo Archives: gentoo-commits

From: "Patrick McLean (chutzpah)" <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/speex: ChangeLog speex-1.2_rc1.ebuild
Date: Thu, 31 Jul 2008 02:59:02
Message-Id: E1KOONX-00035N-88@stork.gentoo.org
1 chutzpah 08/07/31 02:58:59
2
3 Modified: ChangeLog
4 Added: speex-1.2_rc1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc5/cvs/Linux 2.6.26-gentoo x86_64)
8
9 Revision Changes Path
10 1.87 media-libs/speex/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/speex/ChangeLog?rev=1.87&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/speex/ChangeLog?rev=1.87&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/speex/ChangeLog?r1=1.86&r2=1.87
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/speex/ChangeLog,v
19 retrieving revision 1.86
20 retrieving revision 1.87
21 diff -u -r1.86 -r1.87
22 --- ChangeLog 16 Jun 2008 11:01:24 -0000 1.86
23 +++ ChangeLog 31 Jul 2008 02:58:58 -0000 1.87
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/speex
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/speex/ChangeLog,v 1.86 2008/06/16 11:01:24 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/speex/ChangeLog,v 1.87 2008/07/31 02:58:58 chutzpah Exp $
29 +
30 +*speex-1.2_rc1 (31 Jul 2008)
31 +
32 + 31 Jul 2008; Patrick McLean <chutzpah@g.o>
33 + +files/speex-1.2_rc1-configure.patch, +speex-1.2_rc1.ebuild:
34 + Version bump.
35
36 16 Jun 2008; Diego Pettenò <flameeyes@g.o>
37 speex-1.2_beta3_p2.ebuild:
38
39
40
41 1.1 media-libs/speex/speex-1.2_rc1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/speex/speex-1.2_rc1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/speex/speex-1.2_rc1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: speex-1.2_rc1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/speex/speex-1.2_rc1.ebuild,v 1.1 2008/07/31 02:58:58 chutzpah Exp $
51
52 inherit autotools eutils flag-o-matic
53
54 MY_P=${P/_} ; MY_P=${MY_P/_p/.}
55
56 DESCRIPTION="Audio compression format designed for speech."
57 HOMEPAGE="http://www.speex.org"
58 SRC_URI="http://downloads.xiph.org/releases/speex/${MY_P}.tar.gz"
59
60 LICENSE="BSD"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
63 IUSE="ogg sse"
64
65 RDEPEND="ogg? ( media-libs/libogg )"
66 DEPEND="${RDEPEND}"
67
68 S=${WORKDIR}/${MY_P}
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73 epatch "${FILESDIR}"/${P}-configure.patch
74
75 sed -i -e 's:noinst_PROGRAMS:check_PROGRAMS:' \
76 "${S}"/libspeex/Makefile.am \
77 || die "unable to disable tests building"
78 eautoreconf
79 }
80
81 src_compile() {
82 append-flags -D_FILE_OFFSET_BITS=64
83
84 econf $(use_enable sse) $(use_enable ogg)
85 emake || die "emake failed."
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" \
90 install || die "emake install failed."
91
92 dodoc AUTHORS ChangeLog NEWS README* TODO
93 }