diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-01-20 16:42:23 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-01-20 16:42:23 +0000 |
commit | 145d8de59b32baa2eb428f234eee0bc50dc2979b (patch) | |
tree | d9ccb0adedf41c0175e1abef190c91ec780d0ef7 /sci-libs | |
parent | Revbump to switch dependency on dev-java/servletapi to (diff) | |
download | gentoo-2-145d8de59b32baa2eb428f234eee0bc50dc2979b.tar.gz gentoo-2-145d8de59b32baa2eb428f234eee0bc50dc2979b.tar.bz2 gentoo-2-145d8de59b32baa2eb428f234eee0bc50dc2979b.zip |
Switched to autotools-utils fixing bug #386981 and bug #386983
(Portage version: 2.1.10.41/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/libctl/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/libctl/libctl-3.1.ebuild | 24 |
2 files changed, 12 insertions, 19 deletions
diff --git a/sci-libs/libctl/ChangeLog b/sci-libs/libctl/ChangeLog index 084926ba5ee7..afc0614fe220 100644 --- a/sci-libs/libctl/ChangeLog +++ b/sci-libs/libctl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/libctl -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libctl/ChangeLog,v 1.16 2011/06/21 15:13:09 jlec Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libctl/ChangeLog,v 1.17 2012/01/20 16:42:23 bicatali Exp $ + + 20 Jan 2012; Sébastien Fabbro <bicatali@gentoo.org> libctl-3.1.ebuild: + Switched to autotools-utils fixing bug #386981 and bug #386983 21 Jun 2011; Justin Lecher <jlec@gentoo.org> libctl-3.0.3.ebuild, libctl-3.1.ebuild: diff --git a/sci-libs/libctl/libctl-3.1.ebuild b/sci-libs/libctl/libctl-3.1.ebuild index c38a497533ae..786f3d002c91 100644 --- a/sci-libs/libctl/libctl-3.1.ebuild +++ b/sci-libs/libctl/libctl-3.1.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/libctl/libctl-3.1.ebuild,v 1.4 2011/06/21 15:13:09 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libctl/libctl-3.1.ebuild,v 1.5 2012/01/20 16:42:23 bicatali Exp $ EAPI=4 -inherit fortran-2 +inherit fortran-2 autotools-utils DESCRIPTION="Guile-based library for scientific simulations" HOMEPAGE="http://ab-initio.mit.edu/libctl/" @@ -13,26 +13,16 @@ SRC_URI="http://ab-initio.mit.edu/libctl/${P}.tar.gz" SLOT="0" LICENSE="GPL-2" KEYWORDS="~amd64 ~x86" -IUSE="debug doc examples" - -DEPEND=" - virtual/fortran +IUSE="doc examples static-libs" +DEPEND="virtual/fortran >=dev-scheme/guile-1.6[deprecated] sci-libs/nlopt" RDEPEND="${DEPEND}" -src_configure() { - econf \ - --enable-shared \ - $(use_enable debug) -} - src_install() { - default - if use doc; then - dohtml doc/* - fi + autotools-utils_src_install + use doc && dohtml doc/* if use examples; then insinto /usr/share/doc/${PF}/examples cd examples |