diff options
author | Bart Lauwers <blauwers@gentoo.org> | 2002-12-08 23:32:13 +0000 |
---|---|---|
committer | Bart Lauwers <blauwers@gentoo.org> | 2002-12-08 23:32:13 +0000 |
commit | 9e988ed00821658f6d52da5d7b3f037bf3d7059f (patch) | |
tree | 892d4f1130b890318c2e91b9b9b81562047edbd7 /media-video | |
parent | version bump (diff) | |
download | historical-9e988ed00821658f6d52da5d7b3f037bf3d7059f.tar.gz historical-9e988ed00821658f6d52da5d7b3f037bf3d7059f.tar.bz2 historical-9e988ed00821658f6d52da5d7b3f037bf3d7059f.zip |
New support for chipsets and bugfixes mostly.
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/nvtv/files/digest-nvtv-0.4.2 | 1 | ||||
-rw-r--r-- | media-video/nvtv/nvtv-0.4.2.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/media-video/nvtv/files/digest-nvtv-0.4.2 b/media-video/nvtv/files/digest-nvtv-0.4.2 new file mode 100644 index 000000000000..267e2a42239b --- /dev/null +++ b/media-video/nvtv/files/digest-nvtv-0.4.2 @@ -0,0 +1 @@ +MD5 46b1f6b158c794440b6d34595cd3542b nvtv-0.4.2.tar.gz 364162 diff --git a/media-video/nvtv/nvtv-0.4.2.ebuild b/media-video/nvtv/nvtv-0.4.2.ebuild new file mode 100644 index 000000000000..c83a55b5ad18 --- /dev/null +++ b/media-video/nvtv/nvtv-0.4.2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/nvtv/nvtv-0.4.2.ebuild,v 1.1 2002/12/08 23:32:13 blauwers Exp $ + +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" +IUSE="X gtk" + +DEPEND="sys-apps/pciutils + gtk? ( =x11-libs/gtk+-1.2* ) + X? ( >=x11-base/xfree-4.0 )" +S="${WORKDIR}/${PN}" + +src_compile() { + local myconf + + use gtk && myconf="${myconf} --with-gtk" || myconf="${myconf} --without-gtk" + use X && myconf="${myconf} --with-x" || myconf="${myconf} --without-x" + + econf ${myconf} + + # The CFLAGS don't seem to make it into the Makefile. + cd src + emake CXFLAGS="${CFLAGS}" || die +} + +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 + + exeinto /etc/init.d + newexe ${FILESDIR}/nvtv.start nvtv +} |