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 C0649139694 for ; Sat, 6 May 2017 08:30:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44942E0D3C; Sat, 6 May 2017 08:30:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1E057E0D3C for ; Sat, 6 May 2017 08:30:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 937A7341130 for ; Sat, 6 May 2017 08:30:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44EA07436 for ; Sat, 6 May 2017 08:30:20 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1494059410.e46b05fdc46b6e551681567af625fb801bfc6172.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-user-dirs-gtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xdg-user-dirs-gtk/xdg-user-dirs-gtk-0.10-r1.ebuild X-VCS-Directories: x11-misc/xdg-user-dirs-gtk/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: e46b05fdc46b6e551681567af625fb801bfc6172 X-VCS-Branch: master Date: Sat, 6 May 2017 08:30:20 +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: 02f51827-d179-48f4-8784-77772487e5d4 X-Archives-Hash: 45d3b7bc40479faa27077e51cdc53258 commit: e46b05fdc46b6e551681567af625fb801bfc6172 Author: Kris Scott syntosis net> AuthorDate: Sat May 6 08:26:34 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat May 6 08:30:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e46b05fd x11-misc/xdg-user-dirs-gtk: port to gentoo.readme-r1 Gentoo-bug: 617552 Package-Manager: Portage-2.3.5, Repoman-2.3.2 .../xdg-user-dirs-gtk-0.10-r1.ebuild | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/x11-misc/xdg-user-dirs-gtk/xdg-user-dirs-gtk-0.10-r1.ebuild b/x11-misc/xdg-user-dirs-gtk/xdg-user-dirs-gtk-0.10-r1.ebuild new file mode 100644 index 00000000000..6e04717f73d --- /dev/null +++ b/x11-misc/xdg-user-dirs-gtk/xdg-user-dirs-gtk-0.10-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gnome.org readme.gentoo-r1 + +DESCRIPTION="Integrates xdg-user-dirs into the Gnome desktop and Gtk+ applications" +HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-user-dirs" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="" + +RDEPEND=" + dev-libs/glib + >=x11-misc/xdg-user-dirs-0.14 + >=x11-libs/gtk+-3.5.1:3 +" +DEPEND="${RDEPEND} + dev-util/intltool + virtual/pkgconfig +" + +DOC_CONTENTS=" + This package tries to automatically use some sensible default + directories for your documents, music, video and other stuff. + If you want to change those directories to your needs, see + the settings in ~/.config/user-dirs.dirs +" + +src_prepare() { + default_src_prepare + sed -i \ + -e '/Encoding/d' \ + -e 's:OnlyShowIn=GNOME;LXDE;Unity;:NotShowIn=KDE;:' \ + user-dirs-update-gtk.desktop.in || die +} + +src_install() { + default_src_install + readme.gentoo_create_doc +} + +pkg_postinst() { + readme.gentoo_print_elog +}