blob: 5a801f55d670c6a4650fe5c0d76b6794ae419b99 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2
DESCRIPTION="LOCAL-TIME is a development library for manipulating date and time information."
HOMEPAGE="http://common-lisp.net/project/local-time/"
SRC_URI="http://common-lisp.net/project/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="dev-lisp/cl-fad
dev-lisp/fiveam
doc? ( sys-apps/texinfo )"
src_compile() {
use doc && texi2pdf documentation/${PN}.texinfo
}
src_install() {
common-lisp-install *.{lisp,asd} zoneinfo
common-lisp-symlink-asdf
dodoc CREDITS README TODO
use doc && dodoc ${PN}.pdf
}
|