diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-02-04 10:37:08 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-02-04 10:37:08 +0000 |
commit | fd12c8c15fa0a5daf6a76a169c713015b695100d (patch) | |
tree | 71e641feb7b508df59e8868d70803a18ba6e37ca /sci-libs | |
parent | Fix typo (diff) | |
download | gentoo-2-fd12c8c15fa0a5daf6a76a169c713015b695100d.tar.gz gentoo-2-fd12c8c15fa0a5daf6a76a169c713015b695100d.tar.bz2 gentoo-2-fd12c8c15fa0a5daf6a76a169c713015b695100d.zip |
Move preparations to src_prepare
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/coinor-flopcpp/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.7.ebuild | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sci-libs/coinor-flopcpp/ChangeLog b/sci-libs/coinor-flopcpp/ChangeLog index 277ebb4bc3a7..fce639a1190e 100644 --- a/sci-libs/coinor-flopcpp/ChangeLog +++ b/sci-libs/coinor-flopcpp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/coinor-flopcpp # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-flopcpp/ChangeLog,v 1.3 2014/02/04 09:25:41 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-flopcpp/ChangeLog,v 1.4 2014/02/04 10:37:08 jlec Exp $ + + 04 Feb 2014; Justin Lecher <jlec@gentoo.org> coinor-flopcpp-1.1.7.ebuild: + Move preparations to src_prepare 04 Feb 2014; Justin Lecher <jlec@gentoo.org> coinor-flopcpp-1.1.7.ebuild: Fix the common coinor pkg-config installation problem diff --git a/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.7.ebuild b/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.7.ebuild index 4f700ff893c6..1bf74a42340a 100644 --- a/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.7.ebuild +++ b/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.7.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-flopcpp/coinor-flopcpp-1.1.7.ebuild,v 1.3 2014/02/04 09:25:41 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-flopcpp/coinor-flopcpp-1.1.7.ebuild,v 1.4 2014/02/04 10:37:08 jlec Exp $ EAPI=5 @@ -28,14 +28,15 @@ DEPEND="${RDEPEND} S="${WORKDIR}/${MYPN}-${PV}/FlopCpp" src_prepare() { + # needed for the --with-coin-instdir + dodir /usr 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 |