diff options
author | 2012-08-12 10:01:13 +0000 | |
---|---|---|
committer | 2012-08-12 10:01:13 +0000 | |
commit | ec72e1c7373e883852a871f9cf02aab3571f91ef (patch) | |
tree | a00a92906b9d34a3c7778cce9552cf6a29db633d /media-gfx/rawstudio/rawstudio-2.0.ebuild | |
parent | old (diff) | |
download | gentoo-2-ec72e1c7373e883852a871f9cf02aab3571f91ef.tar.gz gentoo-2-ec72e1c7373e883852a871f9cf02aab3571f91ef.tar.bz2 gentoo-2-ec72e1c7373e883852a871f9cf02aab3571f91ef.zip |
Link to -lgthread-2.0 for symbol g_thread_init wrt #424505 by Andreas Prieß
(Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/rawstudio/rawstudio-2.0.ebuild')
-rw-r--r-- | media-gfx/rawstudio/rawstudio-2.0.ebuild | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/media-gfx/rawstudio/rawstudio-2.0.ebuild b/media-gfx/rawstudio/rawstudio-2.0.ebuild index 9aff073f0b8d..86301f3828ee 100644 --- a/media-gfx/rawstudio/rawstudio-2.0.ebuild +++ b/media-gfx/rawstudio/rawstudio-2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/rawstudio/rawstudio-2.0.ebuild,v 1.2 2012/05/05 07:00:24 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/rawstudio/rawstudio-2.0.ebuild,v 1.3 2012/08/12 10:01:13 ssuominen Exp $ EAPI=4 inherit autotools eutils @@ -40,7 +40,9 @@ DOCS=( AUTHORS NEWS README TODO ) src_prepare() { find . -name Makefile.am -exec sed -i -e 's:-O4:-Wall:' {} + sed -i -e '/^icondir/s:icons:pixmaps:' pixmaps/Makefile.am || die - epatch "${FILESDIR}"/${P}-libpng15.patch + epatch \ + "${FILESDIR}"/${P}-libpng15.patch \ + "${FILESDIR}"/${P}-g_thread_init.patch eautoreconf } @@ -50,5 +52,5 @@ src_configure() { src_install() { default - find "${ED}"usr -name '*.la' -exec rm -f {} + + prune_libtool_files --all } |