diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-02-04 10:14:00 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-02-04 10:14:00 +0000 |
commit | 42fb792e254268eea6f7163d7ad9b271a51a962c (patch) | |
tree | 0504e63e7da47ec0252ccc4eed99ee553427756f /sci-libs | |
parent | Move preparations to src_prepare (diff) | |
download | gentoo-2-42fb792e254268eea6f7163d7ad9b271a51a962c.tar.gz gentoo-2-42fb792e254268eea6f7163d7ad9b271a51a962c.tar.bz2 gentoo-2-42fb792e254268eea6f7163d7ad9b271a51a962c.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-dip/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sci-libs/coinor-dip/ChangeLog b/sci-libs/coinor-dip/ChangeLog index 8650321fc081..9209f3956efe 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.4 2014/02/04 09:23:58 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-dip/ChangeLog,v 1.5 2014/02/04 10:14:00 jlec Exp $ + + 04 Feb 2014; Justin Lecher <jlec@gentoo.org> coinor-dip-0.9.8.ebuild: + Move preparations to src_prepare 04 Feb 2014; Justin Lecher <jlec@gentoo.org> coinor-dip-0.9.8.ebuild: Fix the common coinor pkg-config installation problem 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 04f6a1142622..0e5b2da5076d 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.2 2014/02/04 09:23:58 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-dip/coinor-dip-0.9.8.ebuild,v 1.3 2014/02/04 10:14:00 jlec Exp $ EAPI=5 @@ -29,14 +29,15 @@ 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 autotools-utils_src_prepare } + src_configure() { - # needed for the --with-coin-instdir - dodir /usr local myeconfargs=( --enable-dependency-linking --with-coin-instdir="${ED}"/usr |