blob: b40bf8c88c2c9e5e7e37427dc6837196c7acd5a0 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-chemical-compounds/cl-chemical-compounds-1.0.2.ebuild,v 1.1 2005/02/10 22:22:54 mkennedy Exp $
inherit common-lisp eutils
DESCRIPTION="Common Lisp library for parsing and performing calculations on chemical compound expressions"
HOMEPAGE="http://common-lisp.net/project/chemboy/
http://www.cliki.net/chemical-compounds"
SRC_URI="mirror://gentoo/chemical-compounds-${PV}.tar.gz"
LICENSE="LLGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="dev-lisp/cl-periodic-table"
CLPACKAGE=chemical-compounds
S=${WORKDIR}/chemical-compounds-${PV}
src_install() {
common-lisp-install *.lisp *.asd
common-lisp-system-symlink
dodoc README
}
|