diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-02-04 09:23:58 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-02-04 09:23:58 +0000 |
commit | 74464f094ef2c40f79ae9dd2618a6352676f2755 (patch) | |
tree | 391a0f27c7daf80ae648af8742d8f3f9f1d7e334 /sci-libs/coinor-dip | |
parent | Fix the common coinor pkg-config installation problem (diff) | |
download | gentoo-2-74464f094ef2c40f79ae9dd2618a6352676f2755.tar.gz gentoo-2-74464f094ef2c40f79ae9dd2618a6352676f2755.tar.bz2 gentoo-2-74464f094ef2c40f79ae9dd2618a6352676f2755.zip |
Fix the common coinor pkg-config installation problem
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-libs/coinor-dip')
-rw-r--r-- | sci-libs/coinor-dip/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild | 13 |
2 files changed, 15 insertions, 3 deletions
diff --git a/sci-libs/coinor-dip/ChangeLog b/sci-libs/coinor-dip/ChangeLog index 0569377be2b4..8650321fc081 100644 --- a/sci-libs/coinor-dip/ChangeLog +++ b/sci-libs/coinor-dip/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/coinor-dip # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-dip/ChangeLog,v 1.3 2014/01/15 20:00:33 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-dip/ChangeLog,v 1.4 2014/02/04 09:23:58 jlec Exp $ + + 04 Feb 2014; Justin Lecher <jlec@gentoo.org> coinor-dip-0.9.8.ebuild: + Fix the common coinor pkg-config installation problem *coinor-dip-0.9.8 (15 Jan 2014) diff --git a/sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild b/sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild index 8fb40199b29a..04f6a1142622 100644 --- a/sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild +++ b/sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild,v 1.1 2014/01/15 20:00:33 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild,v 1.2 2014/02/04 09:23:58 jlec Exp $ EAPI=5 @@ -28,9 +28,18 @@ DEPEND="${RDEPEND} S="${WORKDIR}/${MYPN}-${PV}/${MYPN}" +src_prepare() { + sed -i \ + -e "s:lib/pkgconfig:$(get_libdir)/pkgconfig:g" \ + configure || die + autotools-utils_src_prepare +} src_configure() { - local myeconfarg=( + # needed for the --with-coin-instdir + dodir /usr + local myeconfargs=( --enable-dependency-linking + --with-coin-instdir="${ED}"/usr ) autotools-utils_src_configure } |