diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-01-26 10:36:19 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-01-26 10:36:19 +0000 |
commit | 74f5ca8d84e5bb6fbec18839a6b8e9c1fff7ea6a (patch) | |
tree | d039503c67fe22ce4d0becfc2fc88727b0ac1af5 /media-video | |
parent | Typo in DEPEND was preventing modular X from working, and that section was re... (diff) | |
download | gentoo-2-74f5ca8d84e5bb6fbec18839a6b8e9c1fff7ea6a.tar.gz gentoo-2-74f5ca8d84e5bb6fbec18839a6b8e9c1fff7ea6a.tar.bz2 gentoo-2-74f5ca8d84e5bb6fbec18839a6b8e9c1fff7ea6a.zip |
Drop old version of xine-ui (drop mips keyword as per bug #111561).
(Portage version: 2529-svn)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/xine-ui/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/xine-ui/files/digest-xine-ui-0.99.3 | 2 | ||||
-rw-r--r-- | media-video/xine-ui/xine-ui-0.99.3.ebuild | 59 |
3 files changed, 5 insertions, 63 deletions
diff --git a/media-video/xine-ui/ChangeLog b/media-video/xine-ui/ChangeLog index 88be2dd39d68..7a5abe6c5540 100644 --- a/media-video/xine-ui/ChangeLog +++ b/media-video/xine-ui/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/xine-ui -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/ChangeLog,v 1.102 2005/12/20 15:44:56 gustavoz Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/ChangeLog,v 1.103 2006/01/26 10:36:19 flameeyes Exp $ + + 26 Jan 2006; Diego Pettenò <flameeyes@gentoo.org> -xine-ui-0.99.3.ebuild: + Drop old version of xine-ui (drop mips keyword as per bug #111561). 20 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org> xine-ui-0.99.4-r3.ebuild: diff --git a/media-video/xine-ui/files/digest-xine-ui-0.99.3 b/media-video/xine-ui/files/digest-xine-ui-0.99.3 deleted file mode 100644 index 05af54e0eb17..000000000000 --- a/media-video/xine-ui/files/digest-xine-ui-0.99.3 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 aa7805a93e511e3d67dc1bf09a71fcdd xine-ui-0.99.3.tar.gz 2610080 -MD5 831cc89e82107cf5289726e827d9a091 xine-ui-patches-1.tar.bz2 2323 diff --git a/media-video/xine-ui/xine-ui-0.99.3.ebuild b/media-video/xine-ui/xine-ui-0.99.3.ebuild deleted file mode 100644 index 77936a538445..000000000000 --- a/media-video/xine-ui/xine-ui-0.99.3.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2005 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.3.ebuild,v 1.8 2005/11/22 10:21:03 flameeyes Exp $ - -inherit eutils - -PATCHLEVEL="1" -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="x86 amd64 ppc64 ~sparc ~mips" -IUSE="X nls directfb lirc aalib" - -DEPEND="media-libs/libpng - >=media-libs/xine-lib-1_rc8 - >=net-misc/curl-7.10.2 - lirc? ( app-misc/lirc ) - X? ( virtual/x11 ) - aalib? ( media-libs/aalib ) - directfb? ( >=dev-libs/DirectFB-0.9.9 )" -RDEPEND="nls? ( sys-devel/gettext )" - -src_unpack() { - unpack ${A} - cd ${S} - - epatch ${WORKDIR}/${PV}/01_all_true-false.patch - use directfb || sed -i "s:dfb::" src/Makefile.in - sed -i "s:LDFLAGS =:LDFLAGS = -L/lib :" src/xitk/Makefile.in -} - -src_compile() { - rm misc/xine-bugreport - local myconf="" - - use X || myconf="${myconf} --disable-x11 --disable-xv" - use aalib || sed -e 's:no_aalib="":no_aalib="yes":g' -i configure || die "could not disable aalib" - - econf ${myconf} \ - $(use_enable nls) \ - $(use_enable lirc) \ - || die "configuration failed!" - - emake || die "Make failed!" -} - -src_install() { - make DESTDIR=${D} docdir=/usr/share/doc/${PF} docsdir=/usr/share/doc/${PF} install || die - dodoc AUTHORS ChangeLog NEWS README - - rm ${D}/usr/share/xine/desktop/xine.desktop - - insinto /usr/share/applications - doins ${WORKDIR}/${PV}/xine.desktop -} |