blob: b16b09cdb77a0ec4d33478b7255ec05d586392aa (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/w_scan/w_scan-20121111.ebuild,v 1.1 2013/01/06 18:09:04 hd_brummy Exp $
EAPI="5"
DESCRIPTION="Scan for DVB-C/DVB-T/DVB-S channels without prior knowledge of frequencies and modulations"
HOMEPAGE="http://wirbel.htpc-forum.de/w_scan/index2.html"
SRC_URI="http://wirbel.htpc-forum.de/w_scan/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
DEPEND=">=virtual/linuxtv-dvb-headers-5.3"
RDEPEND=""
src_prepare() {
# support dvb api 5.8
if has_version ">=virtual/linuxtv-dvb-headers-5.8"; then
sed -e "s:DTV_DVBT2_PLP_ID:DTV_STREAM_ID:" -i scan.c
fi
}
src_install() {
emake DESTDIR="${D}" install
dodoc ChangeLog README
if use doc; then
dodoc doc/README.file_formats doc/README_VLC_DVB
fi
if use examples; then
docinto examples
dodoc doc/rotor.conf
fi
}
|