summaryrefslogtreecommitdiff
path: root/dev-lisp/asdf/asdf-3.1.5.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-lisp/asdf/asdf-3.1.5.ebuild
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-lisp/asdf/asdf-3.1.5.ebuild')
-rw-r--r--dev-lisp/asdf/asdf-3.1.5.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-lisp/asdf/asdf-3.1.5.ebuild b/dev-lisp/asdf/asdf-3.1.5.ebuild
deleted file mode 100644
index 8a067789c189..000000000000
--- a/dev-lisp/asdf/asdf-3.1.5.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils prefix
-
-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="alpha amd64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x86-solaris"
-IUSE="doc"
-
-SLOT="0/${PVR}"
-
-DEPEND="!dev-lisp/cl-${PN}
- !<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.md TODO
- dohtml doc/*.{html,css,ico,png}
- if use doc; then
- dohtml -r doc/index.html
- insinto /usr/share/doc/${PF}
- #doins doc/${PN}.pdf
- fi
-
- insinto /etc/common-lisp
- cd "${T}"
- cp "${FILESDIR}"/gentoo-init.lisp "${FILESDIR}"/source-registry.conf .
- eprefixify gentoo-init.lisp source-registry.conf
- doins gentoo-init.lisp source-registry.conf
-}