public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-video/xine-ui: ChangeLog xine-ui-0.99.5-r2.ebuild
@ 2008-10-15 11:51 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 2+ messages in thread
From: Diego Petteno (flameeyes) @ 2008-10-15 11:51 UTC (permalink / raw
  To: gentoo-commits

flameeyes    08/10/15 11:51:46

  Modified:             ChangeLog
  Added:                xine-ui-0.99.5-r2.ebuild
  Log:
  Add an EAPI=2 revision with USE deps on xine-lib support for aalib and libcaca.
  (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)

Revision  Changes    Path
1.164                media-video/xine-ui/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/xine-ui/ChangeLog?rev=1.164&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/xine-ui/ChangeLog?rev=1.164&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/xine-ui/ChangeLog?r1=1.163&r2=1.164

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/xine-ui/ChangeLog,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ChangeLog	17 Aug 2008 14:03:46 -0000	1.163
+++ ChangeLog	15 Oct 2008 11:51:46 -0000	1.164
@@ -1,6 +1,13 @@
 # ChangeLog for media-video/xine-ui
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/ChangeLog,v 1.163 2008/08/17 14:03:46 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/ChangeLog,v 1.164 2008/10/15 11:51:46 flameeyes Exp $
+
+*xine-ui-0.99.5-r2 (15 Oct 2008)
+
+  15 Oct 2008; Diego Pettenò <flameeyes@gentoo.org>
+  +xine-ui-0.99.5-r2.ebuild:
+  Add an EAPI=2 revision with USE deps on xine-lib support for aalib and
+  libcaca.
 
   17 Aug 2008; Alexis Ballier <aballier@gentoo.org> -xine-ui-0.99.5.ebuild:
   remove old



1.1                  media-video/xine-ui/xine-ui-0.99.5-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/xine-ui/xine-ui-0.99.5-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/xine-ui/xine-ui-0.99.5-r2.ebuild?rev=1.1&content-type=text/plain

Index: xine-ui-0.99.5-r2.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/xine-ui-0.99.5-r2.ebuild,v 1.1 2008/10/15 11:51:46 flameeyes Exp $

EAPI=2

# WANT_AUTOCONF=latest
# WANT_AUTOMAKE=latest

inherit eutils toolchain-funcs flag-o-matic autotools

#PATCHLEVEL="11"
DESCRIPTION="Xine movie player"
HOMEPAGE="http://xine.sourceforge.net/"
SRC_URI="mirror://sourceforge/xine/${P}.tar.gz"
#	mirror://gentoo/${PN}-patches-${PATCHLEVEL}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="X nls lirc aalib libcaca readline curl vdr xinerama debug"

RDEPEND=">=media-libs/libpng-1.2.8
	>=media-libs/xine-lib-1.1.0[aalib?,libcaca?]
	lirc? ( app-misc/lirc )
	aalib? ( media-libs/aalib )
	libcaca? ( media-libs/libcaca )
	curl? ( >=net-misc/curl-7.10.2 )
	X? ( x11-libs/libX11
		x11-libs/libXrender
		x11-libs/libICE
		x11-libs/libSM
		x11-libs/libXext
		x11-libs/libXxf86vm
		x11-libs/libXv
		x11-libs/libXtst
		x11-libs/libXft
		xinerama? ( x11-libs/libXinerama ) )
	nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
	nls? ( sys-devel/gettext )
	X? ( x11-libs/libXt
		x11-proto/xf86vidmodeproto
		x11-proto/inputproto
		xinerama? ( x11-proto/xineramaproto ) )
	dev-util/pkgconfig"

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}/${P}-new_libcaca_api.patch"
	AT_M4DIR="m4" eautoreconf
}

src_compile() {
	rm misc/xine-bugreport

	econf \
		$(use_enable lirc) \
		$(use_enable nls) \
		$(use_enable vdr vdr-keys) \
		$(use_enable xinerama) \
		$(use_enable debug) \
		$(use_with X x) \
		$(use_with aalib) \
		$(use_with libcaca caca) \
		$(use_with curl) \
		$(use_with readline) \
		--without-ncurses \
		|| die "econf failed."
	emake || die "emake failed."
}

src_install() {
	emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" docsdir="/usr/share/doc/${PF}" install || die
	dodoc AUTHORS ChangeLog NEWS README

	# Remove on next snapshot (after 20070303)
	dodir /usr/share/applications
	mv "${D}/usr/share/xine/desktop/xine.desktop" "${D}/usr/share/applications"
}






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

* [gentoo-commits] gentoo-x86 commit in media-video/xine-ui: ChangeLog xine-ui-0.99.5-r2.ebuild
@ 2010-02-15 22:28 Hanno Boeck (hanno)
  0 siblings, 0 replies; 2+ messages in thread
From: Hanno Boeck (hanno) @ 2010-02-15 22:28 UTC (permalink / raw
  To: gentoo-commits

hanno       10/02/15 22:28:19

  Modified:             ChangeLog xine-ui-0.99.5-r2.ebuild
  Log:
  xine-ui fix for libpng 1.4
  (Portage version: 2.1.7.17/cvs/Linux x86_64)

Revision  Changes    Path
1.166                media-video/xine-ui/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/xine-ui/ChangeLog?rev=1.166&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/xine-ui/ChangeLog?rev=1.166&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/xine-ui/ChangeLog?r1=1.165&r2=1.166

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/xine-ui/ChangeLog,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -r1.165 -r1.166
--- ChangeLog	15 Oct 2008 12:01:34 -0000	1.165
+++ ChangeLog	15 Feb 2010 22:28:19 -0000	1.166
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/xine-ui
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/ChangeLog,v 1.165 2008/10/15 12:01:34 flameeyes Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/ChangeLog,v 1.166 2010/02/15 22:28:19 hanno Exp $
+
+  15 Feb 2010; Hanno Boeck <hanno@gentoo.org> xine-ui-0.99.5-r2.ebuild,
+  +files/xine-ui-0.99.5-libpng14.patch:
+  Fix for libpng 1.4.
 
   15 Oct 2008; Diego Pettenò <flameeyes@gentoo.org>
   xine-ui-0.99.5-r2.ebuild:



1.3                  media-video/xine-ui/xine-ui-0.99.5-r2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/xine-ui/xine-ui-0.99.5-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/xine-ui/xine-ui-0.99.5-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/xine-ui/xine-ui-0.99.5-r2.ebuild?r1=1.2&r2=1.3

Index: xine-ui-0.99.5-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/xine-ui/xine-ui-0.99.5-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xine-ui-0.99.5-r2.ebuild	15 Oct 2008 12:01:34 -0000	1.2
+++ xine-ui-0.99.5-r2.ebuild	15 Feb 2010 22:28:19 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/xine-ui-0.99.5-r2.ebuild,v 1.2 2008/10/15 12:01:34 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/xine-ui-0.99.5-r2.ebuild,v 1.3 2010/02/15 22:28:19 hanno Exp $
 
 EAPI=2
 
@@ -47,6 +47,7 @@
 
 src_prepare() {
 	epatch "${FILESDIR}/${P}-new_libcaca_api.patch"
+	epatch "${FILESDIR}/${P}-libpng14.patch"
 	AT_M4DIR="m4" eautoreconf
 
 	rm misc/xine-bugreport






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

end of thread, other threads:[~2010-02-15 22:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-15 22:28 [gentoo-commits] gentoo-x86 commit in media-video/xine-ui: ChangeLog xine-ui-0.99.5-r2.ebuild Hanno Boeck (hanno)
  -- strict thread matches above, loose matches on Subject: below --
2008-10-15 11:51 Diego Petteno (flameeyes)

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