diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-10-20 13:55:37 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-10-20 13:55:37 +0000 |
commit | 33a2f4f46a6a76e542a9cd3f52f7e23fbc8f7737 (patch) | |
tree | d13a46f70870e91f5f5b96243ed1ca6f79e9608a /app-misc/gnote | |
parent | Use EAPI3, add prefix keywords as tested in bug 339818 by Thomas Burkard (diff) | |
download | gentoo-2-33a2f4f46a6a76e542a9cd3f52f7e23fbc8f7737.tar.gz gentoo-2-33a2f4f46a6a76e542a9cd3f52f7e23fbc8f7737.tar.bz2 gentoo-2-33a2f4f46a6a76e542a9cd3f52f7e23fbc8f7737.zip |
Clean up old revisions.
(Portage version: 2.2_rc89/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/gnote')
-rw-r--r-- | app-misc/gnote/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/gnote/files/gnote-0.6.1-dbus-switch.patch | 46 | ||||
-rw-r--r-- | app-misc/gnote/gnote-0.6.3.ebuild | 46 | ||||
-rw-r--r-- | app-misc/gnote/gnote-0.7.1.ebuild | 46 | ||||
-rw-r--r-- | app-misc/gnote/gnote-0.7.2.ebuild | 9 |
5 files changed, 13 insertions, 141 deletions
diff --git a/app-misc/gnote/ChangeLog b/app-misc/gnote/ChangeLog index 4f95fa899262..0f7f14bb61fa 100644 --- a/app-misc/gnote/ChangeLog +++ b/app-misc/gnote/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/gnote # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v 1.7 2010/03/31 22:40:00 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/ChangeLog,v 1.8 2010/10/20 13:55:37 eva Exp $ + + 20 Oct 2010; Gilles Dartiguelongue <eva@gentoo.org> + -files/gnote-0.6.1-dbus-switch.patch, -gnote-0.6.3.ebuild, + -gnote-0.7.1.ebuild, gnote-0.7.2.ebuild: + Clean up old revisions. *gnote-0.7.2 (31 Mar 2010) diff --git a/app-misc/gnote/files/gnote-0.6.1-dbus-switch.patch b/app-misc/gnote/files/gnote-0.6.1-dbus-switch.patch deleted file mode 100644 index 34a9f9390d8e..000000000000 --- a/app-misc/gnote/files/gnote-0.6.1-dbus-switch.patch +++ /dev/null @@ -1,46 +0,0 @@ -From fa67c7f9f70b24edfec27e6d2023a4aeb15ee8dd Mon Sep 17 00:00:00 2001 -From: Gilles Dartiguelongue <eva@gentoo.org> -Date: Mon, 3 Aug 2009 00:06:15 +0200 -Subject: [PATCH] Fix configure failure with --disable-dbus - -AM_CONDITIONAL for HAVE_DBUS was badly placed resulting in configure -getting confused. - -GNOME bug #590560 ---- - configure.ac | 18 ++++++++++-------- - 1 files changed, 10 insertions(+), 8 deletions(-) - -diff --git a/configure.ac b/configure.ac -index d9cf17a..f06deab 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -166,15 +166,17 @@ AC_LANG_POP - # - # Use DBus to export our remote control if available. - # --AC_ARG_ENABLE(dbus, -- [ --enable-dbus[[=no/yes]] compile with dbus support [[default: yes]]], -- ENABLE_DBUS="$enableval", ENABLE_DBUS="yes") --if test "x$ENABLE_DBUS" != "xno"; then -- PKG_CHECK_MODULES(DBUS, dbus-c++-1 >= $DBUSCPP_VERSION, [ -- have_dbus="yes";AC_DEFINE([ENABLE_DBUS], [1], [Define to 1 if DBus is enabled]) -- ], have_dbus="no") -- AM_CONDITIONAL(HAVE_DBUS, test "$have_dbus" = "yes") -+AC_ARG_ENABLE(dbus, -+ AS_HELP_STRING([--enable-dbus],[compile with dbus support @<:@default: yes@:>@]), -+ [],[enable_dbus=yes]) -+ -+if test "$enable_dbus" != "no"; then -+ PKG_CHECK_MODULES(DBUS, dbus-c++-1 >= $DBUSCPP_VERSION, [ -+ have_dbus="yes" -+ AC_DEFINE([ENABLE_DBUS], [1], [Define to 1 if DBus is enabled]) -+ ], have_dbus="no") - fi -+AM_CONDITIONAL(HAVE_DBUS, test "$have_dbus" = "yes") - - - --- -1.6.3.3 - diff --git a/app-misc/gnote/gnote-0.6.3.ebuild b/app-misc/gnote/gnote-0.6.3.ebuild deleted file mode 100644 index 6d93779539cd..000000000000 --- a/app-misc/gnote/gnote-0.6.3.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/gnote-0.6.3.ebuild,v 1.2 2010/02/23 19:37:22 eva Exp $ - -EAPI="2" - -inherit gnome2 - -DESCRIPTION="Desktop note-taking application" -HOMEPAGE="http://www.gnome.org/" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="applet debug" # dbus - -RDEPEND=">=x11-libs/gtk+-2.14 - >=dev-cpp/glibmm-2 - >=dev-cpp/gtkmm-2.12 - >=dev-libs/libxml2-2 - dev-libs/libxslt - >=gnome-base/gconf-2 - >=dev-libs/libpcre-7.8[cxx] - >=app-text/gtkspell-2.0.9 - >=dev-libs/boost-1.34 - sys-libs/e2fsprogs-libs - applet? ( - >=gnome-base/gnome-panel-2 - >=dev-cpp/libpanelappletmm-2.26 )" -# Build with dbus is currently not implemented -# dbus? ( >=dev-libs/dbus-glib-0.70 )" -DEPEND="${DEPEND} - dev-util/pkgconfig - >=dev-util/intltool-0.35.0 - app-text/gnome-doc-utils - app-text/docbook-xml-dtd:4.1.2" - -DOCS="AUTHORS ChangeLog NEWS README TODO" - -pkg_setup() { - G2CONF="${G2CONF} - --disable-dbus - --disable-static - $(use_enable applet) - $(use_enable debug)" -} diff --git a/app-misc/gnote/gnote-0.7.1.ebuild b/app-misc/gnote/gnote-0.7.1.ebuild deleted file mode 100644 index e7dc3d26ab99..000000000000 --- a/app-misc/gnote/gnote-0.7.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/gnote-0.7.1.ebuild,v 1.2 2010/02/23 19:37:22 eva Exp $ - -EAPI="2" - -inherit gnome2 - -DESCRIPTION="Desktop note-taking application" -HOMEPAGE="http://www.gnome.org/" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="applet debug" # dbus - -RDEPEND=">=x11-libs/gtk+-2.14 - >=dev-cpp/glibmm-2 - >=dev-cpp/gtkmm-2.12 - >=dev-libs/libxml2-2 - dev-libs/libxslt - >=gnome-base/gconf-2 - >=dev-libs/libpcre-7.8[cxx] - >=app-text/gtkspell-2.0.9 - >=dev-libs/boost-1.34 - sys-libs/e2fsprogs-libs - applet? ( - >=gnome-base/gnome-panel-2 - >=dev-cpp/libpanelappletmm-2.26 )" -# Build with dbus is currently not implemented -# dbus? ( >=dev-libs/dbus-glib-0.70 )" -DEPEND="${DEPEND} - dev-util/pkgconfig - >=dev-util/intltool-0.35.0 - app-text/gnome-doc-utils - app-text/docbook-xml-dtd:4.1.2" - -DOCS="AUTHORS ChangeLog NEWS README TODO" - -pkg_setup() { - G2CONF="${G2CONF} - --disable-dbus - --disable-static - $(use_enable applet) - $(use_enable debug)" -} diff --git a/app-misc/gnote/gnote-0.7.2.ebuild b/app-misc/gnote/gnote-0.7.2.ebuild index 6769ce754421..f922cb608532 100644 --- a/app-misc/gnote/gnote-0.7.2.ebuild +++ b/app-misc/gnote/gnote-0.7.2.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/gnote-0.7.2.ebuild,v 1.1 2010/03/31 22:40:00 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/gnote/gnote-0.7.2.ebuild,v 1.2 2010/10/20 13:55:37 eva Exp $ EAPI="2" inherit gnome2 DESCRIPTION="Desktop note-taking application" -HOMEPAGE="http://www.gnome.org/" +HOMEPAGE="http://live.gnome.org/Gnote" LICENSE="GPL-3" SLOT="0" @@ -52,3 +52,8 @@ src_prepare() { sed 's/-DG.*_DISABLE_DEPRECATED//g' -i libtomboy/Makefile.am \ libtomboy/Makefile.in || die "sed failed" } + +src_install() { + gnome2_src_install + find -name "${D}" -name "*.la" -delete || die "la file removal failed" +} |