blob: a49cbeecabac7be8f16e9d4e180c2a9456f742da (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2
DEB_PV=2
DESCRIPTION="Common Lisp package to read and write ${PN} image files"
HOMEPAGE="http://www.pvv.ntnu.no/~musum/lisp/code/
http://www.cliki.net/${PN}
http://packages.debian.org/unstable/devel/cl-${PN}.html"
SRC_URI="http://ftp.debian.org/debian/pool/main/c/cl-${PN}/cl-${PN}_${PV}.orig.tar.gz
http://ftp.de.debian.org/debian/pool/main/c/cl-${PN}/cl-${PN}_${PV}-${DEB_PV}.diff.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="!dev-lisp/cl-${PN}
dev-lisp/uffi"
S="${WORKDIR}/cl-${P}"
src_unpack() {
unpack ${A}
epatch cl-${PN}_${PV}-${DEB_PV}.diff
epatch "${FILESDIR}"/libz-path-gentoo.patch
}
src_install() {
common-lisp-install *.{cl,asd}
common-lisp-symlink-asdf
dodoc AUTHORS BUGS NEWS README
dohtml doc/index.html
}
|