blob: 93f87707a7fd646524167adfd1da7a66bd146b8d (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-defsystem3/cl-defsystem3-3.3i-r4.ebuild,v 1.7 2005/03/05 05:34:48 mr_bones_ Exp $
inherit common-lisp-common
DEB_CVS=2004.07.18.1
DESCRIPTION="Another System Definition Facility for Common Lisp"
HOMEPAGE="http://packages.debian.org/unstable/devel/cl-defsystem3.html"
# SRC_URI="http://ftp.debian.org/debian/pool/main/c/cl-defsystem3/${PN}_${PV}+cvs.${DEB_CVS}.tar.gz"
SRC_URI="mirror://gentoo/${PN}_${PV}+cvs.${DEB_CVS}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ~sparc ppc ~mips"
IUSE=""
S=${WORKDIR}/${P}+cvs.${DEB_CVS}
DEPEND="dev-lisp/common-lisp-controller"
src_unpack() {
unpack ${A}
mv ${S}/docs/defsystem.text ${S}/docs/defsystem.txt
}
src_install() {
insinto /usr/share/common-lisp/source/defsystem
doins defsystem.lisp
dodoc ChangeLog README docs/defsystem.txt
dohtml docs/defsystem.html
}
pkg_postinst() {
reregister-all-common-lisp-implementations
}
|