diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2011-09-07 20:14:08 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2011-09-07 20:14:08 +0000 |
commit | 5f9a89edfc761f6e642eaf86247fccacdd48d248 (patch) | |
tree | d6c5667c5d199a8f311d21b4e1273d740f0b4d06 /kde-base/ksplash | |
parent | [profiles] Update kde mask (diff) | |
download | historical-5f9a89edfc761f6e642eaf86247fccacdd48d248.tar.gz historical-5f9a89edfc761f6e642eaf86247fccacdd48d248.tar.bz2 historical-5f9a89edfc761f6e642eaf86247fccacdd48d248.zip |
[kde-base] Add KDE SC 4.7.1
Package-Manager: portage-2.2.0_alpha54/cvs/Linux x86_64
Diffstat (limited to 'kde-base/ksplash')
-rw-r--r-- | kde-base/ksplash/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/ksplash/ksplash-4.7.1.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/kde-base/ksplash/ChangeLog b/kde-base/ksplash/ChangeLog index f40c0fc54c11..e41fdfceca85 100644 --- a/kde-base/ksplash/ChangeLog +++ b/kde-base/ksplash/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/ksplash # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/ksplash/ChangeLog,v 1.99 2011/08/15 18:55:40 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/ksplash/ChangeLog,v 1.100 2011/09/07 20:13:56 alexxy Exp $ + +*ksplash-4.7.1 (07 Sep 2011) + + 07 Sep 2011; Alexey Shvetsov <alexxy@gentoo.org> +ksplash-4.7.1.ebuild: + Version bump KDE SC 4.7.1 15 Aug 2011; Markus Meier <maekke@gentoo.org> ksplash-4.6.5.ebuild: x86 stable, bug #377465 diff --git a/kde-base/ksplash/ksplash-4.7.1.ebuild b/kde-base/ksplash/ksplash-4.7.1.ebuild new file mode 100644 index 000000000000..28c1fd66bd30 --- /dev/null +++ b/kde-base/ksplash/ksplash-4.7.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/ksplash/ksplash-4.7.1.ebuild,v 1.1 2011/09/07 20:13:56 alexxy Exp $ + +EAPI=4 + +KMNAME="kde-workspace" +inherit kde4-meta + +DESCRIPTION="KDE splashscreen framework (the splashscreen of KDE itself, not of individual apps)" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="3dnow altivec debug mmx sse sse2 xinerama" + +COMMONDEPEND=" + media-libs/libpng + xinerama? ( x11-libs/libXinerama ) +" +DEPEND="${COMMONDEPEND} + xinerama? ( x11-proto/xineramaproto ) +" +RDEPEND="${COMMONDEPEND}" + +PATCHES=( "${FILESDIR}/${PN}-4.4.2-xinerama_cmake_automagic.patch" ) + +src_configure() { + mycmakeargs=( + $(cmake-utils_use_has 3dnow X86_3DNOW) + $(cmake-utils_use_has altivec PPC_ALTIVEC) + $(cmake-utils_use_has mmx X86_MMX) + $(cmake-utils_use_has sse X86_SSE) + $(cmake-utils_use_has sse2 X86_SSE2) + $(cmake-utils_use_with xinerama X11_Xinerama) + ) + + kde4-meta_src_configure +} |