Gentoo Archives: gentoo-commits

From: "Lars Weiler (pylon)" <pylon@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-tv/nxtvepg: ChangeLog nxtvepg-2.8.0.ebuild nxtvepg-2.7.7.ebuild nxtvepg-2.7.6.ebuild
Date: Sun, 30 Mar 2008 14:58:01
Message-Id: E1Jfyys-00055D-N7@stork.gentoo.org
1 pylon 08/03/30 14:57:58
2
3 Modified: ChangeLog
4 Added: nxtvepg-2.8.0.ebuild
5 Removed: nxtvepg-2.7.7.ebuild nxtvepg-2.7.6.ebuild
6 Log:
7 Version bump; fixes tcl8.5-compatibility; bug #212682 and #173467.
8 Probably the tcl/tk-dependency must be fixed to 8.5, but that version is
9 still masked.
10 (Portage version: 2.1.4.4)
11
12 Revision Changes Path
13 1.17 media-tv/nxtvepg/ChangeLog
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/nxtvepg/ChangeLog?rev=1.17&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/nxtvepg/ChangeLog?rev=1.17&content-type=text/plain
17 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/nxtvepg/ChangeLog?r1=1.16&r2=1.17
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/media-tv/nxtvepg/ChangeLog,v
22 retrieving revision 1.16
23 retrieving revision 1.17
24 diff -u -r1.16 -r1.17
25 --- ChangeLog 27 Nov 2007 10:42:59 -0000 1.16
26 +++ ChangeLog 30 Mar 2008 14:57:58 -0000 1.17
27 @@ -1,6 +1,15 @@
28 # ChangeLog for media-tv/nxtvepg
29 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/media-tv/nxtvepg/ChangeLog,v 1.16 2007/11/27 10:42:59 zzam Exp $
31 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/media-tv/nxtvepg/ChangeLog,v 1.17 2008/03/30 14:57:58 pylon Exp $
33 +
34 +*nxtvepg-2.8.0 (30 Mar 2008)
35 +
36 + 30 Mar 2008; Lars Weiler <pylon@g.o> +files/nxtvepg-tcl8.5.patch,
37 + +files/nxtvepg-daemon-install.patch, +files/nxtvepg-unicode.patch,
38 + -nxtvepg-2.7.6.ebuild, -nxtvepg-2.7.7.ebuild, +nxtvepg-2.8.0.ebuild:
39 + Version bump; fixes tcl8.5-compatibility; bug #212682 and #173467.
40 + Probably the tcl/tk-dependency must be fixed to 8.5, but that version is
41 + still masked.
42
43 27 Nov 2007; Matthias Schwarzott <zzam@g.o> nxtvepg-2.7.5.ebuild:
44 Fixed quoting.
45
46
47
48 1.1 media-tv/nxtvepg/nxtvepg-2.8.0.ebuild
49
50 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/nxtvepg/nxtvepg-2.8.0.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/nxtvepg/nxtvepg-2.8.0.ebuild?rev=1.1&content-type=text/plain
52
53 Index: nxtvepg-2.8.0.ebuild
54 ===================================================================
55 # Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/media-tv/nxtvepg/nxtvepg-2.8.0.ebuild,v 1.1 2008/03/30 14:57:58 pylon Exp $
58
59 inherit eutils toolchain-funcs
60
61 DESCRIPTION="receive and browse free TV programme listings via bttv for tv networks in Europe"
62 HOMEPAGE="http://nxtvepg.sourceforge.net/"
63 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~ppc ~x86"
68 IUSE="X unicode"
69
70 RDEPEND="X? ( >=dev-lang/tcl-8
71 >=dev-lang/tk-8
72 x11-libs/libX11
73 x11-libs/libXmu )"
74
75 DEPEND="${RDEPEND}
76 sys-apps/sed
77 sys-kernel/linux-headers
78 X? ( x11-proto/xproto )"
79
80 src_unpack() {
81 unpack ${A}
82 cd "${S}"
83 epatch "${FILESDIR}/nxtvepg-db.patch" || die "db patch failed"
84 epatch "${FILESDIR}/nxtvepg-daemon-install.patch" || die "daemon patch failed"
85 epatch "${FILESDIR}/nxtvepg-tcl8.5.patch" || die "tcl-8.5 patch failed"
86 ( use unicode && epatch "${FILESDIR}/nxtvepg-unicode.patch" ) || die "unicode patch failed"
87 }
88
89 src_compile() {
90 if use X; then
91 emake -j1 CC=$(tc-getCC) prefix="/usr" || die "emake failed"
92 else
93 emake -j1 CC=$(tc-getCC) prefix="/usr" daemon || die "emake failed"
94 fi
95 }
96
97 src_install() {
98 if use X; then
99 emake ROOT="${D}" prefix="/usr" install || die "emake install failed"
100 else
101 emake ROOT="${D}" prefix="/usr" install-daemon || die "emake install failed"
102 fi
103 dodoc README CHANGES TODO
104 dohtml manual*.html
105 }
106
107
108
109 --
110 gentoo-commits@l.g.o mailing list