blob: c53f3b917a686bd7255def255752468e7b482a8b (
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
38
39
40
41
42
43
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-uffi/cl-uffi-1.4.37.ebuild,v 1.2 2005/05/24 18:48:36 mkennedy Exp $
inherit common-lisp
DESCRIPTION="Portable FFI library for Common Lisp."
HOMEPAGE="http://uffi.med-info.com/"
SRC_URI="http://files.b9.com/uffi/uffi-${PV}.tar.gz"
LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE=""
S=${WORKDIR}/uffi-${PV}
CLPACKAGE=uffi
src_compile() {
make -C tests
}
src_install() {
dodir /usr/share/common-lisp/systems
insinto /usr/share/common-lisp/source/uffi/src
doins src/*.lisp
insinto /usr/share/common-lisp/source/uffi
doins uffi.asd
dosym /usr/share/common-lisp/source/uffi/uffi.asd \
/usr/share/common-lisp/systems/uffi.asd
insinto /usr/lib/uffi
doins tests/*.so
dodoc AUTHORS ChangeLog INSTALL LICENSE NEWS README TODO doc/uffi.pdf doc/COPYING.GFDL
tar xfz doc/html.tar.gz
dohtml html/*
for i in examples benchmarks ; do
insinto /usr/share/doc/${P}/$i
doins $i/*
done
}
|