diff options
author | Michał Górny <mgorny@gentoo.org> | 2016-01-13 16:28:45 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2016-01-13 16:31:01 +0100 |
commit | f5303ce090c4e4a7c83fc8b7bc07a3f07a3f5210 (patch) | |
tree | 8ccaf8bd0f48b0c10ce730974f3fa3541e8f1344 /net-wireless | |
parent | kde-apps/ksnapshot: Install 2015.12 for Plasma 5.4/5.5 compatibility (diff) | |
download | gentoo-f5303ce090c4e4a7c83fc8b7bc07a3f07a3f5210.tar.gz gentoo-f5303ce090c4e4a7c83fc8b7bc07a3f07a3f5210.tar.bz2 gentoo-f5303ce090c4e4a7c83fc8b7bc07a3f07a3f5210.zip |
net-wireless/blueman: -9999, remove unused eutils, respect systemd dirs
Diffstat (limited to 'net-wireless')
-rw-r--r-- | net-wireless/blueman/blueman-9999.ebuild | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/net-wireless/blueman/blueman-9999.ebuild b/net-wireless/blueman/blueman-9999.ebuild index be9d0db7d3a2..5557dc9696fe 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() { |