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/idesk/
Date: Sat, 04 Mar 2017 15:20:28
Message-Id: 1488640708.758a43e7b4360d0ace67d175e461179fe1ce2493.soap@gentoo
1 commit: 758a43e7b4360d0ace67d175e461179fe1ce2493
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Thu Mar 2 08:31:56 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 15:18:28 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=758a43e7
7
8 x11-misc/idesk: EAPI bump 4 -> 6
9
10 Package-Manager: Portage-2.3.4, Repoman-2.3.2
11 Closes: https://github.com/gentoo/gentoo/pull/4098
12
13 x11-misc/idesk/idesk-0.7.5-r3.ebuild | 41 ++++++++++++++++++++++++++++++++++++
14 1 file changed, 41 insertions(+)
15
16 diff --git a/x11-misc/idesk/idesk-0.7.5-r3.ebuild b/x11-misc/idesk/idesk-0.7.5-r3.ebuild
17 new file mode 100644
18 index 00000000000..ac6e5ad067b
19 --- /dev/null
20 +++ b/x11-misc/idesk/idesk-0.7.5-r3.ebuild
21 @@ -0,0 +1,41 @@
22 +# Copyright 1999-2017 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +
27 +DESCRIPTION="Utility to place icons on the root window"
28 +HOMEPAGE="http://idesk.sourceforge.net/"
29 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
30 +
31 +LICENSE="BSD"
32 +SLOT="0"
33 +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
34 +IUSE=""
35 +
36 +RDEPEND="
37 + dev-libs/glib:2
38 + dev-libs/libxml2
39 + media-libs/freetype
40 + >=media-libs/imlib2-1.4[X]
41 + media-libs/libart_lgpl
42 + x11-libs/gtk+:2
43 + x11-libs/pango
44 + x11-libs/startup-notification"
45 +DEPEND="${RDEPEND}
46 + virtual/pkgconfig"
47 +
48 +PATCHES=(
49 + # bug 333515
50 + "${FILESDIR}"/${P}-glibc-2.12.patch
51 +)
52 +
53 +src_prepare() {
54 + default
55 + sed -i \
56 + -e 's,/usr/local/,/usr/,' \
57 + examples/default.lnk || die
58 +}
59 +
60 +src_configure() {
61 + econf --enable-libsn
62 +}