blob: 2f93ec29aec5081e1544dc8102eec7c4e4260b9a (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-tv/tvtime/tvtime-0.9.15.ebuild,v 1.3 2005/07/09 18:27:08 pylon Exp $
inherit eutils
DESCRIPTION="High quality television application for use with video capture cards."
HOMEPAGE="http://tvtime.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE="pic nls"
RDEPEND="virtual/x11
>=media-libs/freetype-2
>=sys-libs/zlib-1.1.4
>=media-libs/libpng-1.2
>=dev-libs/libxml2-2.5.11"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
# use 'tvtime' for the application icon see bug #66293
sed -i -e "s/tvtime.png/tvtime/" ${S}/docs/net-tvtime.desktop
# patch to adapt to PIC or __PIC__ for pic support
# see bug #74227
cd ${S}
epatch ${FILESDIR}/${PN}-pic.patch
}
src_compile() {
econf `use_enable nls` \
`use_with pic` || die "econf failed"
emake || die "compile problem"
}
src_install () {
make DESTDIR=${D} install || die "make install failed"
dohtml docs/html/*
dodoc ChangeLog AUTHORS NEWS README COPYING data/COPYING.*
}
pkg_postinst() {
einfo "A default setup for ${PN} has been saved as"
einfo "/etc/tvtime/tvtime.xml. You may need to modify it"
einfo "for your needs."
einfo
einfo "Detailed information on ${PN} setup can be"
einfo "found at ${HOMEPAGE}help.html"
echo
}
|