diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2010-06-30 15:37:09 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2010-06-30 15:37:09 +0000 |
commit | 588eb8e56926b65029e4de63aa398e51ed8cc9b8 (patch) | |
tree | 356a5e95843b62ad54fc9c77facba6ff67c4db94 /kde-base/ksplash | |
parent | x86 stable, bug 323729 (diff) | |
download | gentoo-2-588eb8e56926b65029e4de63aa398e51ed8cc9b8.tar.gz gentoo-2-588eb8e56926b65029e4de63aa398e51ed8cc9b8.tar.bz2 gentoo-2-588eb8e56926b65029e4de63aa398e51ed8cc9b8.zip |
[kde-base] Bump KDE SC 4.4.5 =)
(Portage version: 2.2_rc67_p182/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.4.5.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/kde-base/ksplash/ChangeLog b/kde-base/ksplash/ChangeLog index 17ec168865ab..1a4fcd60fef3 100644 --- a/kde-base/ksplash/ChangeLog +++ b/kde-base/ksplash/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/ksplash # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/ksplash/ChangeLog,v 1.68 2010/06/27 23:14:58 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/ksplash/ChangeLog,v 1.69 2010/06/30 15:36:52 alexxy Exp $ + +*ksplash-4.4.5 (30 Jun 2010) + + 30 Jun 2010; Alexey Shvetsov <alexxy@gentoo.org> +ksplash-4.4.5.ebuild: + Version bump 27 Jun 2010; Christian Faulhammer <fauli@gentoo.org> ksplash-4.4.4.ebuild: x86 stable, bug 322791 diff --git a/kde-base/ksplash/ksplash-4.4.5.ebuild b/kde-base/ksplash/ksplash-4.4.5.ebuild new file mode 100644 index 000000000000..c1389577f1a1 --- /dev/null +++ b/kde-base/ksplash/ksplash-4.4.5.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/ksplash/ksplash-4.4.5.ebuild,v 1.1 2010/06/30 15:36:52 alexxy Exp $ + +EAPI="3" + +KMNAME="kdebase-workspace" +inherit kde4-meta + +DESCRIPTION="KDE splashscreen framework (the splashscreen of KDE itself, not of individual apps)" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~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 +} |