Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/nvtv/
Date: Tue, 26 Apr 2016 22:27:39
Message-Id: 1461709592.e6aed1f213e0970ed2d363562f4fa8b311120520.wizardedit@gentoo
1 commit: e6aed1f213e0970ed2d363562f4fa8b311120520
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 26 22:26:23 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 22:26:32 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6aed1f2
7
8 media-tv/nvtv: remove nvtv-0.4.7-r1
9
10 Package-Manager: portage-2.2.26
11
12 media-tv/nvtv/nvtv-0.4.7-r1.ebuild | 58 --------------------------------------
13 1 file changed, 58 deletions(-)
14
15 diff --git a/media-tv/nvtv/nvtv-0.4.7-r1.ebuild b/media-tv/nvtv/nvtv-0.4.7-r1.ebuild
16 deleted file mode 100644
17 index f162304..0000000
18 --- a/media-tv/nvtv/nvtv-0.4.7-r1.ebuild
19 +++ /dev/null
20 @@ -1,58 +0,0 @@
21 -# Copyright 1999-2011 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=2
26 -
27 -IUSE="X gtk"
28 -
29 -DESCRIPTION="TV-Out for NVidia cards"
30 -HOMEPAGE="http://sourceforge.net/projects/nv-tv-out/"
31 -SRC_URI="mirror://sourceforge/nv-tv-out/${P}.tar.gz"
32 -
33 -SLOT="0"
34 -LICENSE="GPL-2"
35 -KEYWORDS="~x86 ~amd64"
36 -
37 -RDEPEND="sys-apps/pciutils[-zlib]
38 - gtk? ( x11-libs/gtk+:2 )
39 - X? ( x11-libs/libXi
40 - x11-libs/libXmu
41 - x11-libs/libXxf86vm )"
42 -
43 -DEPEND="${RDEPEND}
44 - X? ( x11-proto/xf86vidmodeproto )"
45 -
46 -src_configure() {
47 - local myconf
48 -
49 - if use gtk
50 - then
51 - myconf="${myconf} --with-gtk"
52 - else
53 - myconf="${myconf} --without-gtk"
54 - fi
55 -
56 - use X \
57 - && myconf="${myconf} --with-x" \
58 - || myconf="${myconf} --without-x"
59 -
60 - econf ${myconf}
61 -}
62 -
63 -src_compile() {
64 - # The CFLAGS don't seem to make it into the Makefile.
65 - cd src
66 - emake CXFLAGS="${CFLAGS}" || die
67 -}
68 -
69 -src_install() {
70 - dobin src/nvtv || die
71 - dosbin src/nvtvd || die
72 -
73 - dodoc ANNOUNCE BUGS FAQ INSTALL README \
74 - doc/USAGE doc/chips.txt doc/overview.txt \
75 - doc/timing.txt xine/tvxine
76 -
77 - newinitd "${FILESDIR}"/nvtv.start nvtv
78 -}