diff options
author | 2005-05-15 22:00:31 +0000 | |
---|---|---|
committer | 2005-05-15 22:00:31 +0000 | |
commit | 5d60cb0262636128607f5384deb40cbf15874bb2 (patch) | |
tree | ebfe30a4a9fb3d0246e36646a9a1f8ff075f39d7 /eclass | |
parent | Stable on ppc. (diff) | |
download | historical-5d60cb0262636128607f5384deb40cbf15874bb2.tar.gz historical-5d60cb0262636128607f5384deb40cbf15874bb2.tar.bz2 historical-5d60cb0262636128607f5384deb40cbf15874bb2.zip |
Move cardoe's fix a bit around so that it actually works, thanks to fuoco and steev for reporting
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gtk-sharp-component.eclass | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/eclass/gtk-sharp-component.eclass b/eclass/gtk-sharp-component.eclass index 6e03c2d6780a..d6c70cb0eaa3 100644 --- a/eclass/gtk-sharp-component.eclass +++ b/eclass/gtk-sharp-component.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-component.eclass,v 1.11 2005/05/15 09:18:29 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-component.eclass,v 1.12 2005/05/15 22:00:31 genstef Exp $ # Author : Peter Johanson <latexer@gentoo.org> # Based off of original work in gst-plugins.eclass by <foser@gentoo.org> @@ -111,20 +111,21 @@ gtk-sharp-component_src_unpack() { # Make the components configurable epatch ${WORKDIR}/${MY_P}-configurable.diff - aclocal || die + aclocal || die "aclocal failed" # See bug #73563, comment #9 - libtoolize --copy --force || die - automake || die - autoconf || die + libtoolize --copy --force || die "libtoolize failed" + automake || die "automake failed" + + # fixes support with pkgconfig-0.17, bug #92503 + sed -i -e 's/\<PKG_PATH\>/GTK_SHARP_PKG_PATH/g' configure.in + + autoconf || die "autoconf failed" # disable building of samples (#16015) sed -i -e "s:sample::" ${S}/Makefile.in || die cd ${S}/${GTK_SHARP_COMPONENT_BUILD_DIR} - # fixes support with pkgconfig-0.17, bug #92503 - sed -i -e 's/\<PKG_PATH\>/GTK_SHARP_PKG_PATH/g' configure.in - gtk-sharp-component_fix_makefiles } |