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/wmcliphist/
Date: Mon, 04 Jul 2016 14:54:54
Message-Id: 1467644003.22c2ab8255a4ab969d5d97e2cf184da4dcd79e27.voyageur@gentoo
1 commit: 22c2ab8255a4ab969d5d97e2cf184da4dcd79e27
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 4 14:53:23 2016 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 14:53:23 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22c2ab82
7
8 x11-plugins/wmcliphist: depend on gtk+ with USE=X, bug #587044
9
10 Reported by Toralf Förster <toralf.foerster <AT> gmx.de>
11
12 Package-Manager: portage-2.3.0
13
14 x11-plugins/wmcliphist/wmcliphist-2.1-r2.ebuild | 36 +++++++++++++++++++++++++
15 1 file changed, 36 insertions(+)
16
17 diff --git a/x11-plugins/wmcliphist/wmcliphist-2.1-r2.ebuild b/x11-plugins/wmcliphist/wmcliphist-2.1-r2.ebuild
18 new file mode 100644
19 index 0000000..4b41a5e
20 --- /dev/null
21 +++ b/x11-plugins/wmcliphist/wmcliphist-2.1-r2.ebuild
22 @@ -0,0 +1,36 @@
23 +# Copyright 1999-2016 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +# $Id$
26 +
27 +EAPI=6
28 +inherit toolchain-funcs
29 +
30 +DESCRIPTION="Dockable clipboard history application for Window Maker"
31 +HOMEPAGE="http://windowmaker.org/dockapps/?name=wmcliphist"
32 +# Grab from http://windowmaker.org/dockapps/?download=${P}.tar.gz
33 +SRC_URI="https://dev.gentoo.org/~voyageur/distfiles/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
38 +IUSE=""
39 +
40 +RDEPEND="x11-libs/gtk+:3[X]"
41 +DEPEND="${RDEPEND}
42 + virtual/pkgconfig"
43 +
44 +S=${WORKDIR}/dockapps
45 +
46 +src_prepare() {
47 + default
48 +
49 + sed -e '/^PREFIX/s:=.*:=/usr:' \
50 + -i Makefile || die
51 + tc-export CC
52 +}
53 +
54 +src_install() {
55 + default
56 +
57 + newdoc ${PN}rc ${PN}rc.sample
58 +}