summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2010-03-07 19:57:10 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2010-03-07 19:57:10 +0000
commitd2cdb38c55d374e71febc5df2097cc8953f0a1ab (patch)
tree43a620495b1b3604815054baf0f03b50de94e985 /app-office
parentgnash: add myself to maintainers (diff)
downloadgentoo-2-d2cdb38c55d374e71febc5df2097cc8953f0a1ab.tar.gz
gentoo-2-d2cdb38c55d374e71febc5df2097cc8953f0a1ab.tar.bz2
gentoo-2-d2cdb38c55d374e71febc5df2097cc8953f0a1ab.zip
Clean up old revisions.
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'app-office')
-rw-r--r--app-office/planner/ChangeLog11
-rw-r--r--app-office/planner/files/planner-0.14.3-build-failure.patch19
-rw-r--r--app-office/planner/files/planner-0.14.3-configure.patch76
-rw-r--r--app-office/planner/files/planner-0.14.3-parallel-build.patch48
-rw-r--r--app-office/planner/planner-0.14.3-r1.ebuild81
-rw-r--r--app-office/planner/planner-0.14.3-r2.ebuild81
6 files changed, 9 insertions, 307 deletions
diff --git a/app-office/planner/ChangeLog b/app-office/planner/ChangeLog
index dc67fc655f11..f8b823fb92f4 100644
--- a/app-office/planner/ChangeLog
+++ b/app-office/planner/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-office/planner
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.55 2009/07/19 12:59:35 nixnut Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.56 2010/03/07 19:57:09 eva Exp $
+
+ 07 Mar 2010; Gilles Dartiguelongue <eva@gentoo.org>
+ -planner-0.14.3-r1.ebuild, -planner-0.14.3-r2.ebuild,
+ -files/planner-0.14.3-build-failure.patch,
+ -files/planner-0.14.3-configure.patch,
+ -files/planner-0.14.3-parallel-build.patch:
+ Clean up old revisions.
19 Jul 2009; nixnut <nixnut@gentoo.org> planner-0.14.4.ebuild:
ppc stable #274376
diff --git a/app-office/planner/files/planner-0.14.3-build-failure.patch b/app-office/planner/files/planner-0.14.3-build-failure.patch
deleted file mode 100644
index 1317a2cb6d27..000000000000
--- a/app-office/planner/files/planner-0.14.3-build-failure.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-#
-# Gentoo: https://bugs.gentoo.org/show_bug.cgi?id=231823
-# Upstream: http://bugzilla.gnome.org/show_bug.cgi?id=539993
-#
---- a/libplanner/mrp-sql.c 2008/07/15 01:17:58 1.1
-+++ b/libplanner/mrp-sql.c 2008/07/15 01:19:28
-@@ -2405,9 +2405,9 @@ mrp_sql_load_project (MrpStorageSQL *sto
- }
-
- #define WRITE_ERROR(e,c) \
--G_STMT_START \
--g_set_error(e,MRP_ERROR,MRP_ERROR_SAVE_WRITE_FAILED, sql_get_last_error (c)) \
--G_STMT_END
-+G_STMT_START { \
-+g_set_error(e,MRP_ERROR,MRP_ERROR_SAVE_WRITE_FAILED, sql_get_last_error (c)); \
-+} G_STMT_END
-
-
- /*************************
diff --git a/app-office/planner/files/planner-0.14.3-configure.patch b/app-office/planner/files/planner-0.14.3-configure.patch
deleted file mode 100644
index f59454f03fe4..000000000000
--- a/app-office/planner/files/planner-0.14.3-configure.patch
+++ /dev/null
@@ -1,76 +0,0 @@
-#
-# Upstream: https://bugzilla.gnome.org/show_bug.cgi?id=562984
-#
-Index: b/configure.in
-===================================================================
---- a/configure.in (révision 940)
-+++ b/configure.in (copie de travail)
-@@ -80,28 +81,40 @@
- dnl -----------
- dnl | Database/GDA check |----------------------------------------------
- dnl -----------
--AC_ARG_ENABLE(database, [ --enable-database=[no/yes] enable database support [default=no]], enable_database="$enableval", enable_database=no)
-+AC_ARG_WITH(database,
-+ AS_HELP_STRING([--with-database],
-+ [enable database support @<:@default=no@:>@ (auto/no/gda1/gda2/gda3)]),
-+ with_database="$withval", with_database=no)
-
--if test "x$enable_database" = "xyes" ; then
-+GDA_VER=
-+use_gda=no
-
-- PKG_CHECK_MODULES(GDA, libgda-3.0 >= 1.0,
-- [
-- GDA_VER=30
-- ],
-- [
-- PKG_CHECK_MODULES(GDA, libgda-2.0 >= 1.0,
-- [
-- GDA_VER=20
-- ],
-- [
-- PKG_CHECK_MODULES(GDA, libgda >= 1.0)
-- GDA_VER=10
-- ])
-- ])
-- use_gda=yes
--else
-- use_gda=no
-+case "$with_database" in
-+auto|yes)
-+ PKG_CHECK_MODULES(GDA, libgda-3.0 >= 1.0, [GDA_VER=30],
-+ [PKG_CHECK_MODULES(GDA, libgda-2.0 >= 1.0, [GDA_VER=20],
-+ [PKG_CHECK_MODULES(GDA, libgda >= 1.0, [GDA_VER=10])
-+ ])
-+ ])
-+ ;;
-+*gda3*)
-+ PKG_CHECK_MODULES(GDA, libgda-3.0 >= 1.0, [GDA_VER=30])
-+ ;;
-+*gda2*)
-+ PKG_CHECK_MODULES(GDA, libgda-2.0 >= 1.0, [GDA_VER=20])
-+ ;;
-+*gda1*)
-+ PKG_CHECK_MODULES(GDA, libgda >= 1.0, [GDA_VER=10])
-+ ;;
-+*)
-+ use_gda=no
-+ ;;
-+esac
-+
-+if test x$GDA_VER != x; then
-+ use_gda=yes
- fi
-+
- AC_SUBST(GDA_VER)
- AM_CONDITIONAL(HAVE_GDA, test x$use_gda = xyes)
- dnl -----------------------------------------------------------
-@@ -351,7 +364,7 @@
- echo "Python plugin : $enable_python_plugin"
- #echo "Dotnet bindings : $have_dotnet"
- echo "Simple priority scheduling : $use_simple_priority_scheduling"
--echo "Database/GDA support : $use_gda"
-+echo "Database/GDA support : $use_gda, $GDA_VER"
- echo "Evolution Data Server import : $use_eds"
- echo "Evolution Data Server backend: $use_eds_backend"
- echo
diff --git a/app-office/planner/files/planner-0.14.3-parallel-build.patch b/app-office/planner/files/planner-0.14.3-parallel-build.patch
deleted file mode 100644
index 8224eb01c1fb..000000000000
--- a/app-office/planner/files/planner-0.14.3-parallel-build.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-Index: tests/Makefile.am
-===================================================================
---- tests/Makefile.am (révision 909)
-+++ tests/Makefile.am (copie de travail)
-@@ -7,10 +7,6 @@
- -DG_LOG_DOMAIN=\"Planner\" \
- -DEXAMPLESDIR=\"$(top_srcdir)/tests/files\"
-
--LDADD = \
-- $(top_builddir)/libplanner/libplanner-1.la \
-- $(PLANNER_LIBS)
--
- noinst_LTLIBRARIES = libselfcheck.la
-
- libselfcheck_la_SOURCES = \
-@@ -20,16 +16,28 @@
- noinst_PROGRAMS = scheduler-test time-test calendar-test task-test
-
- scheduler_test_SOURCES = scheduler-test.c
--scheduler_test_LDFLAGS = libselfcheck.la
-+scheduler_test_LDADD = \
-+ $(top_builddir)/libplanner/libplanner-1.la \
-+ $(PLANNER_LIBS) \
-+ libselfcheck.la
-
- time_test_SOURCES = time-test.c
--time_test_LDFLAGS = libselfcheck.la
-+time_test_LDADD = \
-+ $(top_builddir)/libplanner/libplanner-1.la \
-+ $(PLANNER_LIBS) \
-+ libselfcheck.la
-
- calendar_test_SOURCES = calendar-test.c
--calendar_test_LDFLAGS = libselfcheck.la
-+calendar_test_LDADD = \
-+ $(top_builddir)/libplanner/libplanner-1.la \
-+ $(PLANNER_LIBS) \
-+ libselfcheck.la
-
- task_test_SOURCES = task-test.c
--task_test_LDFLAGS = libselfcheck.la
-+task_test_LDADD = \
-+ $(top_builddir)/libplanner/libplanner-1.la \
-+ $(PLANNER_LIBS) \
-+ libselfcheck.la
-
- # The loadable modules can't be found at distcheck time so disable the
- # tests for distcheck.
diff --git a/app-office/planner/planner-0.14.3-r1.ebuild b/app-office/planner/planner-0.14.3-r1.ebuild
deleted file mode 100644
index 2955ce85b9a6..000000000000
--- a/app-office/planner/planner-0.14.3-r1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.14.3-r1.ebuild,v 1.4 2009/01/17 14:58:54 nixnut Exp $
-
-EAPI="1"
-
-inherit autotools eutils gnome2
-
-DESCRIPTION="Project manager for Gnome2"
-HOMEPAGE="http://live.gnome.org/Planner/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ppc sparc x86"
-IUSE="doc eds libgda python examples"
-
-RDEPEND=">=dev-libs/glib-2.6
- >=x11-libs/gtk+-2.6
- >=gnome-base/libgnomecanvas-2.10
- >=gnome-base/libgnomeui-2.10
- >=gnome-base/libglade-2.4
- >=gnome-base/gnome-vfs-2.10
- >=gnome-base/libgnomeprintui-2.10
- >=gnome-base/gconf-2.6
- >=dev-libs/libxml2-2.6.27
- >=dev-libs/libxslt-1.1.23
- libgda? ( gnome-extra/libgda:1 )
- python? ( >=dev-python/pygtk-2.6 )
- eds? (
- >=gnome-extra/evolution-data-server-1.1
- >=mail-client/evolution-2.1.3 )"
-
-# FIXME: disable eds backend for now, its experimental
-
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.12.0
- app-text/scrollkeeper
- >=dev-util/intltool-0.35.5
- dev-util/gtk-doc-am
- doc? ( >=dev-util/gtk-doc-1.0 )"
-
-DOCS="AUTHORS COPYING ChangeLog INSTALL README"
-
-pkg_setup() {
- G2CONF="${G2CONF}
- $(use_with libgda database gda1)
- $(use_enable python)
- $(use_enable python python-plugin)
- $(use_enable eds)
- --disable-update-mimedb"
-# $(use_enable eds eds-backend)
-}
-
-src_unpack() {
- gnome2_src_unpack
-
- # Fix parallel build issues
- epatch "${FILESDIR}/${P}-parallel-build.patch"
-
- # Fix compile failure with eds-plugin
- epatch "${FILESDIR}/${P}-eds-plugin.patch"
-
- # Fix compilation failure with recent glib/gcc, bug #231823
- epatch "${FILESDIR}/${P}-build-failure.patch"
-
- # Fix libgda selection
- epatch "${FILESDIR}/${P}-configure.patch"
-
- intltoolize --force || die "intltoolize failed"
- eautoreconf
-}
-
-src_install() {
- gnome2_src_install \
- sqldocdir="\$(datadir)/doc/${PF}" \
- sampledir="\$(datadir)/doc/${PF}/examples"
-
- if ! use examples; then
- rm -rf "${D}/usr/share/doc/${PF}/examples"
- fi
-}
diff --git a/app-office/planner/planner-0.14.3-r2.ebuild b/app-office/planner/planner-0.14.3-r2.ebuild
deleted file mode 100644
index d04f5857d73c..000000000000
--- a/app-office/planner/planner-0.14.3-r2.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.14.3-r2.ebuild,v 1.1 2008/12/04 15:35:15 eva Exp $
-
-EAPI="1"
-
-inherit autotools eutils gnome2
-
-DESCRIPTION="Project manager for Gnome2"
-HOMEPAGE="http://live.gnome.org/Planner/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-IUSE="doc eds libgda python examples"
-
-RDEPEND=">=dev-libs/glib-2.6
- >=x11-libs/gtk+-2.6
- >=gnome-base/libgnomecanvas-2.10
- >=gnome-base/libgnomeui-2.10
- >=gnome-base/libglade-2.4
- >=gnome-base/gnome-vfs-2.10
- >=gnome-base/libgnomeprintui-2.10
- >=gnome-base/gconf-2.6
- >=dev-libs/libxml2-2.6.27
- >=dev-libs/libxslt-1.1.23
- libgda? ( gnome-extra/libgda:3 )
- python? ( >=dev-python/pygtk-2.6 )
- eds? (
- >=gnome-extra/evolution-data-server-1.1
- >=mail-client/evolution-2.1.3 )"
-
-# FIXME: disable eds backend for now, its experimental
-
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.12.0
- app-text/scrollkeeper
- >=dev-util/intltool-0.35.5
- dev-util/gtk-doc-am
- doc? ( >=dev-util/gtk-doc-1.0 )"
-
-DOCS="AUTHORS COPYING ChangeLog INSTALL README"
-
-pkg_setup() {
- G2CONF="${G2CONF}
- $(use_with libgda database gda3)
- $(use_enable python)
- $(use_enable python python-plugin)
- $(use_enable eds)
- --disable-update-mimedb"
-# $(use_enable eds eds-backend)
-}
-
-src_unpack() {
- gnome2_src_unpack
-
- # Fix parallel build issues
- epatch "${FILESDIR}/${P}-parallel-build.patch"
-
- # Fix compile failure with eds-plugin
- epatch "${FILESDIR}/${P}-eds-plugin.patch"
-
- # Fix compilation failure with recent glib/gcc, bug #231823
- epatch "${FILESDIR}/${P}-build-failure.patch"
-
- # Fix libgda selection
- epatch "${FILESDIR}/${P}-configure.patch"
-
- intltoolize --force || die "intltoolize failed"
- eautoreconf
-}
-
-src_install() {
- gnome2_src_install \
- sqldocdir="\$(datadir)/doc/${PF}" \
- sampledir="\$(datadir)/doc/${PF}/examples"
-
- if ! use examples; then
- rm -rf "${D}/usr/share/doc/${PF}/examples"
- fi
-}