diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-02-04 10:45:21 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-02-04 10:45:21 +0000 |
commit | f6059f53f6567a4f00a052742d972793010cf6ac (patch) | |
tree | 88bc41221a152a02f098e47dec53a38db3c37ba7 /sci-libs/coinor-vol | |
parent | Move preparations to src_prepare; use usex() (diff) | |
download | gentoo-2-f6059f53f6567a4f00a052742d972793010cf6ac.tar.gz gentoo-2-f6059f53f6567a4f00a052742d972793010cf6ac.tar.bz2 gentoo-2-f6059f53f6567a4f00a052742d972793010cf6ac.zip |
Move preparations to src_prepare; use usex()
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-libs/coinor-vol')
-rw-r--r-- | sci-libs/coinor-vol/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/coinor-vol/coinor-vol-1.4.4.ebuild | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/sci-libs/coinor-vol/ChangeLog b/sci-libs/coinor-vol/ChangeLog index bac738b6c4e7..3a84c35943c8 100644 --- a/sci-libs/coinor-vol/ChangeLog +++ b/sci-libs/coinor-vol/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/coinor-vol # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-vol/ChangeLog,v 1.3 2014/02/04 07:36:41 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-vol/ChangeLog,v 1.4 2014/02/04 10:45:21 jlec Exp $ + + 04 Feb 2014; Justin Lecher <jlec@gentoo.org> coinor-vol-1.4.4.ebuild: + Move preparations to src_prepare; use usex() 04 Feb 2014; Justin Lecher <jlec@gentoo.org> coinor-vol-1.4.4.ebuild: Fix the common coinor pkg-config installation problem, #500222 diff --git a/sci-libs/coinor-vol/coinor-vol-1.4.4.ebuild b/sci-libs/coinor-vol/coinor-vol-1.4.4.ebuild index a248210d43b2..cd4b57a0d691 100644 --- a/sci-libs/coinor-vol/coinor-vol-1.4.4.ebuild +++ b/sci-libs/coinor-vol/coinor-vol-1.4.4.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-vol/coinor-vol-1.4.4.ebuild,v 1.3 2014/02/04 07:36:41 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/coinor-vol/coinor-vol-1.4.4.ebuild,v 1.4 2014/02/04 10:45:21 jlec Exp $ EAPI=5 @@ -28,14 +28,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 @@ -47,7 +48,7 @@ src_configure() { src_compile() { # hack for parallel build, to overcome not patching Makefile.am above autotools-utils_src_compile -C src libVol.la - autotools-utils_src_compile all $(use doc && echo doxydoc) + autotools-utils_src_compile all $(usex doc doxydoc "") } src_test() { |