Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xfishtank/
Date: Sun, 05 Feb 2017 20:44:45
Message-Id: 1486327462.81f2b8951e1cfaad6e2d2449d194bd4bef536a9a.soap@gentoo
1 commit: 81f2b8951e1cfaad6e2d2449d194bd4bef536a9a
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Sun Feb 5 20:07:23 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 5 20:44:22 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81f2b895
7
8 x11-misc/xfishtank: EAPI bump 2 -> 6
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11 Closes: https://github.com/gentoo/gentoo/pull/3834
12
13 x11-misc/xfishtank/xfishtank-2.1-r2.ebuild | 35 ++++++++++++++++++++++++++++++
14 1 file changed, 35 insertions(+)
15
16 diff --git a/x11-misc/xfishtank/xfishtank-2.1-r2.ebuild b/x11-misc/xfishtank/xfishtank-2.1-r2.ebuild
17 new file mode 100644
18 index 00000000..3029d12
19 --- /dev/null
20 +++ b/x11-misc/xfishtank/xfishtank-2.1-r2.ebuild
21 @@ -0,0 +1,35 @@
22 +# Copyright 1999-2017 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Id$
25 +
26 +EAPI=6
27 +
28 +inherit toolchain-funcs
29 +
30 +MY_P=${P}tp
31 +
32 +DESCRIPTION="Turns your root window into an aquarium"
33 +HOMEPAGE="http://www.ibiblio.org/pub/Linux/X11/demos/"
34 +SRC_URI="http://www.ibiblio.org/pub/Linux/X11/demos/${MY_P}.tar.gz"
35 +
36 +LICENSE="public-domain"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-linux"
39 +IUSE=""
40 +
41 +RDEPEND="x11-libs/libX11
42 + x11-libs/libXt
43 + x11-libs/libXext"
44 +DEPEND="${RDEPEND}
45 + x11-proto/xproto
46 + x11-misc/imake"
47 +
48 +S=${WORKDIR}/${MY_P}
49 +
50 +PATCHES=( "${FILESDIR}"/${P}-implicits.patch )
51 +
52 +src_compile() {
53 + xmkmf || die
54 + emake CDEBUGFLAGS="${CFLAGS}" CC="$(tc-getCC)" \
55 + EXTRA_LDOPTIONS="${LDFLAGS}" ${PN}
56 +}