blob: d159f0549dbb95538bcd7de241cfd60cb48ab9aa (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit common-lisp-2 git
DESCRIPTION="CFFI Add-on: Foreign Structures By Value."
HOMEPAGE="http://common-lisp.net/project/gsll/"
EGIT_REPO_URI="git://repo.or.cz/fsbv.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND=">=dev-lisp/cffi-0.10.5
dev-lisp/trivial-features
virtual/libffi"
src_install() {
common-lisp-install *.{lisp,asd}
common-lisp-symlink-asdf
dohtml readme.html
}
|