Gentoo Archives: gentoo-commits

From: James Le Cuirot <chewi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/amiwm/
Date: Thu, 07 May 2020 22:25:26
Message-Id: 1588890261.fcb7da7fe90babb7bc6d2a7bc98cfb75f9f99476.chewi@gentoo
1 commit: fcb7da7fe90babb7bc6d2a7bc98cfb75f9f99476
2 Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 26 21:04:26 2020 +0000
4 Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
5 CommitDate: Thu May 7 22:24:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcb7da7f
7
8 x11-wm/amiwm: Version bump to 0.22.01_p20200826 snapshot
9
10 It has a new (but somewhat dead) upstream. I sent a bunch of patches
11 to fix all the build issues though.
12
13 Package-Manager: Portage-2.3.99, Repoman-2.3.22
14 Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
15
16 x11-wm/amiwm/Manifest | 1 +
17 x11-wm/amiwm/amiwm-0.22.01_p20200826.ebuild | 51 +++++++++++++++++++++++++++++
18 2 files changed, 52 insertions(+)
19
20 diff --git a/x11-wm/amiwm/Manifest b/x11-wm/amiwm/Manifest
21 index f22c0a66448..39acc8033f5 100644
22 --- a/x11-wm/amiwm/Manifest
23 +++ b/x11-wm/amiwm/Manifest
24 @@ -1 +1,2 @@
25 +DIST amiwm-0.22.01_p20200826.tar.gz 153787 BLAKE2B eebd61436bff6c063c0946f61632f5a56ba01d62f01e2761de62fed1c2c5049a191dbbaf836ac0b0771b38a84dc6f52a40ee53b9c73666855cfe03b6a829f9a8 SHA512 a4329eb8ea98b631611a6e069f27a6c640bfac94aa5a2c3591c9c35c4b08ea6f123fadcd56597353b27ec67bc079e8268e1b700fe85c0d545c9bb93439362c1b
26 DIST amiwm0.21pl2.tar.gz 195128 BLAKE2B de7c843e6b756797b7a72a8e0b6fde6d4c02893e3eae8262d85d4417a7ad6309c10add802c04dde2d092bc7c8a604edbc96c4a9fc3c7f1166897a7933a978ccb SHA512 6504a4fd4c30a571b0c501b46fdc442fcc993c27b4595753f7bfa12a38c0b997a01d939c7a35e6c499aa0f8972bc0fda7cc88a9fe77091f363f8cd5a9e8d50de
27
28 diff --git a/x11-wm/amiwm/amiwm-0.22.01_p20200826.ebuild b/x11-wm/amiwm/amiwm-0.22.01_p20200826.ebuild
29 new file mode 100644
30 index 00000000000..7e7eaed103a
31 --- /dev/null
32 +++ b/x11-wm/amiwm/amiwm-0.22.01_p20200826.ebuild
33 @@ -0,0 +1,51 @@
34 +# Copyright 1999-2020 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit autotools
40 +
41 +COMMIT="8b8c956a904fa73edb02d4dc6d45bc0358bff3b3"
42 +DESCRIPTION="Amiga Workbench inspired window manager for Xorg"
43 +HOMEPAGE="https://github.com/redsPL/amiwm"
44 +SRC_URI="https://github.com/chewi/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="amiwm"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~ppc ~x86"
49 +
50 +COMMON_DEPEND="
51 + x11-libs/libX11
52 + x11-libs/libXmu
53 + x11-libs/libXext
54 +"
55 +
56 +RDEPEND="
57 + ${COMMON_DEPEND}
58 + media-fonts/font-misc-misc[nls,X]
59 + x11-apps/xrdb
60 + x11-apps/xsetroot
61 +"
62 +
63 +DEPEND="
64 + ${COMMON_DEPEND}
65 + x11-base/xorg-proto
66 +"
67 +
68 +S="${WORKDIR}/${PN}-${COMMIT}"
69 +
70 +src_prepare() {
71 + default
72 + eautoconf
73 +}
74 +
75 +src_install() {
76 + emake install DESTDIR="${D}" STRIPFLAG=
77 + einstalldocs
78 +
79 + exeinto /etc/X11/Sessions
80 + newexe - ${PN} <<-EOF
81 + #!/bin/sh
82 + exec ${PN}
83 + EOF
84 +}