blob: 81ef40b8ba07dc5b37b7dc2ba7ec7d8b7a947b8b (
plain)
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/hyperspec/hyperspec-6.0.ebuild,v 1.5 2004/06/24 23:59:46 agriffis Exp $
inherit elisp
DESCRIPTION="Common Lisp ANSI-standard Hyperspec"
HOMEPAGE="http://www.lispworks.com/reference/HyperSpec/"
SRC_URI=""
LICENSE="HyperSpec"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=""
# URL: ftp://ftp.xanalys.com/pub/software_tools/reference/HyperSpec-6-0.tar.gz
src_unpack() {
if [ ! -f ${DISTDIR}/HyperSpec-6-0.tar.gz ] ; then
echo
einfo ">>> The HyperSpec cannot be redistributed. Download the HyperSpec-6-0.tar.gz "
einfo ">>> file from http://www.lispworks.com/reference/HyperSpec/ and move it to "
einfo ">>> /usr/portage/distfiles before rerunning emerge. The legal conditions are "
einfo ">>> described at http://www.lispworks.com/reference/HyperSpec/Front/Help.htm#Legal"
die
fi
}
src_compile() {
einfo ">>> Nothing to compile."
}
src_install() {
dodir /usr/share/doc/${P}
cd ${D}/usr/share/doc/${P} && tar xfz ${DISTDIR}/HyperSpec-6-0.tar.gz || die
}
|