summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2007-11-05 23:04:42 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2007-11-05 23:04:42 +0000
commit137bb59ea09c146d53cd2dbc17f4919c5ff6051b (patch)
tree8048855bf272ac74342eb834ec4ed25192988b02 /app-office/planner
parentVersion bump. (diff)
downloadgentoo-2-137bb59ea09c146d53cd2dbc17f4919c5ff6051b.tar.gz
gentoo-2-137bb59ea09c146d53cd2dbc17f4919c5ff6051b.tar.bz2
gentoo-2-137bb59ea09c146d53cd2dbc17f4919c5ff6051b.zip
fix repoman warnings, bug #190698 and rework some details of 0.14.2 ebuild
(Portage version: 2.1.3.16)
Diffstat (limited to 'app-office/planner')
-rw-r--r--app-office/planner/ChangeLog5
-rw-r--r--app-office/planner/planner-0.12.1.ebuild4
-rw-r--r--app-office/planner/planner-0.14.2.ebuild31
3 files changed, 23 insertions, 17 deletions
diff --git a/app-office/planner/ChangeLog b/app-office/planner/ChangeLog
index 255a9fe52567..6261f1b4ba74 100644
--- a/app-office/planner/ChangeLog
+++ b/app-office/planner/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-office/planner
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.34 2007/08/25 09:50:10 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/planner/ChangeLog,v 1.35 2007/11/05 23:04:42 eva Exp $
+
+ 05 Nov 2007; Gilles Dartiguelongue <eva@gentoo.org> planner-0.14.2.ebuild:
+ fix example (bug #190698) again
13 Aug 2007; Gilles Dartiguelongue <eva@gentoo.org> planner-0.14.ebuild,
planner-0.14.2.ebuild:
diff --git a/app-office/planner/planner-0.12.1.ebuild b/app-office/planner/planner-0.12.1.ebuild
index 1a771331ae0f..570c50c85262 100644
--- a/app-office/planner/planner-0.12.1.ebuild
+++ b/app-office/planner/planner-0.12.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.12.1.ebuild,v 1.12 2007/06/24 09:12:55 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.12.1.ebuild,v 1.13 2007/11/05 23:04:42 eva Exp $
inherit gnome2 fdo-mime
@@ -43,7 +43,7 @@ src_install() {
gnome2_src_install
# ugly fix for #83947 - FIXME : write some config magic
- rm -fr ${D}/usr/share/mime/{XMLnamespaces,globs,magic}
+ rm -fr "${D}/usr/share/mime/{XMLnamespaces,globs,magic}"
}
diff --git a/app-office/planner/planner-0.14.2.ebuild b/app-office/planner/planner-0.14.2.ebuild
index 8dddad67b051..be83bbaadcda 100644
--- a/app-office/planner/planner-0.14.2.ebuild
+++ b/app-office/planner/planner-0.14.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.14.2.ebuild,v 1.5 2007/08/25 09:50:10 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/planner/planner-0.14.2.ebuild,v 1.6 2007/11/05 23:04:42 eva Exp $
inherit gnome2 fdo-mime
@@ -36,23 +36,26 @@ DEPEND="${RDEPEND}
DOCS="AUTHORS COPYING ChangeLog INSTALL README"
-# darn thing breaks in paralell make :/
+# darn thing breaks in parallel make :/
MAKEOPTS="${MAKEOPTS} -j1"
-G2CONF="${G2CONF} \
- $(use_enable libgda database) \
- $(use_enable python) \
- $(use_enable python python-plugin) \
- --disable-update-mimedb"
-# $(use_enable eds) \
-# $(use_enable eds eds-backend) \
+pkg_setup() {
+ G2CONF="${G2CONF}
+ $(use_enable libgda database)
+ $(use_enable python)
+ $(use_enable python python-plugin)
+ $(use_enable doc gtk-doc)
+ --disable-update-mimedb"
+# $(use_enable eds) \
+# $(use_enable eds eds-backend) \
+}
src_install() {
- local myinstall="sqldocdir=\"\$(datadir)/doc/${PF}\""
+ gnome2_src_install \
+ sqldocdir="\$(datadir)/doc/${PF}" \
+ sampledir="\$(datadir)/doc/${PF}/examples"
- if use examples; then
- myinstall="${myinstall} sampledir=\"\$(datadir)/doc/${PF}/examples\""
+ if ! use examples; then
+ rm -rf "${D}/usr/share/doc/${PF}/examples"
fi
-
- gnome2_src_install ${myinstall}
}