diff options
-rw-r--r-- | media-video/xine-ui/ChangeLog | 8 | ||||
-rw-r--r-- | media-video/xine-ui/files/digest-xine-ui-0.99.5_pre20070303 | 3 | ||||
-rw-r--r-- | media-video/xine-ui/xine-ui-0.99.5_pre20070303.ebuild | 77 |
3 files changed, 87 insertions, 1 deletions
diff --git a/media-video/xine-ui/ChangeLog b/media-video/xine-ui/ChangeLog index 45650e2a62c8..84e17c2145cc 100644 --- a/media-video/xine-ui/ChangeLog +++ b/media-video/xine-ui/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-video/xine-ui # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/ChangeLog,v 1.139 2007/01/16 17:56:56 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/ChangeLog,v 1.140 2007/03/03 18:18:09 zzam Exp $ + +*xine-ui-0.99.5_pre20070303 (03 Mar 2007) + + 03 Mar 2007; Matthias Schwarzott <zzam@gentoo.org> + +xine-ui-0.99.5_pre20070303.ebuild: + Commiting new snapshot for flameeyes, this should solve some nasty issues. 16 Jan 2007; Bryan Østergaard <kloeri@gentoo.org> xine-ui-0.99.5_pre20060716.ebuild: diff --git a/media-video/xine-ui/files/digest-xine-ui-0.99.5_pre20070303 b/media-video/xine-ui/files/digest-xine-ui-0.99.5_pre20070303 new file mode 100644 index 000000000000..70101a1ce04f --- /dev/null +++ b/media-video/xine-ui/files/digest-xine-ui-0.99.5_pre20070303 @@ -0,0 +1,3 @@ +MD5 57c60bbf61517d19c2c9f5afad742393 xine-ui-0.99.5_pre20070303.tar.bz2 2221860 +RMD160 50ca61886d0425d23aa5dcc961a86bda9b14a700 xine-ui-0.99.5_pre20070303.tar.bz2 2221860 +SHA256 dbe562fd0e6c7909a2979684673cbb8c954390644e1bc442b1c973fcdf0f58e0 xine-ui-0.99.5_pre20070303.tar.bz2 2221860 diff --git a/media-video/xine-ui/xine-ui-0.99.5_pre20070303.ebuild b/media-video/xine-ui/xine-ui-0.99.5_pre20070303.ebuild new file mode 100644 index 000000000000..6e5a8caf3b1d --- /dev/null +++ b/media-video/xine-ui/xine-ui-0.99.5_pre20070303.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2007 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_pre20070303.ebuild,v 1.1 2007/03/03 18:18:09 zzam Exp $ + +# 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="http://dev.gentooexperimental.org/~flameeyes/dist/${P}.tar.bz2" +# 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 ncurses vdr xinerama debug" + +RDEPEND=">=media-libs/libpng-1.2.8 + >=media-libs/xine-lib-1.1.0 + lirc? ( app-misc/lirc ) + aalib? ( media-libs/aalib ) + libcaca? ( media-libs/libcaca ) + curl? ( >=net-misc/curl-7.10.2 ) + ncurses? ( sys-libs/ncurses ) + 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 ) + ) <virtual/x11-7 ) ) + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + X? ( || ( ( + x11-libs/libXt + x11-proto/xf86vidmodeproto + xinerama? ( x11-proto/xineramaproto ) + ) <virtual/x11-7 ) ) + dev-util/pkgconfig" + +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) \ + $(use_with curl) \ + $(use_with readline) \ + $(use_with 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" +} |