diff options
-rw-r--r-- | dev-lisp/asdf/ChangeLog | 7 | ||||
-rw-r--r-- | dev-lisp/asdf/asdf-3.0.2.1.ebuild | 46 |
2 files changed, 52 insertions, 1 deletions
diff --git a/dev-lisp/asdf/ChangeLog b/dev-lisp/asdf/ChangeLog index c031f29e4bd7..1d280a3ead2d 100644 --- a/dev-lisp/asdf/ChangeLog +++ b/dev-lisp/asdf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lisp/asdf # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/asdf/ChangeLog,v 1.10 2013/05/21 08:14:25 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/asdf/ChangeLog,v 1.11 2013/08/09 12:33:11 grozin Exp $ + +*asdf-3.0.2.1 (09 Aug 2013) + + 09 Aug 2013; Andrey Grozin <grozin@gentoo.org> +asdf-3.0.2.1.ebuild: + Version bump 21 May 2013; Andrey Grozin <grozin@gentoo.org> asdf-3.0.1.ebuild: asdf-3.0.1[doc] builds with texinfo-5.1, closing #467146 diff --git a/dev-lisp/asdf/asdf-3.0.2.1.ebuild b/dev-lisp/asdf/asdf-3.0.2.1.ebuild new file mode 100644 index 000000000000..ff4dca885e4a --- /dev/null +++ b/dev-lisp/asdf/asdf-3.0.2.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/asdf/asdf-3.0.2.1.ebuild,v 1.1 2013/08/09 12:33:11 grozin Exp $ + +EAPI=5 +inherit eutils + +DESCRIPTION="ASDF is Another System Definition Facility for Common Lisp" +HOMEPAGE="http://common-lisp.net/project/asdf/" +SRC_URI="http://common-lisp.net/project/${PN}/archives/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="doc" + +SLOT="0/${PVR}" + +DEPEND="!dev-lisp/cl-${PN} + !dev-lisp/asdf-binary-locations + !dev-lisp/gentoo-init + !<dev-lisp/asdf-2.33-r3 + doc? ( virtual/texi2dvi )" +RDEPEND="" +PDEPEND="~dev-lisp/uiop-${PV}" + +S="${WORKDIR}" + +src_compile() { + make + use doc && make doc +} + +src_install() { + insinto /usr/share/common-lisp/source/${PN} + doins -r build version.lisp-expr + dodoc README TODO + dohtml doc/*.{html,css,ico,png} + if use doc; then + insinto /usr/share/doc/${PF} + doins doc/${PN}.pdf + fi + + insinto /etc/common-lisp + doins "${FILESDIR}"/gentoo-init.lisp "${FILESDIR}"/source-registry.conf +} |