diff options
author | David Seifert <soap@gentoo.org> | 2023-03-26 12:56:45 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-03-26 12:56:45 +0200 |
commit | 14c6dd2e4030827e5ac87487dfd2dec9ce5935ca (patch) | |
tree | 974762faace33e98ee6ef646c2ab626bb1a856ca /media-tv | |
parent | dev-lang/hy: treeclean (diff) | |
download | gentoo-14c6dd2e4030827e5ac87487dfd2dec9ce5935ca.tar.gz gentoo-14c6dd2e4030827e5ac87487dfd2dec9ce5935ca.tar.bz2 gentoo-14c6dd2e4030827e5ac87487dfd2dec9ce5935ca.zip |
media-tv/nvtv: treeclean
Closes: https://bugs.gentoo.org/740480
Closes: https://bugs.gentoo.org/801049
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-tv')
-rw-r--r-- | media-tv/nvtv/Manifest | 1 | ||||
-rw-r--r-- | media-tv/nvtv/files/nvtv.start | 20 | ||||
-rw-r--r-- | media-tv/nvtv/files/respect-cflags.patch | 31 | ||||
-rw-r--r-- | media-tv/nvtv/metadata.xml | 8 | ||||
-rw-r--r-- | media-tv/nvtv/nvtv-0.4.7-r3.ebuild | 43 |
5 files changed, 0 insertions, 103 deletions
diff --git a/media-tv/nvtv/Manifest b/media-tv/nvtv/Manifest deleted file mode 100644 index 67062ac0b5be..000000000000 --- a/media-tv/nvtv/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST nvtv-0.4.7.tar.gz 419564 BLAKE2B 95010c42162c790293b159eb3c43ebc436933f9126cce0130e0d2e616219a47173d12570a4fbb8a45d32f59a92314b8734bd51b83fcadbd22a1e1c1f7306d929 SHA512 086de916b3b783a2071906e8f2eb98009f2f73627dc75ee086bde9864de3fb18ddf6d981c56225ac3dca3c837ff3575deb2aeca042be4cca9dc7a876cc41282d diff --git a/media-tv/nvtv/files/nvtv.start b/media-tv/nvtv/files/nvtv.start deleted file mode 100644 index 57b471a0986b..000000000000 --- a/media-tv/nvtv/files/nvtv.start +++ /dev/null @@ -1,20 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - use modules logger -} - -start() { - ebegin "Starting NVidia TV-Out Server" - start-stop-daemon --start --quiet --exec /usr/sbin/nvtvd \ - --background 1>&2 - eend $? -} - -stop() { - ebegin "Stopping NVidia TV-Out Server" - start-stop-daemon --stop --quiet --exec /usr/sbin/nvtvd 1>&2 - eend $? -} diff --git a/media-tv/nvtv/files/respect-cflags.patch b/media-tv/nvtv/files/respect-cflags.patch deleted file mode 100644 index 2fa991f72638..000000000000 --- a/media-tv/nvtv/files/respect-cflags.patch +++ /dev/null @@ -1,31 +0,0 @@ -The rest of the build system will respect the user's CFLAGS if we -don't wipe them out, so just delete the line that does that. The -removal of the gtk-1.x stuff is so that we can run eautoreconf and -have it work; we don't support gtk1 in Gentoo anyway. - -diff --git a/configure.in b/configure.in -index f8f48cc..d8f1261 100755 ---- a/configure.in -+++ b/configure.in -@@ -57,9 +57,6 @@ dnl - dnl Debugging enables, CFLAGS - dnl - --dnl Clear -g -O2 from CFLAGS --CFLAGS="" -- - AC_MSG_CHECKING(for debugging info) - - AC_ARG_ENABLE(debug, -@@ -110,11 +107,6 @@ if test ${with_gtk} = no ; then - fi - - if test ${have_gtk} = no ; then -- if test ${with_gtk} = yes -o ${with_gtk} = gtk1 ; then -- AM_PATH_GTK(1.2.0, have_gtk=gtk1) -- fi --fi --if test ${have_gtk} = no ; then - if test ${with_gtk} = yes -o ${with_gtk} = gtk2 ; then - AM_PATH_GTK_2_0(2.0.0, have_gtk=gtk2) - fi diff --git a/media-tv/nvtv/metadata.xml b/media-tv/nvtv/metadata.xml deleted file mode 100644 index e023ec527378..000000000000 --- a/media-tv/nvtv/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <upstream> - <remote-id type="sourceforge">nv-tv-out</remote-id> - </upstream> -</pkgmetadata> diff --git a/media-tv/nvtv/nvtv-0.4.7-r3.ebuild b/media-tv/nvtv/nvtv-0.4.7-r3.ebuild deleted file mode 100644 index 1d8d0dea9c2b..000000000000 --- a/media-tv/nvtv/nvtv-0.4.7-r3.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -IUSE="X gtk" - -DESCRIPTION="TV-Out for NVidia cards" -HOMEPAGE="https://sourceforge.net/projects/nv-tv-out/" -SRC_URI="mirror://sourceforge/nv-tv-out/${P}.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~x86" - -RDEPEND="sys-apps/pciutils[-zlib] - gtk? ( x11-libs/gtk+:2 ) - X? ( x11-libs/libXi - x11-libs/libXmu - x11-libs/libXxf86vm )" - -DEPEND="${RDEPEND} - X? ( x11-base/xorg-proto )" - -PATCHES=( "${FILESDIR}/respect-cflags.patch" ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf $(use_with gtk) $(use_with X x) -} - -src_install() { - dobin src/nvtv - dosbin src/nvtvd - dodoc ANNOUNCE BUGS FAQ README doc/*.txt doc/USAGE - newinitd "${FILESDIR}"/nvtv.start nvtv -} |