media-tv/nvtv: use #!/sbin/openrc-run instead of #!/sbin/runscript
authorAustin English <wizardedit@gentoo.org>
Tue, 26 Apr 2016 22:25:46 +0000 (17:25 -0500)
committerAustin English <wizardedit@gentoo.org>
Tue, 26 Apr 2016 22:26:32 +0000 (17:26 -0500)
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=573846

Package-Manager: portage-2.2.26

media-tv/nvtv/files/nvtv.start
media-tv/nvtv/nvtv-0.4.7-r2.ebuild [new file with mode: 0644]

index 0d8044537ef34d12cba2d9cc189c5280398220fd..76091c18d5146a74eeaf906edd554c465be4167a 100644 (file)
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2004 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
diff --git a/media-tv/nvtv/nvtv-0.4.7-r2.ebuild b/media-tv/nvtv/nvtv-0.4.7-r2.ebuild
new file mode 100644 (file)
index 0000000..d017003
--- /dev/null
@@ -0,0 +1,58 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+IUSE="X gtk"
+
+DESCRIPTION="TV-Out for NVidia cards"
+HOMEPAGE="http://sourceforge.net/projects/nv-tv-out/"
+SRC_URI="mirror://sourceforge/nv-tv-out/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86 ~amd64"
+
+RDEPEND="sys-apps/pciutils[-zlib]
+       gtk? ( x11-libs/gtk+:2 )
+       X? ( x11-libs/libXi
+               x11-libs/libXmu
+               x11-libs/libXxf86vm )"
+
+DEPEND="${RDEPEND}
+       X? ( x11-proto/xf86vidmodeproto )"
+
+src_configure() {
+       local myconf
+
+       if use gtk
+       then
+               myconf="${myconf} --with-gtk"
+       else
+               myconf="${myconf} --without-gtk"
+       fi
+
+       use X \
+               && myconf="${myconf} --with-x" \
+               || myconf="${myconf} --without-x"
+
+       econf ${myconf}
+}
+
+src_compile() {
+       # The CFLAGS don't seem to make it into the Makefile.
+       cd src
+       emake CXFLAGS="${CFLAGS}"
+}
+
+src_install() {
+       dobin src/nvtv
+       dosbin src/nvtvd
+
+       dodoc ANNOUNCE BUGS FAQ INSTALL README \
+               doc/USAGE doc/chips.txt doc/overview.txt \
+               doc/timing.txt xine/tvxine
+
+       newinitd "${FILESDIR}"/nvtv.start nvtv
+}