forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asdf-3.1.5.ebuild
49 lines (40 loc) · 1.15 KB
/
asdf-3.1.5.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright 1999-2017 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="amd64 ppc 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-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.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
}