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/wmmsg/files/, x11-plugins/wmmsg/
Date: Mon, 29 Feb 2016 10:04:16
Message-Id: 1456740222.747af4b84adecc0e817ac7efe10ed18cd01a0f45.voyageur@gentoo
1 commit: 747af4b84adecc0e817ac7efe10ed18cd01a0f45
2 Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 29 10:03:32 2016 +0000
4 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 29 10:03:42 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=747af4b8
7
8 x11-plugins/wmmsg: fix imlib2[X] dependency
9
10 Thanks Toralf Förster <toralf.foerster <AT> gmx.de> in bug #574614
11 Update ebuild for EAPI 6
12
13 Package-Manager: portage-2.2.27
14
15 x11-plugins/wmmsg/files/wmmsg-1.0.1-list.patch | 12 ++++-----
16 x11-plugins/wmmsg/wmmsg-1.0.1-r2.ebuild | 37 ++++++++++++++++++++++++++
17 2 files changed, 43 insertions(+), 6 deletions(-)
18
19 diff --git a/x11-plugins/wmmsg/files/wmmsg-1.0.1-list.patch b/x11-plugins/wmmsg/files/wmmsg-1.0.1-list.patch
20 index da54e7a..76d2e26 100644
21 --- a/x11-plugins/wmmsg/files/wmmsg-1.0.1-list.patch
22 +++ b/x11-plugins/wmmsg/files/wmmsg-1.0.1-list.patch
23 @@ -1,6 +1,6 @@
24 -diff -Naur src/wmgeneral.orig/list.c src/wmgeneral/list.c
25 ---- src/wmgeneral.orig/list.c 2016-01-04 13:03:23.206828813 +0100
26 -+++ src/wmgeneral/list.c 2016-01-04 13:03:32.358832037 +0100
27 +diff -Naur wmmsg-1.0.1/src/wmgeneral.orig/list.c wmmsg-1.0.1/src/wmgeneral/list.c
28 +--- wmmsg-1.0.1/src/wmgeneral.orig/list.c 2016-01-04 13:03:23.206828813 +0100
29 ++++ wmmsg-1.0.1/src/wmgeneral/list.c 2016-01-04 13:03:32.358832037 +0100
30 @@ -38,7 +38,7 @@
31
32 /* Return a cons cell produced from (head . tail) */
33 @@ -85,9 +85,9 @@ diff -Naur src/wmgeneral.orig/list.c src/wmgeneral/list.c
34 {
35 while (list)
36 {
37 -diff -Naur src/wmgeneral.orig/list.h src/wmgeneral/list.h
38 ---- src/wmgeneral.orig/list.h 2016-01-04 13:03:23.206828813 +0100
39 -+++ src/wmgeneral/list.h 2016-01-04 13:03:46.741837100 +0100
40 +diff -Naur wmmsg-1.0.1/src/wmgeneral.orig/list.h wmmsg-1.0.1/src/wmgeneral/list.h
41 +--- wmmsg-1.0.1/src/wmgeneral.orig/list.h 2016-01-04 13:03:23.206828813 +0100
42 ++++ wmmsg-1.0.1/src/wmgeneral/list.h 2016-01-04 13:03:46.741837100 +0100
43 @@ -29,12 +29,6 @@
44 #ifndef __LIST_H_
45 #define __LIST_H_
46
47 diff --git a/x11-plugins/wmmsg/wmmsg-1.0.1-r2.ebuild b/x11-plugins/wmmsg/wmmsg-1.0.1-r2.ebuild
48 new file mode 100644
49 index 0000000..68eb8e3
50 --- /dev/null
51 +++ b/x11-plugins/wmmsg/wmmsg-1.0.1-r2.ebuild
52 @@ -0,0 +1,37 @@
53 +# Copyright 1999-2016 Gentoo Foundation
54 +# Distributed under the terms of the GNU General Public License v2
55 +# $Id$
56 +
57 +EAPI=6
58 +inherit autotools
59 +
60 +DESCRIPTION="universal visual notification dockapp"
61 +HOMEPAGE="http://swapspace.net/~matt/wmmsg"
62 +SRC_URI="http://swapspace.net/~matt/wmmsg/${P}.tar.gz"
63 +
64 +LICENSE="GPL-2"
65 +SLOT="0"
66 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
67 +IUSE=""
68 +
69 +RDEPEND="x11-libs/gtk+:2
70 + media-libs/imlib2[X]
71 + x11-libs/libXpm
72 + x11-libs/libXext
73 + x11-libs/libX11"
74 +DEPEND="${RDEPEND}
75 + virtual/pkgconfig
76 + x11-libs/libXt"
77 +
78 +DOCS=( AUTHORS ChangeLog README wmmsgrc )
79 +PATCHES=(
80 + "${FILESDIR}"/${P}-use_gtk2.patch
81 + "${FILESDIR}"/${P}-alt-desktop.patch
82 + "${FILESDIR}"/${P}-list.patch
83 + )
84 +
85 +src_prepare() {
86 + default
87 +
88 + eautoreconf
89 +}