commit: 93d04df2215d4ee01bd39d4312df7ca55163a3c9 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org> AuthorDate: Sun Oct 1 21:00:46 2017 +0000 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org> CommitDate: Sun Oct 1 21:00:46 2017 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=93d04df2
dev-lisp/asdf: Installs asdf.info only when >=dev-lisp/sbcl-1.4.0 Gentoo-Bug: 605752 dev-lisp/asdf/asdf-3.2.1-r1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-lisp/asdf/asdf-3.2.1-r1.ebuild b/dev-lisp/asdf/asdf-3.2.1-r1.ebuild index 10fefccb..13e07fa7 100644 --- a/dev-lisp/asdf/asdf-3.2.1-r1.ebuild +++ b/dev-lisp/asdf/asdf-3.2.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit eutils prefix common-lisp-3 +inherit eutils prefix common-lisp-3 versionator DESCRIPTION="ASDF is Another System Definition Facility for Common Lisp" HOMEPAGE="http://common-lisp.net/project/asdf/" @@ -34,7 +34,10 @@ find-lisp-impl() { } install_docs() { - (cd doc ; dodoc *.{html,css,ico,png} "${PN}.pdf" ; dodoc -r asdf ; doinfo "${PN}.info" ) + (cd doc ; dodoc *.{html,css,ico,png} "${PN}.pdf" ; dodoc -r asdf ) + if has_version ">=dev-lisp/sbcl-1.4.0" ; then + (cd doc ; doinfo "${PN}.info" ) + fi } src_compile() {
