diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2009-02-07 20:15:07 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2009-02-07 20:15:07 +0000 |
commit | 357e3e1a9485289311c6bbf7216d1666558cfd84 (patch) | |
tree | 6dd4a1960df0bd786eb78d44d39d34623de42348 /x11-libs/libqxt | |
parent | Add ~arm/~s390/~sh (diff) | |
download | gentoo-2-357e3e1a9485289311c6bbf7216d1666558cfd84.tar.gz gentoo-2-357e3e1a9485289311c6bbf7216d1666558cfd84.tar.bz2 gentoo-2-357e3e1a9485289311c6bbf7216d1666558cfd84.zip |
Fixed pre-stripped files issue ( see bug #255937 )
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'x11-libs/libqxt')
-rw-r--r-- | x11-libs/libqxt/ChangeLog | 9 | ||||
-rw-r--r-- | x11-libs/libqxt/libqxt-0.2.5-r1.ebuild (renamed from x11-libs/libqxt/libqxt-0.2.5.ebuild) | 7 | ||||
-rw-r--r-- | x11-libs/libqxt/libqxt-0.4-r1.ebuild (renamed from x11-libs/libqxt/libqxt-0.4.ebuild) | 7 |
3 files changed, 18 insertions, 5 deletions
diff --git a/x11-libs/libqxt/ChangeLog b/x11-libs/libqxt/ChangeLog index d7910bb97e50..27e3d2b95316 100644 --- a/x11-libs/libqxt/ChangeLog +++ b/x11-libs/libqxt/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-libs/libqxt # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/ChangeLog,v 1.6 2009/01/05 03:09:41 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/ChangeLog,v 1.7 2009/02/07 20:15:07 hwoarang Exp $ + +*libqxt-0.4-r1 (07 Feb 2009) +*libqxt-0.2.5-r1 (07 Feb 2009) + + 07 Feb 2009; Markos Chandras <hwoarang@gentoo.org> -libqxt-0.2.5.ebuild, + +libqxt-0.2.5-r1.ebuild, -libqxt-0.4.ebuild, +libqxt-0.4-r1.ebuild: + Fixed pre-stripped files issue ( see bug #255937 ) *libqxt-0.4 (05 Jan 2009) diff --git a/x11-libs/libqxt/libqxt-0.2.5.ebuild b/x11-libs/libqxt/libqxt-0.2.5-r1.ebuild index 470ac9cb0a9b..880cce3f10bc 100644 --- a/x11-libs/libqxt/libqxt-0.2.5.ebuild +++ b/x11-libs/libqxt/libqxt-0.2.5-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/libqxt-0.2.5.ebuild,v 1.4 2009/01/05 03:09:41 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/libqxt-0.2.5-r1.ebuild,v 1.1 2009/02/07 20:15:07 hwoarang Exp $ EAPI="1" inherit eutils qt4 @@ -32,7 +32,10 @@ src_compile() { use debug && myconf="${myconf} -debug" use !ssl && myconf="${myconf} -nomake crypto" use !fastcgi && myconf="${myconf} -nomake web" - + # fix pre-stripped files issue + for i in $(ls "${S}"/src); do + sed -i "s/qxtbuild/nostrip\ qxtbuild/" "${S}"/src/${i}/${i}.pro + done ./configure -prefix /usr ${myconf} # fails with parallel build, bug 194730 diff --git a/x11-libs/libqxt/libqxt-0.4.ebuild b/x11-libs/libqxt/libqxt-0.4-r1.ebuild index b3e4d47802f0..48266c5a0c9f 100644 --- a/x11-libs/libqxt/libqxt-0.4.ebuild +++ b/x11-libs/libqxt/libqxt-0.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/libqxt-0.4.ebuild,v 1.1 2009/01/05 03:09:41 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/libqxt-0.4-r1.ebuild,v 1.1 2009/02/07 20:15:07 hwoarang Exp $ EAPI=2 inherit eutils qt4 @@ -37,7 +37,10 @@ src_configure() { $(use !crypt && echo -nomake crypto -no-openssl) \ $(use !sql && echo -nomake sql) \ $(use !web && echo -nomake web)" - + # fix pre-striped files issue + for i in $(ls "${S}"/src); do + sed -i "s/qxtbuild/nostrip\ qxtbuild/" "${S}"/src/${i}/${i}.pro + done ./configure ${myconf} || die "configure failed" } |