diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-02-04 10:37:56 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-02-04 10:37:56 +0000 |
commit | ad2013c40a6904fc6079d87911f67f4927fd5793 (patch) | |
tree | f24b25ea5b28f45360d5500955fde5a44139c933 | |
parent | Move preparations to src_prepare (diff) | |
download | gentoo-2-ad2013c40a6904fc6079d87911f67f4927fd5793.tar.gz gentoo-2-ad2013c40a6904fc6079d87911f67f4927fd5793.tar.bz2 gentoo-2-ad2013c40a6904fc6079d87911f67f4927fd5793.zip |
Move preparations to src_prepare
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
-rw-r--r-- | sci-libs/coinor-mp/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/coinor-mp/coinor-mp-1.7.6.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sci-libs/coinor-mp/ChangeLog b/sci-libs/coinor-mp/ChangeLog index f2429e138051..1582a96ce3a6 100644 --- a/sci-libs/coinor-mp/ChangeLog +++ b/sci-libs/coinor-mp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/coinor-mp # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-mp/ChangeLog,v 1.5 2014/02/04 09:22:13 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-mp/ChangeLog,v 1.6 2014/02/04 10:37:56 jlec Exp $ + + 04 Feb 2014; Justin Lecher <jlec@gentoo.org> coinor-mp-1.7.6.ebuild: + Move preparations to src_prepare 04 Feb 2014; Justin Lecher <jlec@gentoo.org> coinor-mp-1.7.6.ebuild: Fix the common coinor pkg-config installation problem diff --git a/sci-libs/coinor-mp/coinor-mp-1.7.6.ebuild b/sci-libs/coinor-mp/coinor-mp-1.7.6.ebuild index 30a3c71bb902..ada1f462ab3a 100644 --- a/sci-libs/coinor-mp/coinor-mp-1.7.6.ebuild +++ b/sci-libs/coinor-mp/coinor-mp-1.7.6.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-mp/coinor-mp-1.7.6.ebuild,v 1.5 2014/02/04 09:22:13 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-mp/coinor-mp-1.7.6.ebuild,v 1.6 2014/02/04 10:37:56 jlec Exp $ EAPI=5 @@ -24,6 +24,8 @@ DEPEND="${RDEPEND} S="${WORKDIR}/${MYPN}-${PV}/${MYPN}" src_prepare() { + # needed for the --with-coin-instdir + dodir /usr sed -i \ -e "s:lib/pkgconfig:$(get_libdir)/pkgconfig:g" \ configure || die @@ -36,8 +38,6 @@ src_prepare() { } src_configure() { - # needed for the --with-coin-instdir - dodir /usr local myeconfargs=( --enable-dependency-linking --with-coin-instdir="${ED}"/usr |