blob: 88ebb4d8f86f7b63f84cc3cc2dfaa2b742f3cb74 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
inherit common-lisp-3
DEB_PV=1
DESCRIPTION="A Common Lisp library implementing an abstraction layer over platform dependent functionality."
HOMEPAGE="http://homepage.mac.com/svc/s-sysdeps/"
SRC_URI="mirror://debian/pool/main/s/${PN}/${PN}_${PV}.orig.tar.gz
mirror://debian/pool/main/s/${PN}/${PN}_${PV}-${DEB_PV}.diff.gz"
LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND="!dev-lisp/cl-${PN}"
S="${WORKDIR}"/${P}.orig
src_prepare() {
rm "${S}"/Makefile
}
src_install() {
common-lisp-install-sources src test
common-lisp-install-asdf ${PN}.asd
dohtml doc/*.html
dodoc README.txt
}
|