diff options
Diffstat (limited to 'media-video/nvtv/nvtv-0.3.0.ebuild')
-rw-r--r-- | media-video/nvtv/nvtv-0.3.0.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/media-video/nvtv/nvtv-0.3.0.ebuild b/media-video/nvtv/nvtv-0.3.0.ebuild deleted file mode 100644 index d5bb370bf2d9..000000000000 --- a/media-video/nvtv/nvtv-0.3.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# 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.3.0.ebuild,v 1.3 2002/07/11 06:30:42 drobbins Exp $ - -DESCRIPTION="TV-Out for NVidia cards." -HOMEPAGE="http://sourceforge.net/projects/nv-tv-out" -LICENSE="GPL-2" - -SRC_URI="http://unc.dl.sourceforge.net/sourceforge/nv-tv-out/${P}.tar.gz" - -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 -} |