diff options
author | Bart Lauwers <blauwers@gentoo.org> | 2003-02-10 21:58:05 +0000 |
---|---|---|
committer | Bart Lauwers <blauwers@gentoo.org> | 2003-02-10 21:58:05 +0000 |
commit | 8e737e4c0324280ba2480fd9e215b93d6be43378 (patch) | |
tree | 231dfb20c2889bf25002ef9b5548ef918f9df4dc /media-video | |
parent | New ebuild, makes the setup of a gentoo rsync mirror very easy. (diff) | |
download | gentoo-2-8e737e4c0324280ba2480fd9e215b93d6be43378.tar.gz gentoo-2-8e737e4c0324280ba2480fd9e215b93d6be43378.tar.bz2 gentoo-2-8e737e4c0324280ba2480fd9e215b93d6be43378.zip |
Version update to latest version from previous ebuild
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/nvtv/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/nvtv/files/digest-nvtv-0.4.3 | 1 | ||||
-rw-r--r-- | media-video/nvtv/nvtv-0.4.3.ebuild | 50 |
3 files changed, 57 insertions, 1 deletions
diff --git a/media-video/nvtv/ChangeLog b/media-video/nvtv/ChangeLog index 29d4a59f3291..c731d459317e 100644 --- a/media-video/nvtv/ChangeLog +++ b/media-video/nvtv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/nvtv # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-video/nvtv/ChangeLog,v 1.4 2002/12/17 19:05:31 blauwers Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/nvtv/ChangeLog,v 1.5 2003/02/10 21:58:05 blauwers Exp $ + +*nvtv-0.4.3-0 (10 Feb 2003) + + 10 Feb 2003; B.Lauwers <blauwers@gentoo.org> nvtv-0.4.3.ebuild : + New version from prior ebuild *nvtv-4.2.0-0 (09 Dec 2002) diff --git a/media-video/nvtv/files/digest-nvtv-0.4.3 b/media-video/nvtv/files/digest-nvtv-0.4.3 new file mode 100644 index 000000000000..0b3516c7863b --- /dev/null +++ b/media-video/nvtv/files/digest-nvtv-0.4.3 @@ -0,0 +1 @@ +MD5 188aa43ec231b5354fd37cf37a48c8ed nvtv-0.4.3.tar.gz 382234 diff --git a/media-video/nvtv/nvtv-0.4.3.ebuild b/media-video/nvtv/nvtv-0.4.3.ebuild new file mode 100644 index 000000000000..5fe281c409cd --- /dev/null +++ b/media-video/nvtv/nvtv-0.4.3.ebuild @@ -0,0 +1,50 @@ +# 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.3.ebuild,v 1.1 2003/02/10 21:58:05 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 gtk2" + +DEPEND="sys-apps/pciutils + gtk? ( =x11-libs/gtk+-1.2* ) + gtk2? ( =x11-libs/gtk+-2* ) + X? ( >=x11-base/xfree-4.0 )" +S="${WORKDIR}/${PN}" + +src_compile() { + local myconf + + if use gtk2; then + myconf="${myconf} --with-gtk=gtk2" + elif use gtk; then + myconf="${myconf} --with-gtk=gtk1" + else + myconf="${myconf} --without-gtk"; + fi + + 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 +} |