Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/y4mscaler: ChangeLog y4mscaler-9.0-r1.ebuild
Date: Fri, 31 Oct 2008 12:23:23
Message-Id: E1Kvt28-0002Vz-Qr@stork.gentoo.org
1 aballier 08/10/31 12:23:20
2
3 Modified: ChangeLog
4 Added: y4mscaler-9.0-r1.ebuild
5 Log:
6 Fix build with latest mjpegtools, by Michael Mauch <michael.mauch@×××.de>, bug #219063, respect ldflags and chost-prefixed g++
7 (Portage version: 2.2_rc12/cvs/Linux 2.6.27.4 x86_64)
8
9 Revision Changes Path
10 1.10 media-video/y4mscaler/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/y4mscaler/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/y4mscaler/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/y4mscaler/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/y4mscaler/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 31 Oct 2008 12:14:20 -0000 1.9
23 +++ ChangeLog 31 Oct 2008 12:23:20 -0000 1.10
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-video/y4mscaler
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-video/y4mscaler/ChangeLog,v 1.9 2008/10/31 12:14:20 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-video/y4mscaler/ChangeLog,v 1.10 2008/10/31 12:23:20 aballier Exp $
29 +
30 +*y4mscaler-9.0-r1 (31 Oct 2008)
31 +
32 + 31 Oct 2008; Alexis Ballier <aballier@g.o>
33 + +files/y4mscaler-9.0-mjpeg-1.9.patch, +y4mscaler-9.0-r1.ebuild:
34 + Fix build with latest mjpegtools, by Michael Mauch <michael.mauch@×××.de>,
35 + bug #219063, respect ldflags and chost-prefixed g++
36
37 31 Oct 2008; Alexis Ballier <aballier@g.o> y4mscaler-9.0.ebuild:
38 shorten description
39
40
41
42 1.1 media-video/y4mscaler/y4mscaler-9.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/y4mscaler/y4mscaler-9.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/y4mscaler/y4mscaler-9.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: y4mscaler-9.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-video/y4mscaler/y4mscaler-9.0-r1.ebuild,v 1.1 2008/10/31 12:23:20 aballier Exp $
52
53 inherit eutils toolchain-funcs
54
55 SRC_URI="http://www.mir.com/DMG/Software/${P}-src.tgz"
56 DESCRIPTION="A video scaler which operates on YUV4MPEG2 streams, as used by the tools in the MJPEGtools project."
57 HOMEPAGE="http://www.mir.com/DMG/Software/"
58 LICENSE="GPL-2"
59
60 DEPEND=">=media-video/mjpegtools-1.9.0_rc3"
61
62 KEYWORDS="~amd64 ~x86"
63 IUSE=""
64 SLOT="0"
65
66 src_unpack() {
67 unpack ${A}
68 cd "${S}"
69 epatch "${FILESDIR}/${P}-mjpeg-1.9.patch"
70 # There's no 'configure' script (yet)
71 sed -i -e "s:CPU_OPT =:CPU_OPT = ${CXXFLAGS}:" Makefile
72 sed -i -e "s:^LDFLAGS =:LDFLAGS +=:" Makefile
73 tc-export CXX
74 }
75
76 src_install() {
77 # The program doesn't have an install routine (for now)
78 dobin y4mscaler || die
79 doman y4mscaler.1 || die
80 dodoc ChangeLog README TODO
81 }