summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanagiotis Christopoulos <pchrist@gentoo.org>2010-11-07 17:15:53 +0000
committerPanagiotis Christopoulos <pchrist@gentoo.org>2010-11-07 17:15:53 +0000
commit592bb96c4900fc051281869b0f447554fe09c128 (patch)
tree032cc0466007cdd79d5a2aeae0d71a11e18b0bd2 /dev-lisp/cl-cffi/cl-cffi-0.9.1.ebuild
parentdev-lisp/cl-cells removal, p.masked from 17Sep2010, wrt bug #337963 (diff)
downloadhistorical-592bb96c4900fc051281869b0f447554fe09c128.tar.gz
historical-592bb96c4900fc051281869b0f447554fe09c128.tar.bz2
historical-592bb96c4900fc051281869b0f447554fe09c128.zip
dev-lisp/cl-cffi removal, p.masked from 17Sep2010, wrt bug #337963
Diffstat (limited to 'dev-lisp/cl-cffi/cl-cffi-0.9.1.ebuild')
-rw-r--r--dev-lisp/cl-cffi/cl-cffi-0.9.1.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/dev-lisp/cl-cffi/cl-cffi-0.9.1.ebuild b/dev-lisp/cl-cffi/cl-cffi-0.9.1.ebuild
deleted file mode 100644
index dd4beda7f82d..000000000000
--- a/dev-lisp/cl-cffi/cl-cffi-0.9.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-cffi/cl-cffi-0.9.1.ebuild,v 1.2 2008/09/03 20:48:27 opfer Exp $
-
-inherit common-lisp
-
-DESCRIPTION="The Common Foreign Function Interface (CFFI)"
-HOMEPAGE="http://common-lisp.net/project/cffi/"
-SRC_URI="http://common-lisp.net/project/cffi/releases/cffi_${PV}.tar.gz"
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="doc"
-
-S=${WORKDIR}/cffi_${PV}
-
-DEPEND="doc? ( dev-lisp/sbcl virtual/texi2dvi sys-apps/texinfo )"
-
-CLPACKAGE=cffi
-
-src_compile() {
- use doc && make -C doc docs
-}
-
-src_install() {
- dodir $CLSYSTEMROOT
- insinto $CLSOURCEROOT/$CLPACKAGE
- for i in cffi cffi-tests cffi-examples cffi-uffi-compat; do
- dosym $CLSOURCEROOT/$CLPACKAGE/$i.asd \
- $CLSYSTEMROOT/
- done
- doins -r tests src uffi-compat examples *.asd
- dodoc README HEADER TODO
- dodoc doc/*.txt
- if use doc; then
- doinfo doc/*.info
- insinto /usr/share/doc/${PF}/html
- doins -r doc/{spec,manual}
- fi
-}