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 658591382C5 for ; Sun, 8 Apr 2018 08:29:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 87C9EE09BB; Sun, 8 Apr 2018 08:29:35 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5B926E09BB for ; Sun, 8 Apr 2018 08:29:35 +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 B8F97335C49 for ; Sun, 8 Apr 2018 08:29:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28EBE27F for ; Sun, 8 Apr 2018 08:29:32 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1523176165.96a6cabc8c59e18174168195508b91cbeee2d5e7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/thunar-shares-plugin/ X-VCS-Repository: repo/gentoo X-VCS-Files: xfce-extra/thunar-shares-plugin/thunar-shares-plugin-0.2.0_p20101105-r1.ebuild X-VCS-Directories: xfce-extra/thunar-shares-plugin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 96a6cabc8c59e18174168195508b91cbeee2d5e7 X-VCS-Branch: master Date: Sun, 8 Apr 2018 08:29:32 +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: a7c9533a-1463-4787-998d-a9b49e24390b X-Archives-Hash: 05a8aa161719590d1304a7cd21b4e56c commit: 96a6cabc8c59e18174168195508b91cbeee2d5e7 Author: Michał Górny gentoo org> AuthorDate: Sun Apr 8 08:08:52 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Apr 8 08:29:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96a6cabc xfce-extra/thunar-shares-plugin: Bump 0.2.0_p20101105 to EAPI=6 .../thunar-shares-plugin-0.2.0_p20101105-r1.ebuild | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/xfce-extra/thunar-shares-plugin/thunar-shares-plugin-0.2.0_p20101105-r1.ebuild b/xfce-extra/thunar-shares-plugin/thunar-shares-plugin-0.2.0_p20101105-r1.ebuild new file mode 100644 index 00000000000..c002b2f127a --- /dev/null +++ b/xfce-extra/thunar-shares-plugin/thunar-shares-plugin-0.2.0_p20101105-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +DESCRIPTION="Thunar plugin to share files using Samba" +HOMEPAGE="https://goodies.xfce.org/projects/thunar-plugins/thunar-shares-plugin" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +RDEPEND=">=dev-libs/glib-2.18 + >=x11-libs/gtk+-2.12:2 + >=xfce-base/thunar-1.2" +DEPEND="${RDEPEND} + dev-util/intltool + dev-util/xfce4-dev-tools + virtual/pkgconfig" + +src_configure() { + local myconf=( + --disable-static + # workaround the default for git builds + --enable-debug=minimal + ) + econf "${myconf[@]}" +} + +src_prepare() { + default + mv configure.in configure.ac || die + # https://bugzilla.xfce.org/show_bug.cgi?id=10032 + sed -i \ + -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \ + -e 's:-Werror::' \ + configure.ac || die + + local AT_M4DIR="${EPREFIX}/usr/share/xfce4/dev-tools/m4macros" + eautoreconf +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}