From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B33DF139694 for ; Sat, 4 Mar 2017 15:20:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1620AE0BA3; Sat, 4 Mar 2017 15:19:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EA8E721C09D for ; Sat, 4 Mar 2017 15:19:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 312BF341842 for ; Sat, 4 Mar 2017 15:19:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED4C25C39 for ; Sat, 4 Mar 2017 15:19:16 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1488640708.758a43e7b4360d0ace67d175e461179fe1ce2493.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/idesk/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/idesk/idesk-0.7.5-r3.ebuild X-VCS-Directories: x11-misc/idesk/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 758a43e7b4360d0ace67d175e461179fe1ce2493 X-VCS-Branch: master Date: Sat, 4 Mar 2017 15:19:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cca4e5aa-5b50-49c4-b7a2-f67be8dd6589 X-Archives-Hash: 23aee6ff480a87e7c26e68cad8fcb062 commit: 758a43e7b4360d0ace67d175e461179fe1ce2493 Author: Harri Nieminen gmail com> AuthorDate: Thu Mar 2 08:31:56 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Mar 4 15:18:28 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=758a43e7 x11-misc/idesk: EAPI bump 4 -> 6 Package-Manager: Portage-2.3.4, Repoman-2.3.2 Closes: https://github.com/gentoo/gentoo/pull/4098 x11-misc/idesk/idesk-0.7.5-r3.ebuild | 41 ++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/x11-misc/idesk/idesk-0.7.5-r3.ebuild b/x11-misc/idesk/idesk-0.7.5-r3.ebuild new file mode 100644 index 00000000000..ac6e5ad067b --- /dev/null +++ b/x11-misc/idesk/idesk-0.7.5-r3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Utility to place icons on the root window" +HOMEPAGE="http://idesk.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND=" + dev-libs/glib:2 + dev-libs/libxml2 + media-libs/freetype + >=media-libs/imlib2-1.4[X] + media-libs/libart_lgpl + x11-libs/gtk+:2 + x11-libs/pango + x11-libs/startup-notification" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +PATCHES=( + # bug 333515 + "${FILESDIR}"/${P}-glibc-2.12.patch +) + +src_prepare() { + default + sed -i \ + -e 's,/usr/local/,/usr/,' \ + examples/default.lnk || die +} + +src_configure() { + econf --enable-libsn +}