Gentoo Archives: gentoo-commits

From: Bernard Cafarelli <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmmand/
Date: Mon, 29 May 2017 12:19:31
Message-Id: 1496060323.05256085a01c74c23f2169bd7beafc440f7585a6.voyageur@gentoo
1 commit: 05256085a01c74c23f2169bd7beafc440f7585a6
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 29 12:10:58 2017 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon May 29 12:18:43 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05256085
7
8 x11-plugins/wmmand: decompress manpage, bug #619982
9
10 Also update EAPI
11
12 Package-Manager: Portage-2.3.6, Repoman-2.3.2
13
14 x11-plugins/wmmand/wmmand-1.3.2-r1.ebuild | 45 +++++++++++++++++++++++++++++++
15 1 file changed, 45 insertions(+)
16
17 diff --git a/x11-plugins/wmmand/wmmand-1.3.2-r1.ebuild b/x11-plugins/wmmand/wmmand-1.3.2-r1.ebuild
18 new file mode 100644
19 index 00000000000..933b07c185b
20 --- /dev/null
21 +++ b/x11-plugins/wmmand/wmmand-1.3.2-r1.ebuild
22 @@ -0,0 +1,45 @@
23 +# Copyright 1999-2017 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=6
27 +inherit eutils toolchain-funcs
28 +
29 +MY_P=wmMand-${PV}
30 +
31 +DESCRIPTION="a dockable mandelbrot browser"
32 +HOMEPAGE="http://ciotog.homelinux.net/software/wmMand/"
33 +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +IUSE=""
39 +
40 +RDEPEND="x11-libs/libX11
41 + x11-libs/libXext
42 + x11-libs/libXpm"
43 +DEPEND="${RDEPEND}
44 + x11-proto/xextproto
45 + x11-proto/xproto"
46 +
47 +S=${WORKDIR}/${MY_P}/wmMand
48 +
49 +DOCS=( ../{BUGS,changelog,TODO} )
50 +
51 +src_prepare() {
52 + default
53 + gunzip wmMand.6.gz || die
54 +}
55 +
56 +src_compile() {
57 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" \
58 + SYSTEM="${LDFLAGS}" \
59 + INCDIR="" LIBDIR=""
60 +}
61 +
62 +src_install() {
63 + dobin wmMand
64 + doman wmMand.6
65 + doicon wmMand.png
66 + einstalldocs
67 +}