diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /media-tv/nvtv | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'media-tv/nvtv')
-rw-r--r-- | media-tv/nvtv/Manifest | 1 | ||||
-rw-r--r-- | media-tv/nvtv/files/nvtv.start | 21 | ||||
-rw-r--r-- | media-tv/nvtv/metadata.xml | 13 | ||||
-rw-r--r-- | media-tv/nvtv/nvtv-0.4.7-r1.ebuild | 58 |
4 files changed, 93 insertions, 0 deletions
diff --git a/media-tv/nvtv/Manifest b/media-tv/nvtv/Manifest new file mode 100644 index 000000000000..411c8a814814 --- /dev/null +++ b/media-tv/nvtv/Manifest @@ -0,0 +1 @@ +DIST nvtv-0.4.7.tar.gz 419564 SHA256 f044c6de2df66196fa589ed0d33203bd10d88604f447befce1a6f62eb7b08dac diff --git a/media-tv/nvtv/files/nvtv.start b/media-tv/nvtv/files/nvtv.start new file mode 100644 index 000000000000..0d8044537ef3 --- /dev/null +++ b/media-tv/nvtv/files/nvtv.start @@ -0,0 +1,21 @@ +#!/sbin/runscript +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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/metadata.xml b/media-tv/nvtv/metadata.xml new file mode 100644 index 000000000000..2e8d3be4630d --- /dev/null +++ b/media-tv/nvtv/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>media-tv</herd> + <maintainer> + <email>media-tv@gentoo.org</email> + <name>media-tv</name> + </maintainer> + <longdescription>TV-Out for NVidia cards</longdescription> + <upstream> + <remote-id type="sourceforge">nv-tv-out</remote-id> + </upstream> +</pkgmetadata> diff --git a/media-tv/nvtv/nvtv-0.4.7-r1.ebuild b/media-tv/nvtv/nvtv-0.4.7-r1.ebuild new file mode 100644 index 000000000000..f16230494ae1 --- /dev/null +++ b/media-tv/nvtv/nvtv-0.4.7-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=2 + +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}" || die +} + +src_install() { + dobin src/nvtv || die + dosbin src/nvtvd || die + + dodoc ANNOUNCE BUGS FAQ INSTALL README \ + doc/USAGE doc/chips.txt doc/overview.txt \ + doc/timing.txt xine/tvxine + + newinitd "${FILESDIR}"/nvtv.start nvtv +} |