public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/libvpx: metadata.xml ChangeLog libvpx-9999.ebuild
@ 2010-06-10 16:02 Luca Barbato (lu_zero)
  0 siblings, 0 replies; 2+ messages in thread
From: Luca Barbato (lu_zero) @ 2010-06-10 16:02 UTC (permalink / raw
  To: gentoo-commits

lu_zero     10/06/10 16:02:09

  Added:                metadata.xml ChangeLog libvpx-9999.ebuild
  Log:
  initial libvpx ebuild, only live
  (Portage version: 2.2.00.14200-prefix/cvs/Darwin i386)

Revision  Changes    Path
1.1                  media-libs/libvpx/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/metadata.xml?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/metadata.xml?rev=1.1&content-type=text/plain

Index: metadata.xml
===================================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
  <herd>video</herd>
  <maintainer>
    <email>media-video@gentoo.org</email>
  </maintainer>
  <use>
    <flag name="postproc">Enable additional post processing filters</flag>
  </use>
</pkgmetadata>



1.1                  media-libs/libvpx/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.1&content-type=text/plain

Index: ChangeLog
===================================================================
# 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 $

*libvpx-9999 (10 Jun 2010)

  10 Jun 2010; Luca Barbato <lu_zero@gentoo.org> +libvpx-9999.ebuild:
  Initial live ebuild, 0.9.0 release _SHOULD_NOT_ be put into portage, thanks
  to the people in bug #320817 for the support




1.1                  media-libs/libvpx/libvpx-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?rev=1.1&content-type=text/plain

Index: libvpx-9999.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-9999.ebuild,v 1.1 2010/06/10 16:02:09 lu_zero Exp $

EAPI=2
inherit eutils multilib toolchain-funcs git

EGIT_REPO_URI="git://review.webmproject.org/${PN}.git"

DESCRIPTION="WebM VP8 Codec SDK"
HOMEPAGE="http://www.webmproject.org"

LICENSE="BSD"
SLOT="0"
KEYWORDS=""
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 LICENSE README || die
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-libs/libvpx: metadata.xml ChangeLog libvpx-9999.ebuild
@ 2011-06-22 16:09 Alexis Ballier (aballier)
  0 siblings, 0 replies; 2+ messages in thread
From: Alexis Ballier (aballier) @ 2011-06-22 16:09 UTC (permalink / raw
  To: gentoo-commits

aballier    11/06/22 16:09:38

  Modified:             metadata.xml ChangeLog libvpx-9999.ebuild
  Log:
  add sse4_1 useflag
  
  (Portage version: 2.2.0_alpha41/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  media-libs/libvpx/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/metadata.xml?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/metadata.xml?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/metadata.xml?r1=1.2&r2=1.3

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml	12 Jun 2010 21:45:36 -0000	1.2
+++ metadata.xml	22 Jun 2011 16:09:38 -0000	1.3
@@ -9,5 +9,6 @@
     <flag name="postproc">Enable additional post processing filters</flag>
     <flag name="sse3">Enable optimization for SSE3 capable chips</flag>
     <flag name="ssse3">faster floating point optimization for SSSE3 capable chips (Intel Core 2 and later chips)</flag>
+	<flag name="sse4_1">Enable optimization for SSE4_1 capable processors (Intel Core 2 Penryn and later chips)</flag>
   </use>
 </pkgmetadata>



1.22                 media-libs/libvpx/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	22 Jun 2011 16:03:13 -0000	1.21
+++ ChangeLog	22 Jun 2011 16:09:38 -0000	1.22
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/libvpx
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.21 2011/06/22 16:03:13 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.22 2011/06/22 16:09:38 aballier Exp $
+
+  22 Jun 2011; Alexis Ballier <aballier@gentoo.org> libvpx-9999.ebuild,
+  metadata.xml:
+  add sse4_1 useflag
 
   22 Jun 2011; Alexis Ballier <aballier@gentoo.org> libvpx-9999.ebuild:
   use git-2.eclass



1.11                 media-libs/libvpx/libvpx-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?r1=1.10&r2=1.11

Index: libvpx-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libvpx-9999.ebuild	22 Jun 2011 16:03:13 -0000	1.10
+++ libvpx-9999.ebuild	22 Jun 2011 16:09:38 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 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.10 2011/06/22 16:03:13 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v 1.11 2011/06/22 16:09:38 aballier Exp $
 
 EAPI=4
 inherit multilib toolchain-funcs
@@ -22,7 +22,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-IUSE="altivec debug doc mmx postproc sse sse2 sse3 ssse3 +threads"
+IUSE="altivec debug doc mmx postproc sse sse2 sse3 ssse3 sse4_1 +threads"
 
 RDEPEND=""
 DEPEND="amd64? ( dev-lang/yasm )
@@ -51,6 +51,7 @@
 		$(use_enable sse2) \
 		$(use_enable sse3) \
 		$(use_enable ssse3) \
+		$(use_enable sse4_1) \
 		$(use_enable debug) \
 		$(use_enable debug debug-libs) \
 		$(use_enable doc install-docs) \






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-06-22 16:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-22 16:09 [gentoo-commits] gentoo-x86 commit in media-libs/libvpx: metadata.xml ChangeLog libvpx-9999.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2010-06-10 16:02 Luca Barbato (lu_zero)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox