Gentoo Archives: gentoo-commits

From: "Maciej Mrozowski (reavertm)" <reavertm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in kde-base/ksplash: ChangeLog ksplash-4.4.2-r1.ebuild ksplash-4.4.2.ebuild
Date: Mon, 03 May 2010 18:32:43
Message-Id: 20100503183239.A2C0C2C384@corvid.gentoo.org
1 reavertm 10/05/03 18:32:39
2
3 Modified: ChangeLog
4 Added: ksplash-4.4.2-r1.ebuild
5 Removed: ksplash-4.4.2.ebuild
6 Log:
7 Fix bug 312513, xinerama automagic, thanks for Andreas K. Huettel
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.61 kde-base/ksplash/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/ksplash/ChangeLog?rev=1.61&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/ksplash/ChangeLog?rev=1.61&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/ksplash/ChangeLog?r1=1.60&r2=1.61
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/kde-base/ksplash/ChangeLog,v
20 retrieving revision 1.60
21 retrieving revision 1.61
22 diff -u -r1.60 -r1.61
23 --- ChangeLog 31 Mar 2010 23:06:07 -0000 1.60
24 +++ ChangeLog 3 May 2010 18:32:39 -0000 1.61
25 @@ -1,6 +1,14 @@
26 # ChangeLog for kde-base/ksplash
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/kde-base/ksplash/ChangeLog,v 1.60 2010/03/31 23:06:07 spatz Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/kde-base/ksplash/ChangeLog,v 1.61 2010/05/03 18:32:39 reavertm Exp $
30 +
31 +*ksplash-4.4.2-r1 (03 May 2010)
32 +
33 + 03 May 2010; Maciej Mrozowski <reavertm@g.o> -ksplash-4.4.2.ebuild,
34 + +ksplash-4.4.2-r1.ebuild,
35 + +files/ksplash-4.4.2-xinerama_cmake_automagic.patch:
36 + Fix bug 312513, xinerama automagic, thanks for Andreas K. Huettel
37 + (dilfridge)
38
39 31 Mar 2010; Dror Levin <spatz@g.o> -ksplash-4.3.4.ebuild,
40 -ksplash-4.4.0.ebuild:
41
42
43
44 1.1 kde-base/ksplash/ksplash-4.4.2-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/ksplash/ksplash-4.4.2-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/kde-base/ksplash/ksplash-4.4.2-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: ksplash-4.4.2-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/kde-base/ksplash/ksplash-4.4.2-r1.ebuild,v 1.1 2010/05/03 18:32:39 reavertm Exp $
54
55 EAPI="3"
56
57 KMNAME="kdebase-workspace"
58 inherit kde4-meta
59
60 DESCRIPTION="KDE splashscreen framework (the splashscreen of KDE itself, not of individual apps)"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
62 IUSE="3dnow altivec debug mmx sse sse2 xinerama"
63
64 COMMONDEPEND="
65 media-libs/libpng
66 xinerama? ( x11-libs/libXinerama )
67 "
68 DEPEND="${COMMONDEPEND}
69 xinerama? ( x11-proto/xineramaproto )
70 "
71 RDEPEND="${COMMONDEPEND}"
72
73 PATCHES=( "${FILESDIR}/${PN}-4.4.2-xinerama_cmake_automagic.patch" )
74
75 src_configure() {
76 mycmakeargs=(
77 $(cmake-utils_use_has 3dnow X86_3DNOW)
78 $(cmake-utils_use_has altivec PPC_ALTIVEC)
79 $(cmake-utils_use_has mmx X86_MMX)
80 $(cmake-utils_use_has sse X86_SSE)
81 $(cmake-utils_use_has sse2 X86_SSE2)
82 $(cmake-utils_use_with xinerama X11_Xinerama)
83 )
84
85 kde4-meta_src_configure
86 }