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/libvorbis: ChangeLog libvorbis-1.2.2.ebuild
Date: Thu, 25 Jun 2009 09:20:39
Message-Id: E1MJl8H-0003ol-N4@stork.gentoo.org
1 aballier 09/06/25 09:20:37
2
3 Modified: ChangeLog
4 Added: libvorbis-1.2.2.ebuild
5 Log:
6 version bump, by Arseny Solokha <b0ntrict0r@××××××.ru>, bug #275349
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.117 media-libs/libvorbis/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libvorbis/ChangeLog?rev=1.117&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libvorbis/ChangeLog?rev=1.117&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libvorbis/ChangeLog?r1=1.116&r2=1.117
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libvorbis/ChangeLog,v
19 retrieving revision 1.116
20 retrieving revision 1.117
21 diff -u -r1.116 -r1.117
22 --- ChangeLog 13 Jun 2009 14:08:37 -0000 1.116
23 +++ ChangeLog 25 Jun 2009 09:20:37 -0000 1.117
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/libvorbis
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvorbis/ChangeLog,v 1.116 2009/06/13 14:08:37 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvorbis/ChangeLog,v 1.117 2009/06/25 09:20:37 aballier Exp $
29 +
30 +*libvorbis-1.2.2 (25 Jun 2009)
31 +
32 + 25 Jun 2009; Alexis Ballier <aballier@g.o> +libvorbis-1.2.2.ebuild:
33 + version bump, by Arseny Solokha <b0ntrict0r@××××××.ru>, bug #275349
34
35 13 Jun 2009; Raúl Porcel <armin76@g.o>
36 libvorbis-1.2.1_rc1-r2.ebuild:
37
38
39
40 1.1 media-libs/libvorbis/libvorbis-1.2.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libvorbis/libvorbis-1.2.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libvorbis/libvorbis-1.2.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libvorbis-1.2.2.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/libvorbis/libvorbis-1.2.2.ebuild,v 1.1 2009/06/25 09:20:37 aballier Exp $
50
51 EAPI=2
52 inherit autotools flag-o-matic eutils toolchain-funcs
53
54 MY_P=${P/_/}
55 DESCRIPTION="The Ogg Vorbis sound file format library with aoTuV patch"
56 HOMEPAGE="http://xiph.org/vorbis"
57 SRC_URI="http://downloads.xiph.org/releases/vorbis/${P}.tar.gz"
58 # aotuv? ( mirror://gentoo/${PN}-1.2.1_rc1-aotuv_beta5.7.patch.bz2
59 # http://dev.gentoo.org/~ssuominen/${PN}-1.2.1_rc1-aotuv_beta5.7.patch.bz2 )"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
64 IUSE="doc"
65 # +aotuv: seems it is merged
66
67 RDEPEND="media-libs/libogg"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig"
70
71 S=${WORKDIR}/${MY_P}
72
73 src_prepare() {
74 #use aotuv && epatch "${WORKDIR}"/${PN}-1.2.1_rc1-aotuv_beta5.7.patch
75
76 sed -e 's:-O20::g' -e 's:-mfused-madd::g' -e 's:-mcpu=750::g' \
77 -i configure.ac || die "sed failed"
78
79 AT_M4DIR=m4 eautoreconf
80 }
81
82 src_install() {
83 emake DESTDIR="${D}" install || die "emake install failed"
84
85 rm -rf "${D}"/usr/share/doc/${PN}*
86
87 dodoc AUTHORS CHANGES README todo.txt
88 #use aotuv && dodoc aoTuV_README-1st.txt aoTuV_technical.txt
89
90 if use doc; then
91 docinto txt
92 dodoc doc/*.txt
93 docinto html
94 dohtml -r doc/*
95 insinto /usr/share/doc/${PF}/pdf
96 doins doc/*.pdf
97 fi
98 }