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/tremor: ChangeLog tremor-0_pre20130223-r1.ebuild
Date: Sun, 29 Dec 2013 15:59:39
Message-Id: 20131229155936.166E82004B@flycatcher.gentoo.org
1 aballier 13/12/29 15:59:35
2
3 Modified: ChangeLog
4 Added: tremor-0_pre20130223-r1.ebuild
5 Log:
6 convert to multilib, bug #496390
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.18 media-libs/tremor/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tremor/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tremor/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tremor/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/tremor/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 14 Oct 2013 05:59:26 -0000 1.17
24 +++ ChangeLog 29 Dec 2013 15:59:35 -0000 1.18
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/tremor
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/tremor/ChangeLog,v 1.17 2013/10/14 05:59:26 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/tremor/ChangeLog,v 1.18 2013/12/29 15:59:35 aballier Exp $
30 +
31 +*tremor-0_pre20130223-r1 (29 Dec 2013)
32 +
33 + 29 Dec 2013; Alexis Ballier <aballier@g.o>
34 + +tremor-0_pre20130223-r1.ebuild:
35 + convert to multilib, bug #496390
36
37 14 Oct 2013; Agostino Sarubbo <ago@g.o> tremor-0_pre20120120.ebuild:
38 Stable for arm, wrt bug #480908
39
40
41
42 1.1 media-libs/tremor/tremor-0_pre20130223-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tremor/tremor-0_pre20130223-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/tremor/tremor-0_pre20130223-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tremor-0_pre20130223-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/tremor/tremor-0_pre20130223-r1.ebuild,v 1.1 2013/12/29 15:59:35 aballier Exp $
52
53 EAPI=5
54
55 # svn export http://svn.xiph.org/trunk/Tremor tremor-${PV}
56
57 inherit autotools eutils multilib-minimal
58
59 DESCRIPTION="A fixed-point version of the Ogg Vorbis decoder (also known as libvorbisidec)"
60 HOMEPAGE="http://wiki.xiph.org/Tremor"
61 SRC_URI="http://dev.gentoo.org/~ssuominen/${P}.tar.xz"
62
63 LICENSE="BSD"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
66 IUSE="low-accuracy static-libs"
67
68 RDEPEND="media-libs/libogg:=[${MULTILIB_USEDEP}]"
69 DEPEND="${RDEPEND}
70 virtual/pkgconfig"
71
72 DOCS=( "CHANGELOG" "README" )
73
74 src_prepare() {
75 sed -i \
76 -e '/CFLAGS/s:-O2::' \
77 -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \
78 configure.in || die
79
80 eautoreconf
81 }
82
83 multilib_src_configure() {
84 ECONF_SOURCE="${S}" econf \
85 $(use_enable static-libs static) \
86 $(use_enable low-accuracy)
87 }
88
89 multilib_src_install_all() {
90 einstalldocs
91 dohtml -r doc/*
92 prune_libtool_files
93 }