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/projectx: projectx-0.91.0.10.ebuild projectx-0.91.0.08.ebuild ChangeLog
Date: Thu, 29 Jan 2015 19:16:48
Message-Id: 20150129191642.A1901109C0@oystercatcher.gentoo.org
1 mgorny 15/01/29 19:16:42
2
3 Modified: projectx-0.91.0.10.ebuild projectx-0.91.0.08.ebuild
4 ChangeLog
5 Log:
6 Convert to CPU_FLAGS_X86.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.6 media-video/projectx/projectx-0.91.0.10.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/projectx/projectx-0.91.0.10.ebuild?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/projectx/projectx-0.91.0.10.ebuild?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/projectx/projectx-0.91.0.10.ebuild?r1=1.5&r2=1.6
16
17 Index: projectx-0.91.0.10.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-video/projectx/projectx-0.91.0.10.ebuild,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- projectx-0.91.0.10.ebuild 1 Jan 2015 11:25:26 -0000 1.5
24 +++ projectx-0.91.0.10.ebuild 29 Jan 2015 19:16:42 -0000 1.6
25 @@ -1,6 +1,6 @@
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/projectx/projectx-0.91.0.10.ebuild,v 1.5 2015/01/01 11:25:26 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-video/projectx/projectx-0.91.0.10.ebuild,v 1.6 2015/01/29 19:16:42 mgorny Exp $
30
31 EAPI=5
32
33 @@ -20,7 +20,7 @@
34 LICENSE="GPL-2"
35 SLOT="0"
36 KEYWORDS="amd64 ppc ppc64 x86"
37 -IUSE="X mmx sse"
38 +IUSE="X cpu_flags_x86_mmx cpu_flags_x86_sse"
39
40 COMMON_DEP="dev-java/commons-net
41 X? ( =dev-java/browserlauncher2-1* )"
42 @@ -93,8 +93,8 @@
43 src_compile() {
44 local IDCT="idct-mjpeg" # default IDCT implementation
45 if use x86 || use amd64; then
46 - use mmx && IDCT="idct-mjpeg-mmx"
47 - use sse && IDCT="idct-mjpeg-sse"
48 + use cpu_flags_x86_mmx && IDCT="idct-mjpeg-mmx"
49 + use cpu_flags_x86_sse && IDCT="idct-mjpeg-sse"
50 fi
51
52 eant build $(use_doc) -Dmanifest.mainclass=$(mainclass)
53
54
55
56 1.7 media-video/projectx/projectx-0.91.0.08.ebuild
57
58 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/projectx/projectx-0.91.0.08.ebuild?rev=1.7&view=markup
59 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/projectx/projectx-0.91.0.08.ebuild?rev=1.7&content-type=text/plain
60 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/projectx/projectx-0.91.0.08.ebuild?r1=1.6&r2=1.7
61
62 Index: projectx-0.91.0.08.ebuild
63 ===================================================================
64 RCS file: /var/cvsroot/gentoo-x86/media-video/projectx/projectx-0.91.0.08.ebuild,v
65 retrieving revision 1.6
66 retrieving revision 1.7
67 diff -u -r1.6 -r1.7
68 --- projectx-0.91.0.08.ebuild 17 Apr 2014 06:31:30 -0000 1.6
69 +++ projectx-0.91.0.08.ebuild 29 Jan 2015 19:16:42 -0000 1.7
70 @@ -1,6 +1,6 @@
71 -# Copyright 1999-2014 Gentoo Foundation
72 +# Copyright 1999-2015 Gentoo Foundation
73 # Distributed under the terms of the GNU General Public License v2
74 -# $Header: /var/cvsroot/gentoo-x86/media-video/projectx/projectx-0.91.0.08.ebuild,v 1.6 2014/04/17 06:31:30 billie Exp $
75 +# $Header: /var/cvsroot/gentoo-x86/media-video/projectx/projectx-0.91.0.08.ebuild,v 1.7 2015/01/29 19:16:42 mgorny Exp $
76
77 EAPI=5
78
79 @@ -20,7 +20,7 @@
80 LICENSE="GPL-2"
81 SLOT="0"
82 KEYWORDS="amd64 ppc ppc64 x86"
83 -IUSE="X mmx sse"
84 +IUSE="X cpu_flags_x86_mmx cpu_flags_x86_sse"
85
86 COMMON_DEP="dev-java/commons-net
87 X? ( =dev-java/browserlauncher2-1* )"
88 @@ -93,8 +93,8 @@
89 src_compile() {
90 local IDCT="idct-mjpeg" # default IDCT implementation
91 if use x86 || use amd64; then
92 - use mmx && IDCT="idct-mjpeg-mmx"
93 - use sse && IDCT="idct-mjpeg-sse"
94 + use cpu_flags_x86_mmx && IDCT="idct-mjpeg-mmx"
95 + use cpu_flags_x86_sse && IDCT="idct-mjpeg-sse"
96 fi
97
98 eant build $(use_doc) -Dmanifest.mainclass=$(mainclass)
99
100
101
102 1.90 media-video/projectx/ChangeLog
103
104 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/projectx/ChangeLog?rev=1.90&view=markup
105 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/projectx/ChangeLog?rev=1.90&content-type=text/plain
106 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/projectx/ChangeLog?r1=1.89&r2=1.90
107
108 Index: ChangeLog
109 ===================================================================
110 RCS file: /var/cvsroot/gentoo-x86/media-video/projectx/ChangeLog,v
111 retrieving revision 1.89
112 retrieving revision 1.90
113 diff -u -r1.89 -r1.90
114 --- ChangeLog 1 Jan 2015 11:25:26 -0000 1.89
115 +++ ChangeLog 29 Jan 2015 19:16:42 -0000 1.90
116 @@ -1,6 +1,10 @@
117 # ChangeLog for media-video/projectx
118 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
119 -# $Header: /var/cvsroot/gentoo-x86/media-video/projectx/ChangeLog,v 1.89 2015/01/01 11:25:26 ago Exp $
120 +# $Header: /var/cvsroot/gentoo-x86/media-video/projectx/ChangeLog,v 1.90 2015/01/29 19:16:42 mgorny Exp $
121 +
122 + 29 Jan 2015; Michał Górny <mgorny@g.o> projectx-0.91.0.08.ebuild,
123 + projectx-0.91.0.10.ebuild:
124 + Convert to CPU_FLAGS_X86.
125
126 01 Jan 2015; Agostino Sarubbo <ago@g.o> projectx-0.91.0.10.ebuild:
127 Stable for ppc64, wrt bug #531314