summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Kapusta <ayoy@gentoo.org>2009-09-27 12:04:18 +0000
committerDominik Kapusta <ayoy@gentoo.org>2009-09-27 12:04:18 +0000
commit03ad531d11374b4a8032703610383e21388b7b64 (patch)
treeefacbe64093a0b4192429003acfff1ae4dd89671 /x11-libs/qt-embedded
parentamd64/arm/x86 stable, bug #286199 (diff)
downloadgentoo-2-03ad531d11374b4a8032703610383e21388b7b64.tar.gz
gentoo-2-03ad531d11374b4a8032703610383e21388b7b64.tar.bz2
gentoo-2-03ad531d11374b4a8032703610383e21388b7b64.zip
Fixed pre-stripping files (bug #252088). Patch by Håvard Wall.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/qt-embedded')
-rw-r--r--x11-libs/qt-embedded/ChangeLog10
-rw-r--r--x11-libs/qt-embedded/qt-embedded-3.3.8b-r1.ebuild (renamed from x11-libs/qt-embedded/qt-embedded-3.3.8b.ebuild)7
2 files changed, 14 insertions, 3 deletions
diff --git a/x11-libs/qt-embedded/ChangeLog b/x11-libs/qt-embedded/ChangeLog
index 6ea4270b70ca..a7f2f5c8b548 100644
--- a/x11-libs/qt-embedded/ChangeLog
+++ b/x11-libs/qt-embedded/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-libs/qt-embedded
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-embedded/ChangeLog,v 1.28 2009/04/27 20:01:06 hwoarang Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-embedded/ChangeLog,v 1.29 2009/09/27 12:04:18 ayoy Exp $
+
+*qt-embedded-3.3.8b-r1 (27 Sep 2009)
+
+ 27 Sep 2009; Dominik Kapusta <ayoy@gentoo.org> -qt-embedded-3.3.8b.ebuild,
+ +qt-embedded-3.3.8b-r1.ebuild:
+ Fixed pre-stripping files (bug #252088). Patch by Håvard Wall.
27 Apr 2009; Markos Chandras <hwoarang@gentoo.org>
-qt-embedded-3.3.8.ebuild:
diff --git a/x11-libs/qt-embedded/qt-embedded-3.3.8b.ebuild b/x11-libs/qt-embedded/qt-embedded-3.3.8b-r1.ebuild
index 908c8f8f9980..271390b5e4ef 100644
--- a/x11-libs/qt-embedded/qt-embedded-3.3.8b.ebuild
+++ b/x11-libs/qt-embedded/qt-embedded-3.3.8b-r1.ebuild
@@ -1,6 +1,8 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-embedded/qt-embedded-3.3.8b.ebuild,v 1.3 2009/05/05 08:23:14 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-embedded/qt-embedded-3.3.8b-r1.ebuild,v 1.1 2009/09/27 12:04:18 ayoy Exp $
+
+inherit eutils
DESCRIPTION="Embedded Linux port of Qt"
HOMEPAGE="http://www.qtsoftware.com/products/platform/qt-for-embedded-linux"
@@ -61,6 +63,9 @@ src_unpack() {
# avoid using -rpath
find mkspecs/ -name qmake.conf -exec sed -i -e "s:QMAKE_RPATH.*:QMAKE_RPATH =:" {} \;
+ # avoid stripping binaries that portage will strip for us
+ find mkspecs/ -maxdepth 2 -name qmake.conf -exec sed -i -e "s:QMAKE_STRIP .*:QMAKE_STRIP = echo:" {} \;
+
# patch to fix invalid type casts with gcc-4 on amd64 (bug 164113)
epatch "${FILESDIR}"/${PN}-3.3.8-castfix.patch
}