summaryrefslogtreecommitdiff
blob: 1d8d0dea9c2b3a921d03facc3c6a04f8262723b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit autotools

IUSE="X gtk"

DESCRIPTION="TV-Out for NVidia cards"
HOMEPAGE="https://sourceforge.net/projects/nv-tv-out/"
SRC_URI="mirror://sourceforge/nv-tv-out/${P}.tar.gz"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"

RDEPEND="sys-apps/pciutils[-zlib]
	gtk? ( x11-libs/gtk+:2 )
	X? ( x11-libs/libXi
		x11-libs/libXmu
		x11-libs/libXxf86vm )"

DEPEND="${RDEPEND}
	X? ( x11-base/xorg-proto )"

PATCHES=( "${FILESDIR}/respect-cflags.patch" )

src_prepare() {
	default
	eautoreconf
}

src_configure() {
	econf $(use_with gtk) $(use_with X x)
}

src_install() {
	dobin src/nvtv
	dosbin src/nvtvd
	dodoc ANNOUNCE BUGS FAQ README doc/*.txt doc/USAGE
	newinitd "${FILESDIR}"/nvtv.start nvtv
}