blob: 2d183f13e841c8199f62c1e62a70ba503dd45ea0 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2
MY_P=${PN}-v${PV}
DESCRIPTION="A natural language date and time parser for Common Lisp."
HOMEPAGE="http://chaitanyagupta.com/lisp/chronicity/"
SRC_URI="http://chaitanyagupta.com/lisp/${PN}/downloads/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND=">=dev-lisp/cl-ppcre-2.0.0
dev-lisp/cl-interpol
>=dev-lisp/local-time-1.0.1"
CLPACKAGES="${PN} ${PN}-test"
S="${WORKDIR}"/${MY_P}
src_install() {
common-lisp-install *.asd src test
common-lisp-symlink-asdf
dodoc README
}
|