summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2015-02-03 11:58:04 +0000
committerPacho Ramos <pacho@gentoo.org>2015-02-03 11:58:04 +0000
commita2a607f7e1564972620378552357418096fd0e6c (patch)
tree619e67886a9bd59391bbf38130a8439f5691d4e6
parentMarked ~hppa too. (diff)
downloadgentoo-2-a2a607f7e1564972620378552357418096fd0e6c.tar.gz
gentoo-2-a2a607f7e1564972620378552357418096fd0e6c.tar.bz2
gentoo-2-a2a607f7e1564972620378552357418096fd0e6c.zip
Fix configure detection (#538096 by Attila Tóth)
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
-rw-r--r--x11-misc/colord/ChangeLog5
-rw-r--r--x11-misc/colord/colord-1.2.8.ebuild9
2 files changed, 10 insertions, 4 deletions
diff --git a/x11-misc/colord/ChangeLog b/x11-misc/colord/ChangeLog
index d982977259b8..a21cf5d66109 100644
--- a/x11-misc/colord/ChangeLog
+++ b/x11-misc/colord/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-misc/colord
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/colord/ChangeLog,v 1.93 2015/01/25 15:42:24 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/colord/ChangeLog,v 1.94 2015/02/03 11:58:04 pacho Exp $
+
+ 03 Feb 2015; Pacho Ramos <pacho@gentoo.org> colord-1.2.8.ebuild:
+ Fix configure detection (#538096 by Attila Tóth)
*colord-1.2.8 (25 Jan 2015)
diff --git a/x11-misc/colord/colord-1.2.8.ebuild b/x11-misc/colord/colord-1.2.8.ebuild
index debf1264d09a..aa03b4c1c9f2 100644
--- a/x11-misc/colord/colord-1.2.8.ebuild
+++ b/x11-misc/colord/colord-1.2.8.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/colord/colord-1.2.8.ebuild,v 1.1 2015/01/25 15:42:24 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/colord/colord-1.2.8.ebuild,v 1.2 2015/02/03 11:58:04 pacho Exp $
EAPI="5"
GCONF_DEBUG="no"
@@ -8,7 +8,7 @@ GNOME2_LA_PUNT="yes"
VALA_USE_DEPEND="vapigen"
VALA_MIN_API_VERSION="0.18"
-inherit bash-completion-r1 check-reqs eutils gnome2 multilib-minimal user systemd udev vala
+inherit autotools bash-completion-r1 check-reqs eutils gnome2 multilib-minimal user systemd udev vala
DESCRIPTION="System service to accurately color manage input and output devices"
HOMEPAGE="http://www.freedesktop.org/software/colord/"
@@ -77,8 +77,11 @@ pkg_setup() {
src_prepare() {
# Adapt to Gentoo paths
- sed -i -e 's/spotread/argyll-spotread/' src/sensors/cd-sensor-argyll.c || die
+ sed -i -e 's/spotread/argyll-spotread/' \
+ src/sensors/cd-sensor-argyll.c \
+ configure.ac || die
+ eautoreconf
use vala && vala_src_prepare
gnome2_src_prepare
}