diff options
author | 2014-07-25 09:24:07 +0000 | |
---|---|---|
committer | 2014-07-25 09:24:07 +0000 | |
commit | 5550ad6181ec0889d72f883bf5c948017acb8cf6 (patch) | |
tree | ef162fd225628cf4c013a3b5d3a5bbe4a39eeb90 /net-im/telepathy-mission-control | |
parent | Drop trailing '.' from description. (diff) | |
download | gentoo-2-5550ad6181ec0889d72f883bf5c948017acb8cf6.tar.gz gentoo-2-5550ad6181ec0889d72f883bf5c948017acb8cf6.tar.bz2 gentoo-2-5550ad6181ec0889d72f883bf5c948017acb8cf6.zip |
Make the power management USE flags more user friendly.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'net-im/telepathy-mission-control')
-rw-r--r-- | net-im/telepathy-mission-control/ChangeLog | 6 | ||||
-rw-r--r-- | net-im/telepathy-mission-control/telepathy-mission-control-5.16.2.ebuild | 12 |
2 files changed, 10 insertions, 8 deletions
diff --git a/net-im/telepathy-mission-control/ChangeLog b/net-im/telepathy-mission-control/ChangeLog index eb93f6b38cd2..c6d5cab5f482 100644 --- a/net-im/telepathy-mission-control/ChangeLog +++ b/net-im/telepathy-mission-control/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-im/telepathy-mission-control # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/ChangeLog,v 1.107 2014/07/24 11:23:29 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/ChangeLog,v 1.108 2014/07/25 09:24:07 ssuominen Exp $ + + 25 Jul 2014; Samuli Suominen <ssuominen@gentoo.org> + telepathy-mission-control-5.16.2.ebuild: + Make the power management USE flags more user friendly. 24 Jul 2014; Samuli Suominen <ssuominen@gentoo.org> metadata.xml: Punt description for USE="upower" and correct description for USE="systemd" diff --git a/net-im/telepathy-mission-control/telepathy-mission-control-5.16.2.ebuild b/net-im/telepathy-mission-control/telepathy-mission-control-5.16.2.ebuild index f624d4a9c80b..c7e813d3f2cb 100644 --- a/net-im/telepathy-mission-control/telepathy-mission-control-5.16.2.ebuild +++ b/net-im/telepathy-mission-control/telepathy-mission-control-5.16.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/telepathy-mission-control-5.16.2.ebuild,v 1.3 2014/07/23 15:23:34 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/telepathy-mission-control-5.16.2.ebuild,v 1.4 2014/07/25 09:24:07 ssuominen Exp $ EAPI="5" GCONF_DEBUG="no" @@ -17,7 +17,7 @@ SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1+" SLOT="0" KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~arm-linux ~x86-linux" -IUSE="debug networkmanager systemd" # test +IUSE="debug networkmanager systemd upower" # test RDEPEND=" >=dev-libs/dbus-glib-0.82 @@ -25,10 +25,7 @@ RDEPEND=" >=sys-apps/dbus-0.95 >=net-libs/telepathy-glib-0.20 networkmanager? ( >=net-misc/networkmanager-0.7 ) - !systemd? ( || ( - ( >=sys-power/upower-0.9.11 <sys-power/upower-0.99 ) - sys-power/upower-pm-utils - ) ) + !systemd? ( upower? ( || ( <sys-power/upower-0.99 sys-power/upower-pm-utils ) ) ) " DEPEND="${RDEPEND} ${PYTHON_DEPS} @@ -48,5 +45,6 @@ src_configure() { --disable-static \ $(use_enable debug) \ $(use_with networkmanager connectivity nm) \ - $(usex systemd --disable-upower --enable-upower) + $(use_enable upower) \ + $(use systemd && echo "--disable-upower") } |