diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-02-04 08:18:32 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-02-04 08:18:32 +0000 |
commit | 19dd6ca3d9e14011459c8199a28a9cb5f78341f5 (patch) | |
tree | 60f77d9338de087c433d6c4c15432d0c42a5a85e /sci-libs/coinor-cgl | |
parent | Fix the common coinor pkg-config installation problem (diff) | |
download | gentoo-2-19dd6ca3d9e14011459c8199a28a9cb5f78341f5.tar.gz gentoo-2-19dd6ca3d9e14011459c8199a28a9cb5f78341f5.tar.bz2 gentoo-2-19dd6ca3d9e14011459c8199a28a9cb5f78341f5.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-cgl')
-rw-r--r-- | sci-libs/coinor-cgl/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/coinor-cgl/coinor-cgl-0.58.5.ebuild | 11 |
2 files changed, 14 insertions, 2 deletions
diff --git a/sci-libs/coinor-cgl/ChangeLog b/sci-libs/coinor-cgl/ChangeLog index 4087051e54c3..45461005bf0c 100644 --- a/sci-libs/coinor-cgl/ChangeLog +++ b/sci-libs/coinor-cgl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/coinor-cgl # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-cgl/ChangeLog,v 1.2 2014/01/15 19:36:06 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-cgl/ChangeLog,v 1.3 2014/02/04 08:18:32 jlec Exp $ + + 04 Feb 2014; Justin Lecher <jlec@gentoo.org> coinor-cgl-0.58.5.ebuild: + Fix the common coinor pkg-config installation problem 15 Jan 2014; Sébastien Fabbro <bicatali@gentoo.org> coinor-cgl-0.58.5.ebuild: diff --git a/sci-libs/coinor-cgl/coinor-cgl-0.58.5.ebuild b/sci-libs/coinor-cgl/coinor-cgl-0.58.5.ebuild index a56b516693a5..07724e05eac8 100644 --- a/sci-libs/coinor-cgl/coinor-cgl-0.58.5.ebuild +++ b/sci-libs/coinor-cgl/coinor-cgl-0.58.5.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-cgl/coinor-cgl-0.58.5.ebuild,v 1.2 2014/01/15 19:36:06 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-cgl/coinor-cgl-0.58.5.ebuild,v 1.3 2014/02/04 08:18:32 jlec Exp $ EAPI=5 @@ -30,9 +30,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() { + # needed for the --with-coin-instdir + dodir /usr local myeconfargs=( --enable-dependency-linking + --with-coin-instdir="${ED}"/usr $(use_with doc dot) ) autotools-utils_src_configure |