diff options
author | 2016-01-30 13:53:42 +0100 | |
---|---|---|
committer | 2016-01-30 13:57:33 +0100 | |
commit | f90ef34e550246663748a8c154ce36e5b6ec8751 (patch) | |
tree | 2b244a4752bcf7f4f1d340ddc4c5da5a4bb7d501 /media-gfx/colorhug-client/colorhug-client-0.2.8.ebuild | |
parent | media-sound/rhythmbox: Version bump (diff) | |
download | gentoo-f90ef34e550246663748a8c154ce36e5b6ec8751.tar.gz gentoo-f90ef34e550246663748a8c154ce36e5b6ec8751.tar.bz2 gentoo-f90ef34e550246663748a8c154ce36e5b6ec8751.zip |
media-gfx/colorhug-client: Version bump
Package-Manager: portage-2.2.27
Diffstat (limited to 'media-gfx/colorhug-client/colorhug-client-0.2.8.ebuild')
-rw-r--r-- | media-gfx/colorhug-client/colorhug-client-0.2.8.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/media-gfx/colorhug-client/colorhug-client-0.2.8.ebuild b/media-gfx/colorhug-client/colorhug-client-0.2.8.ebuild new file mode 100644 index 000000000000..b3261ba34969 --- /dev/null +++ b/media-gfx/colorhug-client/colorhug-client-0.2.8.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +GCONF_DEBUG="no" + +inherit bash-completion-r1 eutils gnome2 + +DESCRIPTION="Client tools for the ColorHug display colorimeter" +HOMEPAGE="http://www.hughski.com/" +SRC_URI="http://people.freedesktop.org/~hughsient/releases/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +# Tests need valgrind, that needs glibc with debugging symbols +RESTRICT="test" + +RDEPEND=" + dev-db/sqlite:3 + >=dev-libs/glib-2.31.10:2 + >=dev-libs/libgusb-0.2.2 + media-libs/lcms:2 + >=media-libs/libcanberra-0.10[gtk3] + net-libs/libsoup:2.4 + >=x11-libs/gtk+-3.11.2:3 + >=x11-misc/colord-1.2.9:0= + >=x11-libs/colord-gtk-0.1.24 +" +DEPEND="${RDEPEND} + app-text/docbook-sgml-dtd:4.1 + app-text/docbook-sgml-utils + app-text/yelp-tools + >=dev-util/intltool-0.50 + >=sys-devel/gettext-0.17 + virtual/pkgconfig +" +# docbook stuff needed for man pages + +src_configure() { + # introspection checked but not needed by anything + # Install completions manually to prevent dependency on bash-completion, bug #546166 + gnome2_src_configure --disable-introspection --disable-bash-completion +} + +src_install() { + gnome2_src_install + dobashcomp data/bash/colorhug-cmd +} |