diff options
author | Mart Raudsepp <leio@gentoo.org> | 2007-10-12 08:25:33 +0000 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2007-10-12 08:25:33 +0000 |
commit | 0d63c4f904335e898ec49a00c4aecba0633b6856 (patch) | |
tree | d9448f92880d077841692f1707402cf6fbfd4523 /dev-cpp | |
parent | stable x86, security bug 195571 (diff) | |
download | gentoo-2-0d63c4f904335e898ec49a00c4aecba0633b6856.tar.gz gentoo-2-0d63c4f904335e898ec49a00c4aecba0633b6856.tar.bz2 gentoo-2-0d63c4f904335e898ec49a00c4aecba0633b6856.zip |
Remove old versions and SLOT for bug 159995. Also quote ${D} in the remaining version for bonus points
(Portage version: 2.1.3.12)
Diffstat (limited to 'dev-cpp')
8 files changed, 8 insertions, 217 deletions
diff --git a/dev-cpp/libgnomecanvasmm/ChangeLog b/dev-cpp/libgnomecanvasmm/ChangeLog index f76ff8d6031d..0a0ac47f2fd9 100644 --- a/dev-cpp/libgnomecanvasmm/ChangeLog +++ b/dev-cpp/libgnomecanvasmm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-cpp/libgnomecanvasmm # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v 1.58 2007/10/06 05:36:03 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v 1.59 2007/10/12 08:25:32 leio Exp $ + + 12 Oct 2007; Mart Raudsepp <leio@gentoo.org> + -files/2.0.1-gcc3.4-after-cvs.patch, -files/2.0.1-gcc3.4-to-cvs.patch, + -libgnomecanvasmm-2.0.1.ebuild, -libgnomecanvasmm-2.12.0.ebuild: + Remove old versions and SLOT for bug 159995 06 Oct 2007; Tom Gall <tgall@gentoo.org> libgnomecanvasmm-2.16.0.ebuild: stable on ppc64 bug #188838 diff --git a/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-after-cvs.patch b/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-after-cvs.patch deleted file mode 100644 index 0bd9f26983cd..000000000000 --- a/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-after-cvs.patch +++ /dev/null @@ -1,80 +0,0 @@ -Index: ChangeLog -=================================================================== -RCS file: /cvs/gnome/gnomemm/libgnomecanvasmm/ChangeLog,v -retrieving revision 1.55.2.2 -diff -u -p -r1.55.2.2 ChangeLog ---- ChangeLog 2 May 2004 10:06:31 -0000 1.55.2.2 -+++ ChangeLog 11 Jul 2004 18:05:21 -0000 -@@ -1,3 +1,7 @@ -+2004-07-11 Ed Catmur <ed@catmur.co.uk> -+ -+ * examples/canvas_events/canvas_events.cc: use named enum, for gcc 3.4 -+ - 2004-05-01 Takashi Takekawa <takekawa@users.sourceforge.jp> - - * libgnomecanvas/libgnomecanvas.[h,cc] (GNOMEMM_PROPERTY, -Index: examples/canvas_events/canvas_events.cc -=================================================================== -RCS file: /cvs/gnome/gnomemm/libgnomecanvasmm/examples/canvas_events/canvas_events.cc,v -retrieving revision 1.1 -diff -u -p -r1.1 canvas_events.cc ---- examples/canvas_events/canvas_events.cc 9 Dec 2002 09:41:19 -0000 1.1 -+++ examples/canvas_events/canvas_events.cc 11 Jul 2004 18:05:21 -0000 -@@ -14,7 +14,7 @@ - - guint32 etime = 0; - guint status = 0; --enum -+enum someEnum - { - CE = 0, - CEA = 1, -@@ -42,12 +42,12 @@ public: - virtual ~CanvasExample(); - - protected: -- void on_event_explorer_notify(GdkEvent* e, guint caller); -- void on_button_event_stub_notify(GdkEventButton* e, guint caller); -- bool on_button_event_stub(GdkEventButton* e, guint caller); -+ void on_event_explorer_notify(GdkEvent* e, someEnum caller); -+ void on_button_event_stub_notify(GdkEventButton* e, someEnum caller); -+ bool on_button_event_stub(GdkEventButton* e, someEnum caller); - - private: -- bool on_event_explorer(GdkEvent* e, guint caller); -+ bool on_event_explorer(GdkEvent* e, someEnum caller); - Gnome::Canvas::Group m_canvasgroup; - }; - -@@ -89,7 +89,7 @@ CanvasExample::~CanvasExample() - } - - bool --CanvasExample::on_event_explorer(GdkEvent* e, guint caller) -+CanvasExample::on_event_explorer(GdkEvent* e, someEnum caller) - { - GdkEventButton* b; - // Ignore all but button-press events: -@@ -133,19 +133,19 @@ CanvasExample::on_event_explorer(GdkEven - } - - void --CanvasExample::on_event_explorer_notify(GdkEvent* e, guint caller) -+CanvasExample::on_event_explorer_notify(GdkEvent* e, someEnum caller) - { - std::cerr << "on_event_explorer_notify" << std::endl; - } - - bool --CanvasExample::on_button_event_stub(GdkEventButton* b, guint caller) -+CanvasExample::on_button_event_stub(GdkEventButton* b, someEnum caller) - { - return on_event_explorer((GdkEvent *) b, caller); - } - - void --CanvasExample::on_button_event_stub_notify(GdkEventButton* b, guint caller) -+CanvasExample::on_button_event_stub_notify(GdkEventButton* b, someEnum caller) - { - std::cerr << "on_button_event_stub_notify" << std::endl; - } diff --git a/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-to-cvs.patch b/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-to-cvs.patch deleted file mode 100644 index 01ed843eb709..000000000000 --- a/dev-cpp/libgnomecanvasmm/files/2.0.1-gcc3.4-to-cvs.patch +++ /dev/null @@ -1,42 +0,0 @@ ---- libgnomecanvas/src/line.hg 2004/07/09 08:38:56 1.1 -+++ libgnomecanvas/src/line.hg 2004/07/09 08:40:31 -@@ -115,7 +115,7 @@ namespace Glib - { - - template <> --class Glib::Value<Gnome::Canvas::Points> : public Glib::Value_Boxed<Gnome::Canvas::Points> -+class Value<Gnome::Canvas::Points> : public Value_Boxed<Gnome::Canvas::Points> - { - public: - static GType value_type() G_GNUC_CONST; ---- libgnomecanvas/libgnomecanvasmm/line.h 2004/07/09 08:42:09 1.1 -+++ libgnomecanvas/libgnomecanvasmm/line.h 2004/07/09 08:42:34 -@@ -286,7 +286,7 @@ namespace Glib - { - - template <> --class Glib::Value<Gnome::Canvas::Points> : public Glib::Value_Boxed<Gnome::Canvas::Points> -+class Value<Gnome::Canvas::Points> : public Value_Boxed<Gnome::Canvas::Points> - { - public: - static GType value_type() G_GNUC_CONST; ---- ChangeLog 11 Jul 2004 18:10:49 -0000 -+++ ChangeLog 2 May 2004 10:06:31 -0000 1.55.2.2 -@@ -1,3 +1,17 @@ -+2004-05-01 Takashi Takekawa <takekawa@users.sourceforge.jp> -+ -+ * libgnomecanvas/libgnomecanvas.[h,cc] (GNOMEMM_PROPERTY, -+ GNOMEMM_PROPERTY_IMPL): fixed doubled '>' when T is a template class, -+ for the Intel compiler. -+ * libgnomecanvas/src/line.hg: deleted unnecessary namespace -+ qualification, for the Intel compiler. -+ -+2003-12-21 Eric Bourque <ericb@computer.org> -+ * libgnomecanvasmm.spec.in: fixed dependency to gtkmm2 instead of gtkmm -+ -+2003-09-25 Eric Bourque <ericb@computer.org> -+ * libgnomecanvasmm.spec.in: updated for libgnomecanvasmm-2.0 -+ - 2.0.1: - - 2003-08-22 Murray Cumming <murrayc@usa.net> diff --git a/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.0.1 b/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.0.1 deleted file mode 100644 index 00d3374386df..000000000000 --- a/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.0.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 bf05e2d85c0e10aa29dc6d451a52b3bf libgnomecanvasmm-2.0.1.tar.gz 421895 -RMD160 408623b22c68f1c2e26001c4b67ba0948acb2265 libgnomecanvasmm-2.0.1.tar.gz 421895 -SHA256 001a7d1b5978131bdce4b532b52df89064dac7d31fcb9d9903c1960bf0d2798d libgnomecanvasmm-2.0.1.tar.gz 421895 diff --git a/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.12.0 b/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.12.0 deleted file mode 100644 index 0956ae3ef739..000000000000 --- a/dev-cpp/libgnomecanvasmm/files/digest-libgnomecanvasmm-2.12.0 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 b05bba03433745043ef0c781020d4738 libgnomecanvasmm-2.12.0.tar.bz2 353153 -RMD160 4ab7c4c4f6bc24c5decbe6858453c6c5fdd58d71 libgnomecanvasmm-2.12.0.tar.bz2 353153 -SHA256 830622e3d0f8cbeeed3c1aeb8ec0d399505edc319f97233f3c4a6088acea3c80 libgnomecanvasmm-2.12.0.tar.bz2 353153 diff --git a/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.0.1.ebuild b/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.0.1.ebuild deleted file mode 100644 index 581def99b258..000000000000 --- a/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.0.1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.0.1.ebuild,v 1.21 2005/05/18 11:59:38 corsair Exp $ - -inherit eutils gnome2 - -DESCRIPTION="C++ bindings for libgnomecanvas" -HOMEPAGE="http://gtkmm.sourceforge.net/" -SRC_URI="mirror://sourceforge/gtkmm/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="2" -KEYWORDS="x86 ppc sparc hppa amd64 ppc64" -IUSE="" - -RDEPEND=">=gnome-base/libgnomecanvas-2 - =dev-cpp/gtkmm-2.2*" - -DEPEND=">=dev-util/pkgconfig-0.12.0 - ${RDEPEND}" - -DOCS="AUTHORS ChangeLog NEWS README TODO INSTALL" - -src_unpack() { - unpack ${A} - cd ${S}; epatch ${FILESDIR}/2.0.1-gcc3.4-to-cvs.patch - cd ${S}; epatch ${FILESDIR}/2.0.1-gcc3.4-after-cvs.patch -} - -src_compile() { - if useq amd64 || useq ppc64; then - aclocal -I scripts - automake - autoconf - libtoolize --copy --force - fi - - gnome2_src_compile -} diff --git a/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.12.0.ebuild b/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.12.0.ebuild deleted file mode 100644 index 52c816438c75..000000000000 --- a/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.12.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.12.0.ebuild,v 1.12 2006/07/15 03:25:34 vapier Exp $ - -inherit gnome2 - -DESCRIPTION="C++ bindings for libgnomecanvas" -HOMEPAGE="http://gtkmm.sourceforge.net/" - -LICENSE="LGPL-2.1" -SLOT="2.6" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86" -IUSE="doc" - -RDEPEND=">=gnome-base/libgnomecanvas-2.6 - >=dev-cpp/gtkmm-2.4" -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.12.0 - doc? ( app-doc/doxygen )" - -DOCS="AUTHORS ChangeLog NEWS README TODO INSTALL" - -src_compile() { - if useq amd64; then - libtoolize --copy --force - aclocal -I scripts - autoconf - automake -c -f - fi - - gnome2_src_compile - - if use doc ; then - einfo "Building API documentation" - cd docs/reference - emake || die "failed to build API docs" - fi -} - -src_install() { - gnome2_src_install - - if use doc ; then - cd docs/reference - dohtml -r html/* - fi -} diff --git a/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.16.0.ebuild b/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.16.0.ebuild index e01d506753bd..44d47d64a7f6 100644 --- a/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.16.0.ebuild +++ b/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.16.0.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/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.16.0.ebuild,v 1.11 2007/10/06 05:36:03 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.16.0.ebuild,v 1.12 2007/10/12 08:25:32 leio Exp $ inherit gnome2 @@ -47,6 +47,6 @@ src_install() { fi if use examples; then - cp -R examples ${D}/usr/share/doc/${PF} + cp -R examples "${D}/usr/share/doc/${PF}" fi } |