blob: 9d77dfc478b43ed721b1e2b5c870a178f649ae09 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit common-lisp-2 eutils
DESCRIPTION="Colorize is a Common Lisp application for colorizing Common Lisp, Scheme, Elisp, C, C++ or Java code."
HOMEPAGE="http://www.cliki.net/colorize"
SRC_URI="http://www.unmutual.info/software/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="!dev-lisp/cl-${PN}
dev-lisp/html-encode
dev-lisp/split-sequence
~dev-lisp/hyperspec-7.0"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${PV}-hyperspec-pathname-gentoo.patch
}
src_install() {
common-lisp-install *.{lisp,asd} *-expr Mop_Sym.txt
common-lisp-symlink-asdf
}
|