Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-gtk2/
Date: Fri, 01 Apr 2022 12:03:54
Message-Id: 1648813555.50305ecdc63d5fbedc97d5837672a5be10559a34.ulm@gentoo
1 commit: 50305ecdc63d5fbedc97d5837672a5be10559a34
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 1 11:45:55 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 1 11:45:55 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=50305ecd
7
8 dev-lisp/cl-gtk2: Remove package
9
10 Depends on x11-libs/gtk+:2.
11
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 dev-lisp/cl-gtk2/cl-gtk2-0.1.1-r1.ebuild | 44 --------------------------------
15 1 file changed, 44 deletions(-)
16
17 diff --git a/dev-lisp/cl-gtk2/cl-gtk2-0.1.1-r1.ebuild b/dev-lisp/cl-gtk2/cl-gtk2-0.1.1-r1.ebuild
18 deleted file mode 100644
19 index c2707e89..00000000
20 --- a/dev-lisp/cl-gtk2/cl-gtk2-0.1.1-r1.ebuild
21 +++ /dev/null
22 @@ -1,44 +0,0 @@
23 -# Copyright 1999-2017 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -
28 -inherit common-lisp-3 eutils
29 -
30 -DESCRIPTION="A Common Lisp interface to Gtk+."
31 -HOMEPAGE="http://common-lisp.net/project/cl-gtk2/"
32 -SRC_URI="http://common-lisp.net/project/cl-gtk2/files/${P}.tar.gz"
33 -
34 -LICENSE="LLGPL-2.1"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~ppc ~sparc ~x86"
37 -IUSE="doc"
38 -
39 -DEPEND="doc? ( dev-lisp/sbcl
40 - sys-apps/texinfo
41 - dev-libs/libxslt )"
42 -RDEPEND="dev-lisp/bordeaux-threads
43 - dev-lisp/cffi
44 - dev-lisp/closer-mop
45 - dev-lisp/cl-cairo2
46 - dev-lisp/cl-opengl
47 - dev-lisp/iterate
48 - dev-lisp/metabang-bind
49 - dev-lisp/trivial-garbage
50 - >=x11-libs/gtk+-2.16:2"
51 -
52 -CLSYSTEMS="cairo/cl-gtk2-cairo gdk/cl-gtk2-gdk glib/cl-gtk2-glib \
53 -gtk/cl-gtk2-gtk gtk-glext/cl-gtk2-gtkglext pango/cl-gtk2-pango"
54 -
55 -src_compile() {
56 - if use doc ; then
57 - make -C doc || die "Cannot build docs"
58 - fi
59 -}
60 -
61 -src_install() {
62 - common-lisp-install-sources -t all cairo gdk glib gtk gtk-glext pango
63 - common-lisp-install-asdf
64 -
65 - use doc && dohtml -r doc/*
66 -}