summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain Perier <mrpouet@gentoo.org>2009-12-27 15:05:06 +0000
committerRomain Perier <mrpouet@gentoo.org>2009-12-27 15:05:06 +0000
commitdcfeac9df85eeafbb20fb0381f9aeb5b2fa3a1ac (patch)
tree37590c98e3a4e7cb9319b5774ab0a001ff403815 /app-office/gnotime
parentalpha/ia64/sparc stable (diff)
downloadgentoo-2-dcfeac9df85eeafbb20fb0381f9aeb5b2fa3a1ac.tar.gz
gentoo-2-dcfeac9df85eeafbb20fb0381f9aeb5b2fa3a1ac.tar.bz2
gentoo-2-dcfeac9df85eeafbb20fb0381f9aeb5b2fa3a1ac.zip
Fix typo in PKG_CHECK_MODULES for libgnomeui, which caused build failure, per bug #298193
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'app-office/gnotime')
-rw-r--r--app-office/gnotime/ChangeLog7
-rw-r--r--app-office/gnotime/files/gnotime-2.3.0-libgnomeui-typo.patch19
-rw-r--r--app-office/gnotime/gnotime-2.3.0-r2.ebuild9
3 files changed, 32 insertions, 3 deletions
diff --git a/app-office/gnotime/ChangeLog b/app-office/gnotime/ChangeLog
index 86c7330a7531..7f39d599fdf4 100644
--- a/app-office/gnotime/ChangeLog
+++ b/app-office/gnotime/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-office/gnotime
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/ChangeLog,v 1.44 2009/06/09 18:24:42 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/ChangeLog,v 1.45 2009/12/27 15:05:05 mrpouet Exp $
+
+ 27 Dec 2009; Romain Perier <mrpouet@gentoo.org> gnotime-2.3.0-r2.ebuild,
+ +files/gnotime-2.3.0-libgnomeui-typo.patch:
+ Fix typo in PKG_CHECK_MODULES for libgnomeui, which caused build failure,
+ per bug #298193.
09 Jun 2009; Christian Faulhammer <fauli@gentoo.org> gnotime-2.3.0.ebuild,
gnotime-2.3.0-r2.ebuild:
diff --git a/app-office/gnotime/files/gnotime-2.3.0-libgnomeui-typo.patch b/app-office/gnotime/files/gnotime-2.3.0-libgnomeui-typo.patch
new file mode 100644
index 000000000000..7eef96511f7f
--- /dev/null
+++ b/app-office/gnotime/files/gnotime-2.3.0-libgnomeui-typo.patch
@@ -0,0 +1,19 @@
+From: Romain Perier <mrpouet@gentoo.org>
+Date: Sun, 27 Dec 2009 15:51:02 +0100
+Subject: Fix typo in PKG_CHECK_MODULES, which caused build failure
+
+---
+ configure.in | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+--- a/configure.in
++++ b/configure.in
+@@ -90,7 +90,7 @@ AC_SUBST(LIBGNOME_LIBS)
+ dnl *****************************************
+ dnl Check for libgnomeui
+ dnl *****************************************
+-PKG_CHECK_MODULES(GNOMEUI, libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED)
++PKG_CHECK_MODULES(LIBGNOMEUI, libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED)
+ AC_SUBST(LIBGNOMEUI_CFLAGS)
+ AC_SUBST(LIBGNOMEUI_LIBS)
+
diff --git a/app-office/gnotime/gnotime-2.3.0-r2.ebuild b/app-office/gnotime/gnotime-2.3.0-r2.ebuild
index 72688b27927a..eb8574e4d59f 100644
--- a/app-office/gnotime/gnotime-2.3.0-r2.ebuild
+++ b/app-office/gnotime/gnotime-2.3.0-r2.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/gnotime-2.3.0-r2.ebuild,v 1.3 2009/06/09 18:24:42 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnotime/gnotime-2.3.0-r2.ebuild,v 1.4 2009/12/27 15:05:05 mrpouet Exp $
EAPI="1"
-inherit eutils gnome2
+inherit autotools eutils gnome2
DESCRIPTION="utility to track time spent on activities"
HOMEPAGE="http://gttr.sourceforge.net/"
@@ -51,4 +51,9 @@ src_unpack() {
# Fix column descriptions, bug #222325
epatch "${FILESDIR}/${P}-fix-columns.patch"
+ # Fix typo in PKG_CHECK_MODULES, bug #298193
+ epatch "${FILESDIR}/${P}-libgnomeui-typo.patch"
+
+ intltoolize --automake --copy --force || die "intltoolize failed"
+ eautoreconf
}