public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde:master commit in: media-libs/qimageblitz/files/, media-libs/qimageblitz/
@ 2012-11-14 17:28 Michael Palimaka
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Palimaka @ 2012-11-14 17:28 UTC (permalink / raw
  To: gentoo-commits

commit:     eb42a0e4d45d1de40ffef52d6df2a4dc35bb13aa
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 14 17:17:50 2012 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Nov 14 17:26:56 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=eb42a0e4

[media-libs/qimageblitz] Testing *FLAGS respect for assembler, wrt bug #431968.

Package-Manager: portage-2.1.11.31

---
 .../qimageblitz/files/qimageblitz-0.0.6-gcc.patch  |   16 ++++++++
 .../files/qimageblitz-9999-exec-stack.patch        |   11 ++++++
 media-libs/qimageblitz/metadata.xml                |    5 +++
 media-libs/qimageblitz/qimageblitz-0.0.6-r1.ebuild |   38 ++++++++++++++++++++
 4 files changed, 70 insertions(+), 0 deletions(-)

diff --git a/media-libs/qimageblitz/files/qimageblitz-0.0.6-gcc.patch b/media-libs/qimageblitz/files/qimageblitz-0.0.6-gcc.patch
new file mode 100644
index 0000000..9b4d812
--- /dev/null
+++ b/media-libs/qimageblitz/files/qimageblitz-0.0.6-gcc.patch
@@ -0,0 +1,16 @@
+--- blitz/CMakeLists.txt
++++ blitz/CMakeLists.txt
+@@ -31,12 +31,8 @@
+ 
+ if(HAVE_MMX)
+     if(NOT APPLE AND NOT WIN32)
++	enable_language(ASM)
+         set( blitz_LIB_SRCS ${blitz_LIB_SRCS} asm_scale.S )
+-        add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/asm_scale.o
+-            COMMAND gcc -c ${CMAKE_CURRENT_SOURCE_DIR}/asm_scale.S
+-            DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/asm_scale.S )
+-        set( blitz_LIB_EXTRA_SRCS ${CMAKE_CURRENT_BINARY_DIR}/asm_scale.o )
+-        set(HAVE_EXTERNAL_ASM TRUE)
+     endif(NOT APPLE AND NOT WIN32)
+ endif(HAVE_MMX)
+ configure_file (config-processor.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-processor.h )

diff --git a/media-libs/qimageblitz/files/qimageblitz-9999-exec-stack.patch b/media-libs/qimageblitz/files/qimageblitz-9999-exec-stack.patch
new file mode 100644
index 0000000..8692c24
--- /dev/null
+++ b/media-libs/qimageblitz/files/qimageblitz-9999-exec-stack.patch
@@ -0,0 +1,11 @@
+diff -uar qimageblitz/blitz/asm_scale.S qimageblitz~/blitz/asm_scale.S
+--- qimageblitz-orig/blitz/asm_scale.S	2007-10-17 01:17:57.000000000 +0200
++++ qimageblitz/blitz/asm_scale.S	2007-10-17 01:19:12.000000000 +0200
+@@ -814,3 +814,7 @@
+ SIZE(qimageScale_mmx_AARGBA)
+ 
+ #endif
++#if defined(__linux__) && defined(__ELF__)
++.section .note.GNU-stack,"",%progbits
++#endif
++

diff --git a/media-libs/qimageblitz/metadata.xml b/media-libs/qimageblitz/metadata.xml
new file mode 100644
index 0000000..8d1e86a
--- /dev/null
+++ b/media-libs/qimageblitz/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>kde</herd>
+</pkgmetadata>

diff --git a/media-libs/qimageblitz/qimageblitz-0.0.6-r1.ebuild b/media-libs/qimageblitz/qimageblitz-0.0.6-r1.ebuild
new file mode 100644
index 0000000..d7ab45c
--- /dev/null
+++ b/media-libs/qimageblitz/qimageblitz-0.0.6-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/qimageblitz/qimageblitz-0.0.6.ebuild,v 1.9 2012/05/17 13:03:37 aballier Exp $
+
+EAPI=5
+
+inherit cmake-utils
+
+DESCRIPTION="A graphical effect and filter library for KDE4"
+HOMEPAGE="http://websvn.kde.org/trunk/kdesupport/qimageblitz/"
+SRC_URI="mirror://kde/stable/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2 LGPL-2"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
+SLOT="0"
+IUSE="3dnow altivec debug mmx sse sse2"
+
+DEPEND="
+	x11-libs/qt-core:4
+	x11-libs/qt-gui:4
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-9999-exec-stack.patch"
+	"${FILESDIR}/${P}-gcc.patch"
+)
+
+src_configure() {
+	mycmakeargs=(
+		$(cmake-utils_use_has 3dnow)
+		$(cmake-utils_use_has altivec)
+		$(cmake-utils_use_has mmx)
+		$(cmake-utils_use_has sse)
+		$(cmake-utils_use_has sse2)
+	)
+	cmake-utils_src_configure
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] proj/kde:master commit in: media-libs/qimageblitz/files/, media-libs/qimageblitz/
@ 2012-12-10 12:30 Michael Palimaka
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Palimaka @ 2012-12-10 12:30 UTC (permalink / raw
  To: gentoo-commits

commit:     76d3c036a2f6304ec2c1c66cc292df7504a0c1d2
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 10 12:28:14 2012 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Mon Dec 10 12:28:14 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=76d3c036

[media-libs/qimageblitz] Moved to portage.

---
 .../qimageblitz/files/qimageblitz-0.0.6-gcc.patch  |   16 --------
 .../files/qimageblitz-9999-exec-stack.patch        |   11 ------
 media-libs/qimageblitz/metadata.xml                |    5 ---
 media-libs/qimageblitz/qimageblitz-0.0.6-r1.ebuild |   38 --------------------
 4 files changed, 0 insertions(+), 70 deletions(-)

diff --git a/media-libs/qimageblitz/files/qimageblitz-0.0.6-gcc.patch b/media-libs/qimageblitz/files/qimageblitz-0.0.6-gcc.patch
deleted file mode 100644
index 9b4d812..0000000
--- a/media-libs/qimageblitz/files/qimageblitz-0.0.6-gcc.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- blitz/CMakeLists.txt
-+++ blitz/CMakeLists.txt
-@@ -31,12 +31,8 @@
- 
- if(HAVE_MMX)
-     if(NOT APPLE AND NOT WIN32)
-+	enable_language(ASM)
-         set( blitz_LIB_SRCS ${blitz_LIB_SRCS} asm_scale.S )
--        add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/asm_scale.o
--            COMMAND gcc -c ${CMAKE_CURRENT_SOURCE_DIR}/asm_scale.S
--            DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/asm_scale.S )
--        set( blitz_LIB_EXTRA_SRCS ${CMAKE_CURRENT_BINARY_DIR}/asm_scale.o )
--        set(HAVE_EXTERNAL_ASM TRUE)
-     endif(NOT APPLE AND NOT WIN32)
- endif(HAVE_MMX)
- configure_file (config-processor.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-processor.h )

diff --git a/media-libs/qimageblitz/files/qimageblitz-9999-exec-stack.patch b/media-libs/qimageblitz/files/qimageblitz-9999-exec-stack.patch
deleted file mode 100644
index 8692c24..0000000
--- a/media-libs/qimageblitz/files/qimageblitz-9999-exec-stack.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -uar qimageblitz/blitz/asm_scale.S qimageblitz~/blitz/asm_scale.S
---- qimageblitz-orig/blitz/asm_scale.S	2007-10-17 01:17:57.000000000 +0200
-+++ qimageblitz/blitz/asm_scale.S	2007-10-17 01:19:12.000000000 +0200
-@@ -814,3 +814,7 @@
- SIZE(qimageScale_mmx_AARGBA)
- 
- #endif
-+#if defined(__linux__) && defined(__ELF__)
-+.section .note.GNU-stack,"",%progbits
-+#endif
-+

diff --git a/media-libs/qimageblitz/metadata.xml b/media-libs/qimageblitz/metadata.xml
deleted file mode 100644
index 8d1e86a..0000000
--- a/media-libs/qimageblitz/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>kde</herd>
-</pkgmetadata>

diff --git a/media-libs/qimageblitz/qimageblitz-0.0.6-r1.ebuild b/media-libs/qimageblitz/qimageblitz-0.0.6-r1.ebuild
deleted file mode 100644
index d7ab45c..0000000
--- a/media-libs/qimageblitz/qimageblitz-0.0.6-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/qimageblitz/qimageblitz-0.0.6.ebuild,v 1.9 2012/05/17 13:03:37 aballier Exp $
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="A graphical effect and filter library for KDE4"
-HOMEPAGE="http://websvn.kde.org/trunk/kdesupport/qimageblitz/"
-SRC_URI="mirror://kde/stable/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2 LGPL-2"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
-SLOT="0"
-IUSE="3dnow altivec debug mmx sse sse2"
-
-DEPEND="
-	x11-libs/qt-core:4
-	x11-libs/qt-gui:4
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-9999-exec-stack.patch"
-	"${FILESDIR}/${P}-gcc.patch"
-)
-
-src_configure() {
-	mycmakeargs=(
-		$(cmake-utils_use_has 3dnow)
-		$(cmake-utils_use_has altivec)
-		$(cmake-utils_use_has mmx)
-		$(cmake-utils_use_has sse)
-		$(cmake-utils_use_has sse2)
-	)
-	cmake-utils_src_configure
-}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-12-10 12:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-14 17:28 [gentoo-commits] proj/kde:master commit in: media-libs/qimageblitz/files/, media-libs/qimageblitz/ Michael Palimaka
  -- strict thread matches above, loose matches on Subject: below --
2012-12-10 12:30 Michael Palimaka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox