commit:     2c0630983c75273e08b06b083522e2ca265c9078
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 28 09:04:40 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jun 28 09:04:40 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c063098

xfce-base/xfconf: Bump to 4.13.8

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 xfce-base/xfconf/Manifest             |  1 +
 xfce-base/xfconf/xfconf-4.13.8.ebuild | 87 +++++++++++++++++++++++++++++++++++
 2 files changed, 88 insertions(+)

diff --git a/xfce-base/xfconf/Manifest b/xfce-base/xfconf/Manifest
index a662f1d2896..3cd9e9ece1d 100644
--- a/xfce-base/xfconf/Manifest
+++ b/xfce-base/xfconf/Manifest
@@ -1,2 +1,3 @@
 DIST xfconf-4.12.1.tar.bz2 564131 BLAKE2B 
893210f19d743559b0879e9e38004400c8f8af0b6b8c72db4602360eee2ee7058f074e86f2f9e4397f6e728eae0148d3621424461d53e84ad768d7f0673ed08a
 SHA512 
114dba6a78d43b25eebfd9ef78beec75391b0c77e736e66ae2b04fe97dc281f93d05467ddfdd63a5067f44de135347564fe55928ae7de72f0984339db411d77f
 DIST xfconf-4.13.7.tar.bz2 618676 BLAKE2B 
8f7dd97530d4781e2d46d8139800f54991d932db5de0050e66d711bafef1daa0355383fd139789037a92b462042563a9aa2269295785b2f8217a0e9ff6a00c80
 SHA512 
113fb22b449a318b0cca6521914eda6cfeb6b2056a1aad4d49a5e83c28661c843c9912bbf7eddb7d6cd1f172b532c73dd02259bf6fabe60a377024f9f8d5825d
+DIST xfconf-4.13.8.tar.bz2 635519 BLAKE2B 
4f8a05063b5acfa34e8a09637050e4c30917966708e956a3d8373d4872e0468e3b546728bafed18f2c6ec1e540170343e59071d5100ff2ec63bb0bbf4dcfe577
 SHA512 
2b6afee1c9299e56e1576f93b34410c99b16109e83b0b34c4e13d952997d4812de6a6ab69f015c8f7fb8cf01e1b00b5d953261c3cbbfeab216c878aae3618f77

diff --git a/xfce-base/xfconf/xfconf-4.13.8.ebuild 
b/xfce-base/xfconf/xfconf-4.13.8.ebuild
new file mode 100644
index 00000000000..0076669b06b
--- /dev/null
+++ b/xfce-base/xfconf/xfconf-4.13.8.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit vala
+
+DESCRIPTION="A configuration management system for Xfce"
+HOMEPAGE="https://www.xfce.org/projects/";
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2";
+
+LICENSE="GPL-2+"
+SLOT="0/3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
+IUSE="debug introspection perl vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND=">=dev-libs/glib-2.42:=
+       >=xfce-base/libxfce4util-4.10:=
+       introspection? ( dev-libs/gobject-introspection:= )
+       perl? (
+               dev-lang/perl:=[-build(-)]
+               dev-perl/glib-perl
+       )
+       vala? ( $(vala_depend) )
+       !<xfce-base/xfce4-panel-4.13.1
+       !<xfce-base/xfce4-settings-4.13.1"
+DEPEND="${RDEPEND}
+       dev-util/gdbus-codegen
+       dev-util/glib-utils
+       dev-util/intltool
+       virtual/pkgconfig
+       sys-devel/gettext
+       perl? (
+               dev-perl/ExtUtils-Depends
+               dev-perl/ExtUtils-PkgConfig
+       )"
+
+src_prepare() {
+       # stupid vala.eclass...
+       default
+}
+
+src_configure() {
+       local myconf=(
+               $(use_enable perl perl-bindings)
+               $(use_enable introspection)
+               $(use_enable vala)
+               $(use_enable debug checks)
+               --with-perl-options=INSTALLDIRS=vendor
+       )
+
+       use vala && vala_src_prepare
+       econf "${myconf[@]}"
+}
+
+src_test() {
+       local service_dir=${HOME}/.local/share/dbus-1/services
+       mkdir -p "${service_dir}" || die
+       cat > "${service_dir}/org.xfce.Xfconf.service" <<-EOF || die
+               [D-BUS Service]
+               Name=org.xfce.Xfconf
+               Exec=${S}/xfconfd/xfconfd
+       EOF
+
+       (
+               # start isolated dbus session bus
+               dbus_data=$(dbus-launch --sh-syntax) || exit
+               eval "${dbus_data}"
+
+               nonfatal emake check
+               ret=${?}
+
+               kill "${DBUS_SESSION_BUS_PID}"
+               exit "${ret}"
+       ) || die
+}
+
+src_install() {
+       default
+       find "${D}" -type f -name '*.la' -delete || die
+
+       if use perl; then
+               find "${ED}" -type f -name perllocal.pod -delete || die
+               find "${ED}" -depth -mindepth 1 -type d -empty -delete || die
+       fi
+}

Reply via email to