blob: a6ea5eca0029a1730d2a179d50d8cd3ff84b80b2 (
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-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit common-lisp-3 git-r3
DESCRIPTION="Common Lisp bindings for the Cairo API"
HOMEPAGE="https://cliki.net/cl-cairo2"
EGIT_REPO_URI="https://github.com/rpav/cl-cairo2"
LICENSE="Boost-1.0"
SLOT="0"
RDEPEND="dev-lisp/cffi
dev-lisp/cl-utilities
dev-lisp/cl-colors
dev-lisp/metabang-bind
dev-lisp/trivial-garbage
dev-lisp/trivial-features
>=x11-libs/cairo-1.6"
CLSYSTEMS="${PN} ${PN}-xlib ${PN}-quartz ${PN}-win32"
src_install() {
common-lisp-install-sources src
common-lisp-install-asdf
dodoc README* TODO
docinto tutorial && dodoc tutorial/*.{lisp,pdf}
}
|