Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/recmpeg: recmpeg-1.0.5.ebuild ChangeLog
Date: Thu, 29 Jan 2015 19:16:48
Message-Id: 20150129191642.258D9109BF@oystercatcher.gentoo.org
1 mgorny 15/01/29 19:16:42
2
3 Modified: recmpeg-1.0.5.ebuild ChangeLog
4 Log:
5 Switch to CPU_FLAGS_X86.
6
7 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
8
9 Revision Changes Path
10 1.12 media-video/recmpeg/recmpeg-1.0.5.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/recmpeg/recmpeg-1.0.5.ebuild?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/recmpeg/recmpeg-1.0.5.ebuild?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/recmpeg/recmpeg-1.0.5.ebuild?r1=1.11&r2=1.12
15
16 Index: recmpeg-1.0.5.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/recmpeg/recmpeg-1.0.5.ebuild,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- recmpeg-1.0.5.ebuild 6 Nov 2013 04:07:39 -0000 1.11
23 +++ recmpeg-1.0.5.ebuild 29 Jan 2015 19:16:42 -0000 1.12
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2013 Gentoo Foundation
26 +# Copyright 1999-2015 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-video/recmpeg/recmpeg-1.0.5.ebuild,v 1.11 2013/11/06 04:07:39 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-video/recmpeg/recmpeg-1.0.5.ebuild,v 1.12 2015/01/29 19:16:42 mgorny Exp $
30
31 DESCRIPTION="Simple libfame-based video encoder which compresses raw video sequences to MPEG video"
32 HOMEPAGE="http://fame.sourceforge.net/"
33 @@ -9,15 +9,15 @@
34 LICENSE="GPL-2"
35 SLOT="0"
36 KEYWORDS="~ppc x86"
37 -IUSE="mmx sse"
38 +IUSE="cpu_flags_x86_mmx cpu_flags_x86_sse"
39
40 DEPEND=">=media-libs/libfame-0.9.0"
41
42 src_compile() {
43 local myconf
44
45 - use mmx && myconf="${myconf} --enable-mmx"
46 - use sse && myconf="${myconf} --enable-sse"
47 + use cpu_flags_x86_mmx && myconf="${myconf} --enable-mmx"
48 + use cpu_flags_x86_sse && myconf="${myconf} --enable-sse"
49
50 econf ${myconf} || die "econf failed"
51 emake || die "emake failed"
52
53
54
55 1.13 media-video/recmpeg/ChangeLog
56
57 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/recmpeg/ChangeLog?rev=1.13&view=markup
58 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/recmpeg/ChangeLog?rev=1.13&content-type=text/plain
59 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/recmpeg/ChangeLog?r1=1.12&r2=1.13
60
61 Index: ChangeLog
62 ===================================================================
63 RCS file: /var/cvsroot/gentoo-x86/media-video/recmpeg/ChangeLog,v
64 retrieving revision 1.12
65 retrieving revision 1.13
66 diff -u -r1.12 -r1.13
67 --- ChangeLog 6 Nov 2013 04:07:39 -0000 1.12
68 +++ ChangeLog 29 Jan 2015 19:16:42 -0000 1.13
69 @@ -1,6 +1,9 @@
70 # ChangeLog for media-video/recmpeg
71 -# Copyright 2002-2013 Gentoo Foundation; Distributed under the GPL v2
72 -# $Header: /var/cvsroot/gentoo-x86/media-video/recmpeg/ChangeLog,v 1.12 2013/11/06 04:07:39 patrick Exp $
73 +# Copyright 2002-2015 Gentoo Foundation; Distributed under the GPL v2
74 +# $Header: /var/cvsroot/gentoo-x86/media-video/recmpeg/ChangeLog,v 1.13 2015/01/29 19:16:42 mgorny Exp $
75 +
76 + 29 Jan 2015; Michał Górny <mgorny@g.o> recmpeg-1.0.5.ebuild:
77 + Switch to CPU_FLAGS_X86.
78
79 06 Nov 2013; Patrick Lauer <patrick@g.o> recmpeg-1.0.5.ebuild:
80 Shorten description, make repoman happier