Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-tv/ivtv-utils: ChangeLog ivtv-utils-1.4.1.ebuild
Date: Mon, 05 Mar 2012 05:47:23
Message-Id: 20120305054711.2C4962004B@flycatcher.gentoo.org
1 ssuominen 12/03/05 05:47:11
2
3 Modified: ChangeLog
4 Added: ivtv-utils-1.4.1.ebuild
5 Log:
6 Version bump wrt #332059 by "df". Patch for overflow(s) wrt #339405 by Kevin Pyle. Stop using linux-mod.eclass wrt #283368 by Mike Auty.
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.16 media-tv/ivtv-utils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/ivtv-utils/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/ivtv-utils/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/ivtv-utils/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-tv/ivtv-utils/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 26 Jun 2011 15:19:24 -0000 1.15
24 +++ ChangeLog 5 Mar 2012 05:47:10 -0000 1.16
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-tv/ivtv-utils
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-tv/ivtv-utils/ChangeLog,v 1.15 2011/06/26 15:19:24 lxnay Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-tv/ivtv-utils/ChangeLog,v 1.16 2012/03/05 05:47:10 ssuominen Exp $
31 +
32 +*ivtv-utils-1.4.1 (05 Mar 2012)
33 +
34 + 05 Mar 2012; Samuli Suominen <ssuominen@g.o> +ivtv-utils-1.4.1.ebuild,
35 + +files/ivtv-utils-1.4.1-overflow.patch:
36 + Version bump wrt #332059 by "df". Patch for overflow(s) wrt #339405 by Kevin
37 + Pyle. Stop using linux-mod.eclass wrt #283368 by Mike Auty.
38
39 26 Jun 2011; Fabio Erculiani <lxnay@g.o> ivtv-utils-1.4.0-r2.ebuild:
40 sys-kernel/linux-firmware blocks ivtv-firmware making impossible to have
41
42
43
44 1.1 media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: ivtv-utils-1.4.1.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-tv/ivtv-utils/ivtv-utils-1.4.1.ebuild,v 1.1 2012/03/05 05:47:10 ssuominen Exp $
54
55 EAPI=4
56 inherit eutils toolchain-funcs
57
58 DESCRIPTION="IVTV utilities for Hauppauge PVR PCI cards"
59 HOMEPAGE="http://www.ivtvdriver.org/"
60 SRC_URI="http://dl.ivtvdriver.org/ivtv/archive/1.4.x/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE="perl"
66
67 DEPEND="!media-tv/ivtv"
68 RDEPEND="${DEPEND}
69 media-tv/v4l-utils
70 perl? (
71 dev-perl/Video-Frequencies
72 dev-perl/Video-ivtv
73 dev-perl/Config-IniFiles
74 virtual/perl-Getopt-Long
75 dev-perl/perl-tk
76 )"
77
78 src_prepare() {
79 epatch \
80 "${FILESDIR}"/${PN}-1.4.0-gentoo.patch \
81 "${FILESDIR}"/${PN}-1.4.1-overflow.patch
82 }
83
84 src_compile() {
85 tc-export CC CXX
86 emake
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" PREFIX="/usr" install
91 dodoc ChangeLog README doc/*
92
93 if use perl; then
94 dobin utils/perl/*.pl
95 dodoc utils/perl/README.ptune
96 fi
97 }