diff options
author | Kito Danya Dietrich <kito@gentoo.org> | 2005-08-06 22:25:29 +0000 |
---|---|---|
committer | Kito Danya Dietrich <kito@gentoo.org> | 2005-08-06 22:25:29 +0000 |
commit | 712bab2d8f9f7af41b9ff13dc7c87d100020a582 (patch) | |
tree | 149ae6ecaa5417e468078f6f153a88d1f714921b /media-libs | |
parent | * bump (diff) | |
download | gentoo-2-712bab2d8f9f7af41b9ff13dc7c87d100020a582.tar.gz gentoo-2-712bab2d8f9f7af41b9ff13dc7c87d100020a582.tar.bz2 gentoo-2-712bab2d8f9f7af41b9ff13dc7c87d100020a582.zip |
silence harmless warnings on gcc-apple-5026
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/ladspa-cmt/Manifest | 4 | ||||
-rw-r--r-- | media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild | 11 |
2 files changed, 10 insertions, 5 deletions
diff --git a/media-libs/ladspa-cmt/Manifest b/media-libs/ladspa-cmt/Manifest index de72ec1166bd..dac2d348fa0c 100644 --- a/media-libs/ladspa-cmt/Manifest +++ b/media-libs/ladspa-cmt/Manifest @@ -1,7 +1,7 @@ -MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158 MD5 c313a42799d1bd0d2b19b2fd3a1e0c44 ChangeLog 2295 -MD5 13f4e15c315b0cf72ac1a7365b9fa708 ladspa-cmt-1.15.ebuild 1085 MD5 8313272cb24174e3bb4dbd89a2d1e8da ladspa-cmt-1.14.ebuild 834 +MD5 3c01280ddcf1f7a44f0b3e16bbfde889 ladspa-cmt-1.15.ebuild 1175 +MD5 a1eaeb2ae801daeb712c90c060e922dc metadata.xml 158 MD5 6bb9c3395445920cba1b45b6149943b6 files/digest-ladspa-cmt-1.14 55 MD5 0da9dde7734a7551fbed8825e5e3ceea files/digest-ladspa-cmt-1.15 60 MD5 192c8fae28394b688e7f78ff387bc0de files/ladspa-cmt-darwin.patch 2324 diff --git a/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild b/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild index e364699a9d60..060fcc9af4a6 100644 --- a/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild +++ b/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild,v 1.18 2005/05/01 18:24:34 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/ladspa-cmt/ladspa-cmt-1.15.ebuild,v 1.19 2005/08/06 22:25:29 kito Exp $ inherit eutils @@ -31,7 +31,12 @@ src_unpack() { || die "sed makefile failed" cd "${S}" - use ppc-macos && epatch ${FILESDIR}/${PN}-darwin.patch + if use userland_Darwin ; then + epatch ${FILESDIR}/${PN}-darwin.patch + # gcc-4 bails + sed -i -e 's|-Werror||g' makefile \ + || die "sed makefile failed" + fi } src_compile() { @@ -44,4 +49,4 @@ src_install() { doins ../plugins/*.so || die "doins failed" dodoc ../README || die "dodoc failed" dohtml ../doc/* || die "dohtml failed" -}
\ No newline at end of file +} |