diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2004-08-01 22:34:54 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2004-08-01 22:34:54 +0000 |
commit | 14511c8b55b7f77293b99424708808ee73759b1c (patch) | |
tree | ea2def5376cd3cb959a159fe6003cf51f5cb288f /dev-lisp/cl-uffi/cl-uffi-1.4.24.ebuild | |
parent | stable on ppc64, bug #57456 (diff) | |
download | historical-14511c8b55b7f77293b99424708808ee73759b1c.tar.gz historical-14511c8b55b7f77293b99424708808ee73759b1c.tar.bz2 historical-14511c8b55b7f77293b99424708808ee73759b1c.zip |
*** empty log message ***
Diffstat (limited to 'dev-lisp/cl-uffi/cl-uffi-1.4.24.ebuild')
-rw-r--r-- | dev-lisp/cl-uffi/cl-uffi-1.4.24.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-lisp/cl-uffi/cl-uffi-1.4.24.ebuild b/dev-lisp/cl-uffi/cl-uffi-1.4.24.ebuild new file mode 100644 index 000000000000..9d46ccb5cfb3 --- /dev/null +++ b/dev-lisp/cl-uffi/cl-uffi-1.4.24.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2004 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.24.ebuild,v 1.1 2004/08/01 22:34:54 mkennedy Exp $ + +inherit common-lisp + +DESCRIPTION="UFFI is a package to [portably] interface Common Lisp programs with C-language compatible libraries." +HOMEPAGE="http://uffi.med-info.com/" +SRC_URI="http://files.b9.com/uffi/uffi-${PV}.tar.gz" +LICENSE="LLGPL-2.1" +SLOT="0" +KEYWORDS="~x86 ~ppc" +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 +} |