public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/libtheora: ChangeLog libtheora-1.1.1-r1.ebuild
@ 2013-06-27 16:22 Alexis Ballier (aballier)
  0 siblings, 0 replies; 5+ messages in thread
From: Alexis Ballier (aballier) @ 2013-06-27 16:22 UTC (permalink / raw
  To: gentoo-commits

aballier    13/06/27 16:22:31

  Modified:             ChangeLog
  Added:                libtheora-1.1.1-r1.ebuild
  Log:
  go multilib
  
  (Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.111                media-libs/libtheora/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog	25 Apr 2013 18:54:13 -0000	1.110
+++ ChangeLog	27 Jun 2013 16:22:31 -0000	1.111
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/libtheora
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.110 2013/04/25 18:54:13 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.111 2013/06/27 16:22:31 aballier Exp $
+
+*libtheora-1.1.1-r1 (27 Jun 2013)
+
+  27 Jun 2013; Alexis Ballier <aballier@gentoo.org> +libtheora-1.1.1-r1.ebuild:
+  go multilib
 
   25 Apr 2013; Tim Harder <radhermit@gentoo.org> libtheora-1.1.1.ebuild:
   Fix autoreconf failures with automake-1.13 (bug #467006).



1.1                  media-libs/libtheora/libtheora-1.1.1-r1.ebuild

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

Index: libtheora-1.1.1-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v 1.1 2013/06/27 16:22:31 aballier Exp $

EAPI=5
inherit autotools eutils flag-o-matic multilib-minimal

DESCRIPTION="The Theora Video Compression Codec"
HOMEPAGE="http://www.theora.org"
SRC_URI="http://downloads.xiph.org/releases/theora/${P/_}.tar.bz2"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
IUSE="doc +encode examples static-libs"

RDEPEND="media-libs/libogg:=[${MULTILIB_USEDEP}]
	encode? ( media-libs/libvorbis:=[${MULTILIB_USEDEP}] )
	examples? (
		media-libs/libpng:0=
		>=media-libs/libsdl-0.11.0
		media-libs/libvorbis:=
		)
	abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224-r1
		!app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )"
DEPEND="${RDEPEND}
	doc? ( app-doc/doxygen )
	virtual/pkgconfig"
REQUIRED_USE="examples? ( encode )" #285895

S=${WORKDIR}/${P/_}

VARTEXFONTS=${T}/fonts

DOCS=( AUTHORS CHANGES README )

src_prepare() {
	epatch \
		"${FILESDIR}"/${PN}-1.0_beta2-flags.patch \
		"${FILESDIR}"/${P}-libpng16.patch #465450

	# bug 467006
	sed -i "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" configure.ac || die

	AT_M4DIR=m4 eautoreconf
}

multilib_src_configure() {
	use x86 && filter-flags -fforce-addr -frename-registers #200549
	use doc || export ac_cv_prog_HAVE_DOXYGEN=false

	local myconf
	if [ "${ABI}" = "${DEFAULT_ABI}" ] ; then
		myconf=" $(use_enable examples)"
	else
		# those will be overwritten anyway
		myconf=" --disable-examples"
	fi

	# --disable-spec because LaTeX documentation has been prebuilt
	ECONF_SOURCE="${S}" econf \
		$(use_enable static-libs static) \
		--disable-spec \
		$(use_enable encode) \
		${myconf}
}

multilib_src_install() {
	emake \
		DESTDIR="${D}" \
		docdir="${EPREFIX}"/usr/share/doc/${PF} \
		install

	if use examples && [ "${ABI}" = "${DEFAULT_ABI}" ]; then
		if use doc; then
			insinto /usr/share/doc/${PF}/examples
			doins examples/*.[ch]
		fi

		dobin examples/.libs/png2theora
		for bin in dump_{psnr,video} {encoder,player}_example; do
			newbin examples/.libs/${bin} theora_${bin}
		done
	fi

	prune_libtool_files
}





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

* [gentoo-commits] gentoo-x86 commit in media-libs/libtheora: ChangeLog libtheora-1.1.1-r1.ebuild
@ 2013-07-02 22:08 Alexis Ballier (aballier)
  0 siblings, 0 replies; 5+ messages in thread
From: Alexis Ballier (aballier) @ 2013-07-02 22:08 UTC (permalink / raw
  To: gentoo-commits

aballier    13/07/02 22:08:20

  Modified:             ChangeLog libtheora-1.1.1-r1.ebuild
  Log:
  Fix installation with USE=doc examples, bug #475138 by  Conway S. Smith  and  Jeroen Roovers.
  
  (Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.112                media-libs/libtheora/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v
retrieving revision 1.111
retrieving revision 1.112
diff -u -r1.111 -r1.112
--- ChangeLog	27 Jun 2013 16:22:31 -0000	1.111
+++ ChangeLog	2 Jul 2013 22:08:20 -0000	1.112
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/libtheora
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.111 2013/06/27 16:22:31 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.112 2013/07/02 22:08:20 aballier Exp $
+
+  02 Jul 2013; Alexis Ballier <aballier@gentoo.org> libtheora-1.1.1-r1.ebuild:
+  Fix installation with USE=doc examples, bug #475138 by Conway S. Smith and
+  Jeroen Roovers.
 
 *libtheora-1.1.1-r1 (27 Jun 2013)
 



1.2                  media-libs/libtheora/libtheora-1.1.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild?r1=1.1&r2=1.2

Index: libtheora-1.1.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libtheora-1.1.1-r1.ebuild	27 Jun 2013 16:22:31 -0000	1.1
+++ libtheora-1.1.1-r1.ebuild	2 Jul 2013 22:08:20 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v 1.1 2013/06/27 16:22:31 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v 1.2 2013/07/02 22:08:20 aballier Exp $
 
 EAPI=5
 inherit autotools eutils flag-o-matic multilib-minimal
@@ -72,11 +72,6 @@
 		install
 
 	if use examples && [ "${ABI}" = "${DEFAULT_ABI}" ]; then
-		if use doc; then
-			insinto /usr/share/doc/${PF}/examples
-			doins examples/*.[ch]
-		fi
-
 		dobin examples/.libs/png2theora
 		for bin in dump_{psnr,video} {encoder,player}_example; do
 			newbin examples/.libs/${bin} theora_${bin}
@@ -85,3 +80,12 @@
 
 	prune_libtool_files
 }
+
+multilib_src_install_all() {
+	if use examples && use doc; then
+		docinto examples
+		dodoc examples/*.[ch]
+		docompress -x /usr/share/doc/${PF}/examples
+		docinto .
+	fi
+}





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

* [gentoo-commits] gentoo-x86 commit in media-libs/libtheora: ChangeLog libtheora-1.1.1-r1.ebuild
@ 2014-07-06 17:42 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2014-07-06 17:42 UTC (permalink / raw
  To: gentoo-commits

maekke      14/07/06 17:42:53

  Modified:             ChangeLog libtheora-1.1.1-r1.ebuild
  Log:
  arm stable, bug #510476
  
  (Portage version: 2.2.10/cvs/Linux x86_64, RepoMan options: --include-arches="arm", signed Manifest commit with key 072AD062)

Revision  Changes    Path
1.118                media-libs/libtheora/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ChangeLog	28 Jun 2014 18:02:40 -0000	1.117
+++ ChangeLog	6 Jul 2014 17:42:53 -0000	1.118
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libtheora
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.117 2014/06/28 18:02:40 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.118 2014/07/06 17:42:53 maekke Exp $
+
+  06 Jul 2014; Markus Meier <maekke@gentoo.org> libtheora-1.1.1-r1.ebuild:
+  arm stable, bug #510476
 
   28 Jun 2014; Jeroen Roovers <jer@gentoo.org> libtheora-1.1.1-r1.ebuild:
   Stable for HPPA (bug #510476).



1.7                  media-libs/libtheora/libtheora-1.1.1-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild?r1=1.6&r2=1.7

Index: libtheora-1.1.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libtheora-1.1.1-r1.ebuild	28 Jun 2014 18:02:40 -0000	1.6
+++ libtheora-1.1.1-r1.ebuild	6 Jul 2014 17:42:53 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v 1.6 2014/06/28 18:02:40 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v 1.7 2014/07/06 17:42:53 maekke Exp $
 
 EAPI=5
 inherit autotools eutils flag-o-matic multilib-minimal
@@ -11,7 +11,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +encode examples static-libs"
 
 RDEPEND=">=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]





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

* [gentoo-commits] gentoo-x86 commit in media-libs/libtheora: ChangeLog libtheora-1.1.1-r1.ebuild
@ 2014-07-27 10:30 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2014-07-27 10:30 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    14/07/27 10:30:57

  Modified:             ChangeLog libtheora-1.1.1-r1.ebuild
  Log:
  x86 stable wrt bug #510476
  
  (Portage version: 2.2.8-r1/cvs/Linux i686, RepoMan options: --ignore-arches, signed Manifest commit with key 0x4F1A2555EA71991D!)

Revision  Changes    Path
1.121                media-libs/libtheora/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ChangeLog	20 Jul 2014 13:46:02 -0000	1.120
+++ ChangeLog	27 Jul 2014 10:30:57 -0000	1.121
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/libtheora
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.120 2014/07/20 13:46:02 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.121 2014/07/27 10:30:57 phajdan.jr Exp $
+
+  26 Jul 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  libtheora-1.1.1-r1.ebuild:
+  x86 stable wrt bug #510476
 
   20 Jul 2014; Tobias Klausmann <klausman@gentoo.org>
   libtheora-1.1.1-r1.ebuild:



1.10                 media-libs/libtheora/libtheora-1.1.1-r1.ebuild

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

Index: libtheora-1.1.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libtheora-1.1.1-r1.ebuild	20 Jul 2014 13:46:02 -0000	1.9
+++ libtheora-1.1.1-r1.ebuild	27 Jul 2014 10:30:57 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v 1.9 2014/07/20 13:46:02 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v 1.10 2014/07/27 10:30:57 phajdan.jr Exp $
 
 EAPI=5
 inherit autotools eutils flag-o-matic multilib-minimal
@@ -11,7 +11,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +encode examples static-libs"
 
 RDEPEND=">=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]





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

* [gentoo-commits] gentoo-x86 commit in media-libs/libtheora: ChangeLog libtheora-1.1.1-r1.ebuild
@ 2014-08-02 11:26 Raul Porcel (armin76)
  0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2014-08-02 11:26 UTC (permalink / raw
  To: gentoo-commits

armin76     14/08/02 11:26:07

  Modified:             ChangeLog libtheora-1.1.1-r1.ebuild
  Log:
  ia64/sparc stable wrt #510476
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF6AD3240)

Revision  Changes    Path
1.122                media-libs/libtheora/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ChangeLog	27 Jul 2014 10:30:57 -0000	1.121
+++ ChangeLog	2 Aug 2014 11:26:07 -0000	1.122
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libtheora
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.121 2014/07/27 10:30:57 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/ChangeLog,v 1.122 2014/08/02 11:26:07 armin76 Exp $
+
+  02 Aug 2014; Raúl Porcel <armin76@gentoo.org> libtheora-1.1.1-r1.ebuild:
+  ia64/sparc stable wrt #510476
 
   26 Jul 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   libtheora-1.1.1-r1.ebuild:



1.11                 media-libs/libtheora/libtheora-1.1.1-r1.ebuild

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

Index: libtheora-1.1.1-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libtheora-1.1.1-r1.ebuild	27 Jul 2014 10:30:57 -0000	1.10
+++ libtheora-1.1.1-r1.ebuild	2 Aug 2014 11:26:07 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v 1.10 2014/07/27 10:30:57 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libtheora/libtheora-1.1.1-r1.ebuild,v 1.11 2014/08/02 11:26:07 armin76 Exp $
 
 EAPI=5
 inherit autotools eutils flag-o-matic multilib-minimal
@@ -11,7 +11,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ~ppc ~ppc64 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc +encode examples static-libs"
 
 RDEPEND=">=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]





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

end of thread, other threads:[~2014-08-02 11:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-02 22:08 [gentoo-commits] gentoo-x86 commit in media-libs/libtheora: ChangeLog libtheora-1.1.1-r1.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2014-08-02 11:26 Raul Porcel (armin76)
2014-07-27 10:30 PaweA Hajdan (phajdan.jr)
2014-07-06 17:42 Markus Meier (maekke)
2013-06-27 16:22 Alexis Ballier (aballier)

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