blob: 087d1cb5cf2140aafbae5aba5ece47927e8413b3 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-flexi-streams/cl-flexi-streams-0.6.6.ebuild,v 1.1 2006/10/16 14:08:57 mkennedy Exp $
inherit common-lisp
DESCRIPTION="FLEXI-STREAMS implements \"virtual\" bivalent streams that can be layered atop real binary or bivalent streams."
HOMEPAGE="http://weitz.de/flexi-streams/
http://www.cliki.net/flexi-streams"
SRC_URI="http://common-lisp.net/project/portage-overlay/distfiles/flexi-streams_${PV}.orig.tar.gz"
LICENSE="BSD"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND=">=dev-lisp/cl-trivial-gray-streams-20060925"
SLOT="0"
S=${WORKDIR}/${P/cl-}
CLPACKAGE=flexi-streams
src_install() {
common-lisp-install *.{lisp,asd}
common-lisp-system-symlink
dodoc CHANGELOG
dohtml doc/index.html
insinto /usr/share/doc/${PF}/html
doins doc/foo.txt
}
|