Gentoo Archives: gentoo-commits

From: "Luca Barbato (lu_zero)" <lu_zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libvpx: ChangeLog libvpx-0.9.2.ebuild
Date: Wed, 08 Sep 2010 00:00:18
Message-Id: 20100908000010.B375620051@flycatcher.gentoo.org
1 lu_zero 10/09/08 00:00:10
2
3 Modified: ChangeLog
4 Added: libvpx-0.9.2.ebuild
5 Log:
6 New version
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 media-libs/libvpx/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 12 Jun 2010 21:45:36 -0000 1.4
23 +++ ChangeLog 8 Sep 2010 00:00:10 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/libvpx
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.4 2010/06/12 21:45:36 spatz Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.5 2010/09/08 00:00:10 lu_zero Exp $
29 +
30 +*libvpx-0.9.2 (07 Sep 2010)
31 +
32 + 07 Sep 2010; Luca Barbato <lu_zero@g.o> +libvpx-0.9.2.ebuild:
33 + New version
34
35 12 Jun 2010; Dror Levin <spatz@g.o> libvpx-0.9.0_p20100612.ebuild,
36 libvpx-9999.ebuild, metadata.xml:
37
38
39
40 1.1 media-libs/libvpx/libvpx-0.9.2.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-0.9.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-0.9.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libvpx-0.9.2.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-0.9.2.ebuild,v 1.1 2010/09/08 00:00:10 lu_zero Exp $
50
51 EAPI=2
52 inherit multilib toolchain-funcs
53
54 if [[ ${PV} == *9999* ]]; then
55 inherit git
56 EGIT_REPO_URI="git://review.webmproject.org/${PN}.git"
57 KEYWORDS=""
58 elif [[ ${PV} == *pre* ]]; then
59 SRC_URI="mirror://gentoo/${P}.tar.bz2"
60 KEYWORDS="~amd64 ~x86"
61 else
62 SRC_URI="http://webm.googlecode.com/files/${PN}-v${PV}.tar.bz2"
63 KEYWORDS="~amd64 ~x86"
64 fi
65
66 DESCRIPTION="WebM VP8 Codec SDK"
67 HOMEPAGE="http://www.webmproject.org"
68
69 LICENSE="BSD"
70 SLOT="0"
71 IUSE="altivec debug doc mmx postproc sse sse2 sse3 ssse3 +threads"
72
73 RDEPEND=""
74 DEPEND="amd64? ( dev-lang/yasm )
75 x86? ( dev-lang/yasm )
76 doc? (
77 app-doc/doxygen
78 dev-lang/php
79 )
80 "
81
82 src_configure() {
83 tc-export CC
84 ./configure \
85 --prefix=/usr \
86 --libdir=/usr/$(get_libdir) \
87 --enable-pic \
88 --enable-vp8 \
89 --enable-shared \
90 $(use_enable altivec) \
91 $(use_enable mmx) \
92 $(use_enable sse) \
93 $(use_enable sse2) \
94 $(use_enable sse3) \
95 $(use_enable ssse3) \
96 $(use_enable debug) \
97 $(use_enable debug debug-libs) \
98 $(use_enable doc install-docs) \
99 $(use_enable postproc) \
100 $(use_enable threads multithread) \
101 || die
102 }
103
104 src_install() {
105 emake DESTDIR="${D}" install || die
106
107 dodoc AUTHORS CHANGELOG README || die
108 }