From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-857114-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 8EF621388C3
	for <garchives@archives.gentoo.org>; Wed, 13 Jan 2016 15:31:12 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id C3B1F21C002;
	Wed, 13 Jan 2016 15:31:10 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 5BA0921C00F
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Jan 2016 15:31:10 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 34286340961
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Jan 2016 15:31:09 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id DBC3DA01
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Jan 2016 15:31:06 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
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" <mgorny@gentoo.org>
Message-ID: <1452699061.f5303ce090c4e4a7c83fc8b7bc07a3f07a3f5210.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/blueman/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-wireless/blueman/blueman-9999.ebuild
X-VCS-Directories: net-wireless/blueman/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: f5303ce090c4e4a7c83fc8b7bc07a3f07a3f5210
X-VCS-Branch: master
Date: Wed, 13 Jan 2016 15:31:06 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 4ab4f2c4-814c-4454-841e-382a86dad49a
X-Archives-Hash: 483a86db0693ac8dca5238c8b1c9f25a

commit:     f5303ce090c4e4a7c83fc8b7bc07a3f07a3f5210
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 13 15:28:45 2016 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jan 13 15:31:01 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5303ce0

net-wireless/blueman: -9999, remove unused eutils, respect systemd dirs

 net-wireless/blueman/blueman-9999.ebuild | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/net-wireless/blueman/blueman-9999.ebuild b/net-wireless/blueman/blueman-9999.ebuild
index be9d0db..5557dc9 100644
--- a/net-wireless/blueman/blueman-9999.ebuild
+++ b/net-wireless/blueman/blueman-9999.ebuild
@@ -5,7 +5,7 @@
 EAPI="5"
 
 PYTHON_COMPAT=( python{2_7,3_4} )
-inherit eutils gnome2-utils linux-info python-single-r1
+inherit gnome2-utils linux-info python-single-r1 systemd
 
 DESCRIPTION="GTK+ Bluetooth Manager, designed to be simple and intuitive for everyday bluetooth tasks"
 HOMEPAGE="https://github.com/blueman-project/blueman"
@@ -79,15 +79,19 @@ src_prepare() {
 }
 
 src_configure() {
-	econf \
-		--docdir=/usr/share/doc/${PF} \
-		--disable-runtime-deps-check \
-		--disable-static \
-		$(use_enable appindicator) \
-		$(use_enable policykit polkit) \
-		$(use_enable nls) \
-		$(use_enable pulseaudio) \
+	local myconf=(
+		--docdir=/usr/share/doc/${PF}
+		--disable-runtime-deps-check
+		--disable-static
+		# TODO: replace upstream with sane system/user unitdir getters
+		--with-systemdunitdir="$(systemd_get_utildir)"
+		$(use_enable appindicator)
+		$(use_enable policykit polkit)
+		$(use_enable nls)
+		$(use_enable pulseaudio)
 		$(use_enable thunar thunar-sendto)
+	)
+	econf "${myconf[@]}"
 }
 
 src_install() {