diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-06 08:52:18 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-10-06 08:52:18 +0000 |
commit | 389ec3c596e064ec85c6c80e1a84db61bb5a9d8e (patch) | |
tree | 3e0573d7183904fdc7d5372b9665e37e693e3657 /dev-libs | |
parent | Fix for #361013, changing metadata to reflect proxy-maintainer (diff) | |
download | gentoo-2-389ec3c596e064ec85c6c80e1a84db61bb5a9d8e.tar.gz gentoo-2-389ec3c596e064ec85c6c80e1a84db61bb5a9d8e.tar.bz2 gentoo-2-389ec3c596e064ec85c6c80e1a84db61bb5a9d8e.zip |
export LIBFFI_CFLAGS and LIBFFI_LIBS if dev-util/pkgconfig is not installed wrt #385561 by Bartosz Szreder
(Portage version: 2.2.0_alpha61/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/glib/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/glib/glib-2.30.0.ebuild | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/dev-libs/glib/ChangeLog b/dev-libs/glib/ChangeLog index 59d4f3c6a890..b75368e9d7f3 100644 --- a/dev-libs/glib/ChangeLog +++ b/dev-libs/glib/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/glib # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.485 2011/10/05 16:51:48 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/ChangeLog,v 1.486 2011/10/06 08:52:18 ssuominen Exp $ + + 06 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> glib-2.30.0.ebuild: + export LIBFFI_CFLAGS and LIBFFI_LIBS if dev-util/pkgconfig is not installed + wrt #385561 by Bartosz Szreder 05 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org> glib-2.28.8.ebuild: ppc/ppc64 stable wrt #369909 diff --git a/dev-libs/glib/glib-2.30.0.ebuild b/dev-libs/glib/glib-2.30.0.ebuild index b0798b1b872e..f7f9927113db 100644 --- a/dev-libs/glib/glib-2.30.0.ebuild +++ b/dev-libs/glib/glib-2.30.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.30.0.ebuild,v 1.2 2011/09/28 11:19:21 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.30.0.ebuild,v 1.3 2011/10/06 08:52:18 ssuominen Exp $ EAPI="4" @@ -100,6 +100,8 @@ src_configure() { if ! has_version dev-util/pkgconfig; then export DBUS1_CFLAGS="-I/usr/include/dbus-1.0 -I/usr/$(get_libdir)/dbus-1.0/include" export DBUS1_LIBS="-ldbus-1" + export LIBFFI_CFLAGS="-I$(echo /usr/$(get_libdir)/libffi-*/include)" + export LIBFFI_LIBS="-lffi" fi local myconf |