Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: x11-wm/stumpwm-contrib/
Date: Fri, 23 Mar 2018 16:39:35
Message-Id: 1521823188.a01793174319588a4f470c59495bc9ec80ecbb04.nimiux@gentoo
1 commit: a01793174319588a4f470c59495bc9ec80ecbb04
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 23 16:39:48 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 23 16:39:48 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=a0179317
7
8 x11-wm/stumpwm-contrib: New snapshot ebuild
9
10 .../stumpwm-contrib-20180323.ebuild | 39 ++++++++++++++++++++++
11 1 file changed, 39 insertions(+)
12
13 diff --git a/x11-wm/stumpwm-contrib/stumpwm-contrib-20180323.ebuild b/x11-wm/stumpwm-contrib/stumpwm-contrib-20180323.ebuild
14 new file mode 100644
15 index 00000000..7ef1c4b8
16 --- /dev/null
17 +++ b/x11-wm/stumpwm-contrib/stumpwm-contrib-20180323.ebuild
18 @@ -0,0 +1,39 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=6
23 +
24 +inherit common-lisp-3
25 +
26 +DESCRIPTION="Extension Modules for StumpWM"
27 +HOMEPAGE="https://github.com/stumpwm/stumpwm-contrib/"
28 +
29 +if [[ ${PV} == 9999* ]] ; then
30 + inherit git-r3
31 + EGIT_REPO_URI="${HOMEPAGE}"
32 +else
33 + SRC_URI="mirror://gentoo/${P}.tar.bz2"
34 + KEYWORDS="~amd64 ~x86"
35 +fi
36 +
37 +LICENSE="GPL-2 GPL-3 BSD-2"
38 +SLOT="0"
39 +IUSE=""
40 +
41 +RDEPEND=">=x11-wm/stumpwm-1.0.0
42 + dev-lisp/clx-truetype
43 + dev-lisp/drakma
44 + dev-lisp/ironclad
45 + dev-lisp/percent-encoding
46 + dev-lisp/usocket
47 + dev-lisp/xkeyboard
48 + dev-lisp/zpng"
49 +
50 +CONTRIBCATEGORIES="media minor-mode modeline util"
51 +
52 +src_install() {
53 + common-lisp-install-sources -t all ${CONTRIBCATEGORIES}
54 + dobin util/stumpish/stumpish
55 + dobin util/pinentry/stumpwm-pinentry
56 + dodoc README.org
57 +}