public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-libs/libquicktime: ChangeLog libquicktime-1.2.3.ebuild
@ 2011-07-05 21:37 Alexis Ballier (aballier)
  0 siblings, 0 replies; 5+ messages in thread
From: Alexis Ballier (aballier) @ 2011-07-05 21:37 UTC (permalink / raw
  To: gentoo-commits

aballier    11/07/05 21:37:10

  Modified:             ChangeLog
  Added:                libquicktime-1.2.3.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)

Revision  Changes    Path
1.170                media-libs/libquicktime/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -r1.169 -r1.170
--- ChangeLog	25 Apr 2011 20:55:53 -0000	1.169
+++ ChangeLog	5 Jul 2011 21:37:10 -0000	1.170
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/libquicktime
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.169 2011/04/25 20:55:53 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.170 2011/07/05 21:37:10 aballier Exp $
+
+*libquicktime-1.2.3 (05 Jul 2011)
+
+  05 Jul 2011; Alexis Ballier <aballier@gentoo.org> +libquicktime-1.2.3.ebuild:
+  version bump
 
   25 Apr 2011; Alexis Ballier <aballier@gentoo.org> libquicktime-1.2.2.ebuild,
   +files/libquicktime-1.2.2-ffmpeg07.patch:



1.1                  media-libs/libquicktime/libquicktime-1.2.3.ebuild

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

Index: libquicktime-1.2.3.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild,v 1.1 2011/07/05 21:37:10 aballier Exp $

EAPI=1

inherit libtool eutils

MY_P=${P/_pre/pre}

DESCRIPTION="A library based on quicktime4linux with extensions"
HOMEPAGE="http://libquicktime.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="mmx X opengl dv gtk alsa aac encode png jpeg vorbis lame x264 ffmpeg doc schroedinger"

RDEPEND="dv? ( media-libs/libdv )
	gtk? ( >=x11-libs/gtk+-2.4.0:2 )
	aac? (
		media-libs/faad2
		encode? ( media-libs/faac )
	)
	alsa? ( >=media-libs/alsa-lib-1.0.16 )
	png? ( media-libs/libpng )
	jpeg? ( virtual/jpeg )
	vorbis? ( media-libs/libvorbis media-libs/libogg )
	lame? ( media-sound/lame )
	ffmpeg? ( virtual/ffmpeg )
	x264? ( media-libs/x264 )
	schroedinger? ( >=media-libs/schroedinger-1.0.5 )
	X? ( x11-libs/libXaw
		x11-libs/libXv
		x11-libs/libXext
		x11-libs/libX11
		opengl? ( media-libs/mesa )
	)
	virtual/libintl"
DEPEND="${RDEPEND}
	X? (
		x11-proto/videoproto
		x11-proto/xextproto
	)
	doc? ( app-doc/doxygen )
	dev-util/pkgconfig
	sys-devel/gettext"

S=${WORKDIR}/${MY_P}

src_unpack() {
	unpack ${A}
	cd "${S}"

	# Needed for sane .so versionning on g/fbsd
	elibtoolize
}

src_compile() {
	local MY_OPTS=""
	if use !encode || use !aac; then
		MY_OPTS="--without-faac"
	fi

	econf --enable-shared \
		--enable-static \
		--enable-gpl \
		$(use_with doc doxygen) \
		$(use_enable mmx asm) \
		$(use_with X x) \
		$(use_with gtk) \
		$(use_with dv libdv) \
		$(use_with alsa) \
		$(use_with aac faad2) \
		$(use_with png libpng) \
		$(use_with jpeg libjpeg) \
		$(use vorbis || echo "--without-vorbis") \
		$(use_with lame) \
		$(use_with x264) \
		$(use_with ffmpeg) \
		$(use_with opengl) \
		$(use_with schroedinger) \
		${MY_OPTS} \
		--without-cpuflags || die "econf failed"

	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	dodoc README TODO ChangeLog
	# Compatibility with software that uses quicktime prefix, but
	# don't do that when building for Darwin/MacOS
	[[ ${CHOST} != *-darwin* ]] && \
	dosym /usr/include/lqt /usr/include/quicktime
}

pkg_preinst() {
	if [[ -d /usr/include/quicktime && ! -L /usr/include/quicktime ]]; then
		elog "For compatibility with other quicktime libraries, ${PN} was"
		elog "going to create a /usr/include/quicktime symlink, but for some"
		elog "reason that is a directory on your system."

		elog "Please check that is empty, and remove it, or submit a bug"
		elog "telling us which package owns the directory."
		die "/usr/include/quicktime is a directory."
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in media-libs/libquicktime: ChangeLog libquicktime-1.2.3.ebuild
@ 2011-09-04 17:34 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-09-04 17:34 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/09/04 17:34:28

  Modified:             ChangeLog libquicktime-1.2.3.ebuild
  Log:
  x86 stable wrt bug #380169
  
  (Portage version: 2.1.10.11/cvs/Linux i686)

Revision  Changes    Path
1.171                media-libs/libquicktime/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog	5 Jul 2011 21:37:10 -0000	1.170
+++ ChangeLog	4 Sep 2011 17:34:28 -0000	1.171
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/libquicktime
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.170 2011/07/05 21:37:10 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.171 2011/09/04 17:34:28 phajdan.jr Exp $
+
+  04 Sep 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  libquicktime-1.2.3.ebuild:
+  x86 stable wrt bug #380169
 
 *libquicktime-1.2.3 (05 Jul 2011)
 



1.2                  media-libs/libquicktime/libquicktime-1.2.3.ebuild

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

Index: libquicktime-1.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libquicktime-1.2.3.ebuild	5 Jul 2011 21:37:10 -0000	1.1
+++ libquicktime-1.2.3.ebuild	4 Sep 2011 17:34:28 -0000	1.2
@@ -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/libquicktime/libquicktime-1.2.3.ebuild,v 1.1 2011/07/05 21:37:10 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild,v 1.2 2011/09/04 17:34:28 phajdan.jr Exp $
 
 EAPI=1
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="mmx X opengl dv gtk alsa aac encode png jpeg vorbis lame x264 ffmpeg doc schroedinger"
 
 RDEPEND="dv? ( media-libs/libdv )






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

* [gentoo-commits] gentoo-x86 commit in media-libs/libquicktime: ChangeLog libquicktime-1.2.3.ebuild
@ 2011-09-04 20:08 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 5+ messages in thread
From: Tony Vroon (chainsaw) @ 2011-09-04 20:08 UTC (permalink / raw
  To: gentoo-commits

chainsaw    11/09/04 20:08:40

  Modified:             ChangeLog libquicktime-1.2.3.ebuild
  Log:
  Marked stable based on arch testing by Agostino "ago" Sarubbo in bug #380169 filed by Paweł Hajdan, Jr.
  
  (Portage version: 2.1.10.13/cvs/Linux x86_64)

Revision  Changes    Path
1.172                media-libs/libquicktime/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- ChangeLog	4 Sep 2011 17:34:28 -0000	1.171
+++ ChangeLog	4 Sep 2011 20:08:40 -0000	1.172
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/libquicktime
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.171 2011/09/04 17:34:28 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.172 2011/09/04 20:08:40 chainsaw Exp $
+
+  04 Sep 2011; Tony Vroon <chainsaw@gentoo.org> libquicktime-1.2.3.ebuild:
+  Marked stable based on arch testing by Agostino "ago" Sarubbo in bug #380169
+  filed by Paweł Hajdan, Jr.
 
   04 Sep 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
   libquicktime-1.2.3.ebuild:



1.3                  media-libs/libquicktime/libquicktime-1.2.3.ebuild

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

Index: libquicktime-1.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libquicktime-1.2.3.ebuild	4 Sep 2011 17:34:28 -0000	1.2
+++ libquicktime-1.2.3.ebuild	4 Sep 2011 20:08:40 -0000	1.3
@@ -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/libquicktime/libquicktime-1.2.3.ebuild,v 1.2 2011/09/04 17:34:28 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild,v 1.3 2011/09/04 20:08:40 chainsaw Exp $
 
 EAPI=1
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="mmx X opengl dv gtk alsa aac encode png jpeg vorbis lame x264 ffmpeg doc schroedinger"
 
 RDEPEND="dv? ( media-libs/libdv )






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

* [gentoo-commits] gentoo-x86 commit in media-libs/libquicktime: ChangeLog libquicktime-1.2.3.ebuild
@ 2011-09-11 17:37 Raul Porcel (armin76)
  0 siblings, 0 replies; 5+ messages in thread
From: Raul Porcel (armin76) @ 2011-09-11 17:37 UTC (permalink / raw
  To: gentoo-commits

armin76     11/09/11 17:37:13

  Modified:             ChangeLog libquicktime-1.2.3.ebuild
  Log:
  alpha/ia64/sparc stable wrt #380169
  
  (Portage version: 2.1.10.11/cvs/Linux ia64)

Revision  Changes    Path
1.173                media-libs/libquicktime/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -r1.172 -r1.173
--- ChangeLog	4 Sep 2011 20:08:40 -0000	1.172
+++ ChangeLog	11 Sep 2011 17:37:13 -0000	1.173
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libquicktime
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.172 2011/09/04 20:08:40 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.173 2011/09/11 17:37:13 armin76 Exp $
+
+  11 Sep 2011; Raúl Porcel <armin76@gentoo.org> libquicktime-1.2.3.ebuild:
+  alpha/ia64/sparc stable wrt #380169
 
   04 Sep 2011; Tony Vroon <chainsaw@gentoo.org> libquicktime-1.2.3.ebuild:
   Marked stable based on arch testing by Agostino "ago" Sarubbo in bug #380169



1.4                  media-libs/libquicktime/libquicktime-1.2.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild?r1=1.3&r2=1.4

Index: libquicktime-1.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libquicktime-1.2.3.ebuild	4 Sep 2011 20:08:40 -0000	1.3
+++ libquicktime-1.2.3.ebuild	11 Sep 2011 17:37:13 -0000	1.4
@@ -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/libquicktime/libquicktime-1.2.3.ebuild,v 1.3 2011/09/04 20:08:40 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild,v 1.4 2011/09/11 17:37:13 armin76 Exp $
 
 EAPI=1
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
 IUSE="mmx X opengl dv gtk alsa aac encode png jpeg vorbis lame x264 ffmpeg doc schroedinger"
 
 RDEPEND="dv? ( media-libs/libdv )






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

* [gentoo-commits] gentoo-x86 commit in media-libs/libquicktime: ChangeLog libquicktime-1.2.3.ebuild
@ 2011-12-29 21:49 Mark Loeser (halcy0n)
  0 siblings, 0 replies; 5+ messages in thread
From: Mark Loeser (halcy0n) @ 2011-12-29 21:49 UTC (permalink / raw
  To: gentoo-commits

halcy0n     11/12/29 21:49:28

  Modified:             ChangeLog libquicktime-1.2.3.ebuild
  Log:
  Stable for ppc/ppc64; bug #380169
  
  (Portage version: 2.1.10.11/cvs/Linux ppc64)

Revision  Changes    Path
1.178                media-libs/libquicktime/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -r1.177 -r1.178
--- ChangeLog	4 Oct 2011 19:05:10 -0000	1.177
+++ ChangeLog	29 Dec 2011 21:49:28 -0000	1.178
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/libquicktime
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.177 2011/10/04 19:05:10 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/ChangeLog,v 1.178 2011/12/29 21:49:28 halcy0n Exp $
+
+  29 Dec 2011; Mark Loeser <halcy0n@gentoo.org> libquicktime-1.2.3.ebuild:
+  Stable for ppc/ppc64; bug #380169
 
   04 Oct 2011; Jeroen Roovers <jer@gentoo.org> libquicktime-1.2.3-r1.ebuild:
   Stable for HPPA (bug #382225).



1.5                  media-libs/libquicktime/libquicktime-1.2.3.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild?r1=1.4&r2=1.5

Index: libquicktime-1.2.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libquicktime-1.2.3.ebuild	11 Sep 2011 17:37:13 -0000	1.4
+++ libquicktime-1.2.3.ebuild	29 Dec 2011 21:49:28 -0000	1.5
@@ -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/libquicktime/libquicktime-1.2.3.ebuild,v 1.4 2011/09/11 17:37:13 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libquicktime/libquicktime-1.2.3.ebuild,v 1.5 2011/12/29 21:49:28 halcy0n Exp $
 
 EAPI=1
 
@@ -14,7 +14,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="mmx X opengl dv gtk alsa aac encode png jpeg vorbis lame x264 ffmpeg doc schroedinger"
 
 RDEPEND="dv? ( media-libs/libdv )






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

end of thread, other threads:[~2011-12-29 21:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-11 17:37 [gentoo-commits] gentoo-x86 commit in media-libs/libquicktime: ChangeLog libquicktime-1.2.3.ebuild Raul Porcel (armin76)
  -- strict thread matches above, loose matches on Subject: below --
2011-12-29 21:49 Mark Loeser (halcy0n)
2011-09-04 20:08 Tony Vroon (chainsaw)
2011-09-04 17:34 PaweA Hajdan (phajdan.jr)
2011-07-05 21:37 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