blob: ab1c4e58734993c206efd2b425e7316da5d5ad4b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2
DESCRIPTION="CL-YACC is a LALR(1) parser generator for Common Lisp"
HOMEPAGE="http://www.pps.jussieu.fr/~jch/software/cl-yacc/
http://www.cliki.net/CL-Yacc"
SRC_URI="http://www.pps.jussieu.fr/~jch/software/files/old/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="doc"
DEPEND="doc? ( sys-apps/texinfo )"
CLPACKAGE="yacc"
CLSYSTEMS="yacc"
src_compile() {
if use doc; then
makeinfo ${PN}.texi || die "Cannot build Texinfo docs"
fi
}
src_install() {
common-lisp-install *.{lisp,asd}
common-lisp-symlink-asdf
use doc && doinfo ${PN}.info
dodoc README
}
|