summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2009-10-12 20:34:18 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2009-10-12 20:34:18 +0000
commit0ecd3aaeb31a7add79591f9a8add351a398402ca (patch)
treefb5048bde0c15e0a8423d10e340c18ecd030d2db /dev-cpp/libgnomecanvasmm
parentClean up old revisions. (diff)
downloadgentoo-2-0ecd3aaeb31a7add79591f9a8add351a398402ca.tar.gz
gentoo-2-0ecd3aaeb31a7add79591f9a8add351a398402ca.tar.bz2
gentoo-2-0ecd3aaeb31a7add79591f9a8add351a398402ca.zip
Clean up old revisions.
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Diffstat (limited to 'dev-cpp/libgnomecanvasmm')
-rw-r--r--dev-cpp/libgnomecanvasmm/ChangeLog6
-rw-r--r--dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.23.1.ebuild52
2 files changed, 5 insertions, 53 deletions
diff --git a/dev-cpp/libgnomecanvasmm/ChangeLog b/dev-cpp/libgnomecanvasmm/ChangeLog
index 050c6929263b..98592949c74a 100644
--- a/dev-cpp/libgnomecanvasmm/ChangeLog
+++ b/dev-cpp/libgnomecanvasmm/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-cpp/libgnomecanvasmm
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v 1.69 2009/05/10 22:24:48 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v 1.70 2009/10/12 20:34:18 eva Exp $
+
+ 12 Oct 2009; Gilles Dartiguelongue <eva@gentoo.org
+ -libgnomecanvasmm-2.23.1.ebuild:
+ Clean up old revisions.
*libgnomecanvasmm-2.26.0 (10 May 2009)
diff --git a/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.23.1.ebuild b/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.23.1.ebuild
deleted file mode 100644
index b7474efab23d..000000000000
--- a/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.23.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.23.1.ebuild,v 1.1 2008/11/17 22:49:20 eva Exp $
-
-inherit gnome2
-
-DESCRIPTION="C++ bindings for libgnomecanvas"
-HOMEPAGE="http://www.gtkmm.org"
-
-LICENSE="LGPL-2.1"
-SLOT="2.6"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE="doc examples"
-
-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_unpack() {
- gnome2_src_unpack
-
- if ! use examples; then
- # don't waste time building the examples
- sed -i 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' Makefile.in || \
- die "sed Makefile.in failed"
- fi
-}
-
-src_compile() {
- gnome2_src_compile
-
- if use doc; then
- cd "${S}/docs/reference"
- make all || die "failed to build API docs"
- fi
-}
-
-src_install() {
- gnome2_src_install
-
- if use doc ; then
- dohtml -r docs/reference/html/*
- fi
-
- if use examples; then
- cp -R examples "${D}/usr/share/doc/${PF}"
- fi
-}