diff options
author | Pacho Ramos <pacho@gentoo.org> | 2011-07-05 13:10:54 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2011-07-05 13:10:54 +0000 |
commit | c3f7746bf8382f620bf19d9e5a963411f6ea3aaf (patch) | |
tree | cd256628e701d86bb519ef92b02a296f08f4c1d4 /app-office | |
parent | Include build fix for media-libs/libpgf-6.11.24, bug 373893 (diff) | |
download | gentoo-2-c3f7746bf8382f620bf19d9e5a963411f6ea3aaf.tar.gz gentoo-2-c3f7746bf8382f620bf19d9e5a963411f6ea3aaf.tar.bz2 gentoo-2-c3f7746bf8382f620bf19d9e5a963411f6ea3aaf.zip |
Version bump, also disabled libgda support as it needs deprecated and unmaintained gda3.
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/planner/ChangeLog | 8 | ||||
-rw-r--r-- | app-office/planner/planner-0.14.5.ebuild | 69 |
2 files changed, 76 insertions, 1 deletions
diff --git a/app-office/planner/ChangeLog b/app-office/planner/ChangeLog index 395ebee201e6..3b32d2e150bc 100644 --- a/app-office/planner/ChangeLog +++ b/app-office/planner/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-office/planner # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.59 2011/06/04 18:40:12 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.60 2011/07/05 13:10:54 pacho Exp $ + +*planner-0.14.5 (05 Jul 2011) + + 05 Jul 2011; Pacho Ramos <pacho@gentoo.org> +planner-0.14.5.ebuild: + Version bump, also disabled libgda support as it needs deprecated and + unmaintained gda3. 04 Jun 2011; Pacho Ramos <pacho@gentoo.org> planner-0.14.4.ebuild: Add a note on upstream report for the patch we are applying. diff --git a/app-office/planner/planner-0.14.5.ebuild b/app-office/planner/planner-0.14.5.ebuild new file mode 100644 index 000000000000..bc5905c5ac44 --- /dev/null +++ b/app-office/planner/planner-0.14.5.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.14.5.ebuild,v 1.1 2011/07/05 13:10:54 pacho Exp $ + +EAPI="3" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" +GNOME_TARBALL_SUFFIX="xz" +PYTHON_DEPEND="python? 2" + +inherit python gnome2 + +DESCRIPTION="Project manager for Gnome" +HOMEPAGE="http://live.gnome.org/Planner/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="doc eds python examples" + +RDEPEND=">=dev-libs/glib-2.6:2 + >=x11-libs/gtk+-2.14:2 + >=gnome-base/libgnomecanvas-2.10 + >=gnome-base/libgnomeui-2.10 + >=gnome-base/libglade-2.4:2.0 + >=gnome-base/gconf-2.6:2 + >=dev-libs/libxml2-2.6.27:2 + >=dev-libs/libxslt-1.1.23 + python? ( >=dev-python/pygtk-2.6:2 ) + eds? ( + >=gnome-extra/evolution-data-server-1.1 + >=mail-client/evolution-2.1.3 )" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.12.0 + app-text/scrollkeeper + >=dev-util/intltool-0.35.5 + doc? ( >=dev-util/gtk-doc-1.0 )" + +# FIXME: disable eds backend for now, it fails, upstream bug #654005 +pkg_setup() { + DOCS="AUTHORS COPYING ChangeLog NEWS README" + G2CONF="${G2CONF} + $(use_enable python) + $(use_enable python python-plugin) + $(use_enable eds) + --disable-eds-backend + --with-database=no + --disable-update-mimedb" + #$(use_enable eds eds-backend) + use python && python_set_active_version 2 +} + +src_prepare() { + gnome2_src_prepare + + # Fix intltoolize broken file, see upstream #577133 + sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in || die "sed failed" +} + +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 +} |