diff options
author | Bart Lauwers <blauwers@gentoo.org> | 2002-06-04 15:56:50 +0000 |
---|---|---|
committer | Bart Lauwers <blauwers@gentoo.org> | 2002-06-04 15:56:50 +0000 |
commit | de49524aa2829edd3249840c8e6684a1364e0634 (patch) | |
tree | cc01080e8dbe842971bf6b1c742ef36767501910 /media-video/nvtv | |
parent | first relase (diff) | |
download | gentoo-2-de49524aa2829edd3249840c8e6684a1364e0634.tar.gz gentoo-2-de49524aa2829edd3249840c8e6684a1364e0634.tar.bz2 gentoo-2-de49524aa2829edd3249840c8e6684a1364e0634.zip |
Correction of email addy plus release of new version
Diffstat (limited to 'media-video/nvtv')
-rw-r--r-- | media-video/nvtv/ChangeLog | 10 | ||||
-rw-r--r-- | media-video/nvtv/files/digest-nvtv-0.4.0 | 1 | ||||
-rw-r--r-- | media-video/nvtv/nvtv-0.3.0.ebuild | 4 | ||||
-rw-r--r-- | media-video/nvtv/nvtv-0.4.0.ebuild | 44 |
4 files changed, 55 insertions, 4 deletions
diff --git a/media-video/nvtv/ChangeLog b/media-video/nvtv/ChangeLog index 64ca04a55f58..42b050f8b774 100644 --- a/media-video/nvtv/ChangeLog +++ b/media-video/nvtv/ChangeLog @@ -1,6 +1,12 @@ # 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.1 2002/05/03 01:42:22 agenkin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/nvtv/ChangeLog,v 1.2 2002/06/04 15:56:50 blauwers Exp $ + +*nvtv-0.4.0-0 (04 Jun 2002) + + 4 Jun 2002; B.Lauwers <blauwers@gentoo.org> nvtv-0.4.0.ebuild : + + New version from prior ebuild plus various cleanups *nvtv-0.3.0-0 (03 May 2002) @@ -8,6 +14,6 @@ Cleaned up a few things. - 3 May 2002; B.Lauwers <blauwers@cisco.com> ChangeLog, nvtv-0.3.0.ebuild : + 3 May 2002; B.Lauwers <blauwers@gentoo.com> ChangeLog, nvtv-0.3.0.ebuild : Intial ebuild for nvtv from http://sourceforge.net/projects/nv-tv-out diff --git a/media-video/nvtv/files/digest-nvtv-0.4.0 b/media-video/nvtv/files/digest-nvtv-0.4.0 new file mode 100644 index 000000000000..654a1a6e9e84 --- /dev/null +++ b/media-video/nvtv/files/digest-nvtv-0.4.0 @@ -0,0 +1 @@ +MD5 4ef0d1ec5a353e8b220b97122b553875 nvtv-0.4.0.tar.gz 263456 diff --git a/media-video/nvtv/nvtv-0.3.0.ebuild b/media-video/nvtv/nvtv-0.3.0.ebuild index 8ea89b36327e..2d67e3a66edd 100644 --- a/media-video/nvtv/nvtv-0.3.0.ebuild +++ b/media-video/nvtv/nvtv-0.3.0.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer: Bart Lauwers <blauwers@cisco.com> -# $Header: /var/cvsroot/gentoo-x86/media-video/nvtv/nvtv-0.3.0.ebuild,v 1.1 2002/05/03 01:42:22 agenkin Exp $ +# Maintainer: Bart Lauwers <blauwers@gentoo.com> +# $Header: /var/cvsroot/gentoo-x86/media-video/nvtv/nvtv-0.3.0.ebuild,v 1.2 2002/06/04 15:56:50 blauwers Exp $ DESCRIPTION="TV-Out for NVidia cards." HOMEPAGE="http://sourceforge.net/projects/nv-tv-out" diff --git a/media-video/nvtv/nvtv-0.4.0.ebuild b/media-video/nvtv/nvtv-0.4.0.ebuild new file mode 100644 index 000000000000..3402ad9609f9 --- /dev/null +++ b/media-video/nvtv/nvtv-0.4.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/media-video/nvtv/nvtv-0.4.0.ebuild,v 1.1 2002/06/04 15:56:50 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" + +DEPEND="sys-apps/pciutils" + +S=${WORKDIR}/${PN} + +src_compile() { + local myconf + cd src + + use gtk && myconf="${myconf} --with-gtk" || myconf="${myconf} --without-gtk" + use X && myconf="${myconf} --with-x" || myconf="${myconf} --without-x" + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + ${myconf} || die "./configure failed" + + # The CFLAGS don't seem to make it into the Makefile. + emake CXFLAGS="${CFLAGS}" || die +} + +src_install () { + dobin src/nvtv + dosbin src/nvtvd + + dodoc ANNOUNCE BUGS FAQ INSTALL README \ + doc/USAGE doc/XFREE doc/chips.txt \ + doc/overview.txt doc/timing.txt xine/tvxine + + exeinto /etc/init.d + newexe ${FILESDIR}/nvtv.start nvtv +} |