diff options
author | 2010-06-08 12:52:07 +0000 | |
---|---|---|
committer | 2010-06-08 12:52:07 +0000 | |
commit | 1d12534fa0938923c51f3cf97456005478d20084 (patch) | |
tree | dd8ab3d49f23b5fe295a55947faeaa951270048f /net-wireless/blueman/blueman-1.21-r1.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-1d12534fa0938923c51f3cf97456005478d20084.tar.gz gentoo-2-1d12534fa0938923c51f3cf97456005478d20084.tar.bz2 gentoo-2-1d12534fa0938923c51f3cf97456005478d20084.zip |
Update icon cache in pkg_postinst/postrm (bug #321921).
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-wireless/blueman/blueman-1.21-r1.ebuild')
-rw-r--r-- | net-wireless/blueman/blueman-1.21-r1.ebuild | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/net-wireless/blueman/blueman-1.21-r1.ebuild b/net-wireless/blueman/blueman-1.21-r1.ebuild new file mode 100644 index 000000000000..f9d81a6171c6 --- /dev/null +++ b/net-wireless/blueman/blueman-1.21-r1.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-wireless/blueman/blueman-1.21-r1.ebuild,v 1.1 2010/06/08 12:52:07 dev-zero Exp $ + +EAPI="3" + +PYTHON_DEPEND="2" + +inherit python gnome2-utils + +DESCRIPTION="GTK+ Bluetooth Manager, designed to be simple and intuitive for everyday bluetooth tasks." +HOMEPAGE="http://blueman-project.org/" +SRC_URI="http://download.tuxfamily.org/${PN}/${P}.tar.gz" +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gnome hal network nls pulseaudio" + +CDEPEND="dev-libs/glib:2 + >=x11-libs/gtk+-2.12:2 + x11-libs/startup-notification + dev-python/pygobject + >=net-wireless/bluez-4.21" +DEPEND="${CDEPEND} + nls? ( dev-util/intltool sys-devel/gettext ) + dev-util/pkgconfig + >=dev-python/pyrex-0.9.8" +RDEPEND="${CDEPEND} + >=app-mobilephone/obex-data-server-0.4.4 + sys-apps/dbus + dev-python/pygtk + dev-python/notify-python + dev-python/dbus-python + gnome? ( dev-python/gconf-python ) + network? ( || ( net-dns/dnsmasq + =net-misc/dhcp-3* + >=net-misc/networkmanager-0.8 ) ) + pulseaudio? ( media-sound/pulseaudio )" + +# TODO: +# - add policykit-support as soon as policykit-1 is available in the tree + +pkg_setup() { + python_set_active_version 2 +} + +src_prepare() { + # disable pyc compiling + ln -sf $(type -P true) py-compile + + sed -i \ + -e '/^Encoding/d' \ + data/blueman-manager.desktop.in || die "sed failed" +} + +src_configure() { + econf \ + --disable-static \ + --disable-polkit \ + $(use_enable hal) \ + $(use_enable nls) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README + + rm "${D}"/$(python_get_sitedir)/*.la + rm -rf "${D}/usr/share/polkit-1" + + use gnome || rm "${D}/$(python_get_sitedir)/${PN}/plugins/config/Gconf.py" + use pulseaudio || rm "${D}"/$(python_get_sitedir)/${PN}/{main/Pulse*.py,plugins/applet/Pulse*.py} + + python_need_rebuild +} + +pkg_postinst() { + python_mod_optimize "${PN}" + gnome2_icon_cache_update +} + +pkg_postrm() { + python_mod_cleanup "${PN}" + gnome2_icon_cache_update +} |