summaryrefslogtreecommitdiff
blob: 5b6f860838dbc2641275247cecd4865bc1cd7ed1 (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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=3
inherit common-lisp-3

DESCRIPTION="A Comm Lisp I/O library."
HOMEPAGE="http://common-lisp.net/project/iolib/"
SRC_URI="http://common-lisp.net/project/iolib/files/${P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""

RDEPEND="dev-lisp/alexandria
		 dev-lisp/cl-ppcre
		 >=dev-lisp/cffi-0.10.6
		 dev-lisp/trivial-features
		 dev-lisp/fiveam
		 dev-lisp/trivial-garbage
		 dev-lisp/bordeaux-threads
		 dev-lisp/babel"

CLSYSTEMS="src/iolib.asd src/iolib.base.asd src/iolib.multiplex.asd \
		src/iolib.os.asd src/iolib.pathnames.asd src/iolib.sockets.asd \
		src/iolib.streams.asd src/iolib.syscalls.asd src/iolib.trivial-sockets.asd \
		examples/iolib.examples.asd tests/iolib-tests.asd"

src_install() {
	common-lisp-install-sources src examples
	common-lisp-install-sources -t all version.lisp-expr tests
	common-lisp-install-asdf
	dodoc CHANGES README
}