* [gentoo-commits] gentoo-x86 commit in media-libs/libvpx: ChangeLog libvpx-0.9.0_p20100612.ebuild libvpx-9999.ebuild
@ 2010-06-12 17:46 Dror Levin (spatz)
0 siblings, 0 replies; 2+ messages in thread
From: Dror Levin (spatz) @ 2010-06-12 17:46 UTC (permalink / raw
To: gentoo-commits
spatz 10/06/12 17:46:34
Modified: ChangeLog libvpx-9999.ebuild
Added: libvpx-0.9.0_p20100612.ebuild
Log:
Added snapshot, bug 320817. Remove unneeded eutils inherit.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.2 media-libs/libvpx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?r1=1.1&r2=1.2
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog 10 Jun 2010 16:02:09 -0000 1.1
+++ ChangeLog 12 Jun 2010 17:46:34 -0000 1.2
@@ -1,6 +1,12 @@
# ChangeLog for media-libs/libvpx
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.1 2010/06/10 16:02:09 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.2 2010/06/12 17:46:34 spatz Exp $
+
+*libvpx-0.9.0_p20100612 (12 Jun 2010)
+
+ 12 Jun 2010; Dror Levin <spatz@gentoo.org> +libvpx-0.9.0_p20100612.ebuild,
+ libvpx-9999.ebuild:
+ Added snapshot, bug 320817. Remove unneeded eutils inherit.
*libvpx-9999 (10 Jun 2010)
1.3 media-libs/libvpx/libvpx-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?r1=1.2&r2=1.3
Index: libvpx-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libvpx-9999.ebuild 10 Jun 2010 16:02:38 -0000 1.2
+++ libvpx-9999.ebuild 12 Jun 2010 17:46:34 -0000 1.3
@@ -1,9 +1,9 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v 1.2 2010/06/10 16:02:38 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v 1.3 2010/06/12 17:46:34 spatz Exp $
EAPI=2
-inherit eutils multilib toolchain-funcs git
+inherit multilib toolchain-funcs git
EGIT_REPO_URI="git://review.webmproject.org/${PN}.git"
1.1 media-libs/libvpx/libvpx-0.9.0_p20100612.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-0.9.0_p20100612.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-0.9.0_p20100612.ebuild?rev=1.1&content-type=text/plain
Index: libvpx-0.9.0_p20100612.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-0.9.0_p20100612.ebuild,v 1.1 2010/06/12 17:46:34 spatz Exp $
EAPI=2
inherit multilib toolchain-funcs
DESCRIPTION="WebM VP8 Codec SDK"
HOMEPAGE="http://www.webmproject.org"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug doc postproc +threads"
RDEPEND=""
DEPEND="dev-lang/yasm
doc? (
app-doc/doxygen
dev-lang/php
)
"
src_configure() {
tc-export CC
./configure \
--prefix=/usr \
--libdir=/usr/$(get_libdir) \
--enable-pic \
--enable-vp8 \
--enable-shared \
$(use_enable debug) \
$(use_enable debug debug-libs) \
$(use_enable doc install-docs) \
$(use_enable postproc) \
$(use_enable threads multithread) \
|| die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS CHANGELOG README || die
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-libs/libvpx: ChangeLog libvpx-0.9.0_p20100612.ebuild libvpx-9999.ebuild
@ 2010-06-12 21:11 Dror Levin (spatz)
0 siblings, 0 replies; 2+ messages in thread
From: Dror Levin (spatz) @ 2010-06-12 21:11 UTC (permalink / raw
To: gentoo-commits
spatz 10/06/12 21:11:14
Modified: ChangeLog libvpx-0.9.0_p20100612.ebuild
libvpx-9999.ebuild
Log:
Only dep on yasm in x86/amd64.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.3 media-libs/libvpx/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?r1=1.2&r2=1.3
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog 12 Jun 2010 17:46:34 -0000 1.2
+++ ChangeLog 12 Jun 2010 21:11:14 -0000 1.3
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libvpx
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.2 2010/06/12 17:46:34 spatz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.3 2010/06/12 21:11:14 spatz Exp $
+
+ 12 Jun 2010; Dror Levin <spatz@gentoo.org> libvpx-0.9.0_p20100612.ebuild,
+ libvpx-9999.ebuild:
+ Only dep on yasm in x86/amd64.
*libvpx-0.9.0_p20100612 (12 Jun 2010)
1.2 media-libs/libvpx/libvpx-0.9.0_p20100612.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-0.9.0_p20100612.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-0.9.0_p20100612.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-0.9.0_p20100612.ebuild?r1=1.1&r2=1.2
Index: libvpx-0.9.0_p20100612.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-0.9.0_p20100612.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libvpx-0.9.0_p20100612.ebuild 12 Jun 2010 17:46:34 -0000 1.1
+++ libvpx-0.9.0_p20100612.ebuild 12 Jun 2010 21:11:14 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-0.9.0_p20100612.ebuild,v 1.1 2010/06/12 17:46:34 spatz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-0.9.0_p20100612.ebuild,v 1.2 2010/06/12 21:11:14 spatz Exp $
EAPI=2
inherit multilib toolchain-funcs
@@ -15,7 +15,8 @@
IUSE="debug doc postproc +threads"
RDEPEND=""
-DEPEND="dev-lang/yasm
+DEPEND="amd64? ( dev-lang/yasm )
+ x86? ( dev-lang/yasm )
doc? (
app-doc/doxygen
dev-lang/php
1.4 media-libs/libvpx/libvpx-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?r1=1.3&r2=1.4
Index: libvpx-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libvpx-9999.ebuild 12 Jun 2010 17:46:34 -0000 1.3
+++ libvpx-9999.ebuild 12 Jun 2010 21:11:14 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v 1.3 2010/06/12 17:46:34 spatz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v 1.4 2010/06/12 21:11:14 spatz Exp $
EAPI=2
inherit multilib toolchain-funcs git
@@ -16,7 +16,8 @@
IUSE="debug doc postproc +threads"
RDEPEND=""
-DEPEND="dev-lang/yasm
+DEPEND="amd64? ( dev-lang/yasm )
+ x86? ( dev-lang/yasm )
doc? (
app-doc/doxygen
dev-lang/php
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-06-12 21:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-12 21:11 [gentoo-commits] gentoo-x86 commit in media-libs/libvpx: ChangeLog libvpx-0.9.0_p20100612.ebuild libvpx-9999.ebuild Dror Levin (spatz)
-- strict thread matches above, loose matches on Subject: below --
2010-06-12 17:46 Dror Levin (spatz)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox