diff options
author | 2009-04-16 08:42:29 +0000 | |
---|---|---|
committer | 2009-04-16 08:42:29 +0000 | |
commit | 450a4418348a583d1fa09a5ee3161178840acc3a (patch) | |
tree | ead10572b163d321834f1496a53ba4ca172b84e9 /media-libs/slv2 | |
parent | josm-plugins bump (diff) | |
download | gentoo-2-450a4418348a583d1fa09a5ee3161178840acc3a.tar.gz gentoo-2-450a4418348a583d1fa09a5ee3161178840acc3a.tar.bz2 gentoo-2-450a4418348a583d1fa09a5ee3161178840acc3a.zip |
do not run ldconfig at install, bug #266220
(Portage version: 2.2_rc30/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/slv2')
-rw-r--r-- | media-libs/slv2/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/slv2/files/ldconfig.patch | 14 | ||||
-rw-r--r-- | media-libs/slv2/slv2-0.6.2.ebuild | 10 |
3 files changed, 27 insertions, 5 deletions
diff --git a/media-libs/slv2/ChangeLog b/media-libs/slv2/ChangeLog index cbb1f60ffaed..bb9260c172fa 100644 --- a/media-libs/slv2/ChangeLog +++ b/media-libs/slv2/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/slv2 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/ChangeLog,v 1.12 2008/12/08 09:07:10 aballier Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/ChangeLog,v 1.13 2009/04/16 08:42:29 aballier Exp $ + + 16 Apr 2009; Alexis Ballier <aballier@gentoo.org> +files/ldconfig.patch, + slv2-0.6.2.ebuild: + do not run ldconfig at install, bug #266220 08 Dec 2008; Alexis Ballier <aballier@gentoo.org> -slv2-0.6.0.ebuild, -slv2-0.6.1.ebuild: diff --git a/media-libs/slv2/files/ldconfig.patch b/media-libs/slv2/files/ldconfig.patch new file mode 100644 index 000000000000..f53ff9e7df59 --- /dev/null +++ b/media-libs/slv2/files/ldconfig.patch @@ -0,0 +1,14 @@ +Index: slv2-0.6.2/autowaf.py +=================================================================== +--- slv2-0.6.2.orig/autowaf.py ++++ slv2-0.6.2/autowaf.py +@@ -324,8 +324,5 @@ def build_dox(bld, name, version, srcdir + out1.command_is_external = True + + def shutdown(): +- # This isn't really correct (for packaging), but people asking is annoying +- if Options.commands['install']: +- try: os.popen("/sbin/ldconfig") +- except: pass ++ return + diff --git a/media-libs/slv2/slv2-0.6.2.ebuild b/media-libs/slv2/slv2-0.6.2.ebuild index c86b8cbfc11c..71e10d4b5e9c 100644 --- a/media-libs/slv2/slv2-0.6.2.ebuild +++ b/media-libs/slv2/slv2-0.6.2.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/slv2-0.6.2.ebuild,v 1.1 2008/12/08 09:06:15 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/slv2/slv2-0.6.2.ebuild,v 1.2 2009/04/16 08:42:29 aballier Exp $ EAPI=2 -inherit multilib toolchain-funcs +inherit multilib toolchain-funcs eutils DESCRIPTION="A library to make the use of LV2 plugins as simple as possible for applications" HOMEPAGE="http://wiki.drobilla.net/SLV2" @@ -22,6 +22,10 @@ DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) dev-util/pkgconfig" +src_prepare() { + epatch "${FILESDIR}/ldconfig.patch" +} + src_configure() { tc-export CC CXX CPP AR RANLIB ./waf configure \ |