blob: 2aa3436bd9c154f5b84545e49a2510e5f96f066e (
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
44
45
46
47
48
49
50
51
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/nxtvepg/nxtvepg-2.8.0.ebuild,v 1.1 2008/03/30 14:57:58 pylon Exp $
inherit eutils toolchain-funcs
DESCRIPTION="receive and browse free TV programme listings via bttv for tv networks in Europe"
HOMEPAGE="http://nxtvepg.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="X unicode"
RDEPEND="X? ( >=dev-lang/tcl-8
>=dev-lang/tk-8
x11-libs/libX11
x11-libs/libXmu )"
DEPEND="${RDEPEND}
sys-apps/sed
sys-kernel/linux-headers
X? ( x11-proto/xproto )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/nxtvepg-db.patch" || die "db patch failed"
epatch "${FILESDIR}/nxtvepg-daemon-install.patch" || die "daemon patch failed"
epatch "${FILESDIR}/nxtvepg-tcl8.5.patch" || die "tcl-8.5 patch failed"
( use unicode && epatch "${FILESDIR}/nxtvepg-unicode.patch" ) || die "unicode patch failed"
}
src_compile() {
if use X; then
emake -j1 CC=$(tc-getCC) prefix="/usr" || die "emake failed"
else
emake -j1 CC=$(tc-getCC) prefix="/usr" daemon || die "emake failed"
fi
}
src_install() {
if use X; then
emake ROOT="${D}" prefix="/usr" install || die "emake install failed"
else
emake ROOT="${D}" prefix="/usr" install-daemon || die "emake install failed"
fi
dodoc README CHANGES TODO
dohtml manual*.html
}
|