summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2014-04-23 21:04:35 +0000
committerPacho Ramos <pacho@gentoo.org>2014-04-23 21:04:35 +0000
commitfcdd3892636a772f34e6f95e55b3a789962d652c (patch)
tree9ea3edbd61ca95ba41d1776ca7dc709e0a5c36d0 /dev-cpp
parentDrop old (diff)
downloadgentoo-2-fcdd3892636a772f34e6f95e55b3a789962d652c.tar.gz
gentoo-2-fcdd3892636a772f34e6f95e55b3a789962d652c.tar.bz2
gentoo-2-fcdd3892636a772f34e6f95e55b3a789962d652c.zip
Drop old
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/gtkmm/ChangeLog7
-rw-r--r--dev-cpp/gtkmm/files/gtkmm-3.4.0-automagic-gdk-targets.patch37
-rw-r--r--dev-cpp/gtkmm/gtkmm-2.24.2.ebuild54
-rw-r--r--dev-cpp/gtkmm/gtkmm-3.4.2.ebuild63
-rw-r--r--dev-cpp/gtkmm/gtkmm-3.6.0.ebuild62
-rw-r--r--dev-cpp/gtkmm/gtkmm-3.8.1.ebuild62
6 files changed, 6 insertions, 279 deletions
diff --git a/dev-cpp/gtkmm/ChangeLog b/dev-cpp/gtkmm/ChangeLog
index 8da191eaac9f..bd868b3e0728 100644
--- a/dev-cpp/gtkmm/ChangeLog
+++ b/dev-cpp/gtkmm/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-cpp/gtkmm
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkmm/ChangeLog,v 1.278 2014/04/21 10:28:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkmm/ChangeLog,v 1.279 2014/04/23 21:04:34 pacho Exp $
+
+ 23 Apr 2014; Pacho Ramos <pacho@gentoo.org>
+ -files/gtkmm-3.4.0-automagic-gdk-targets.patch, -gtkmm-2.24.2.ebuild,
+ -gtkmm-3.4.2.ebuild, -gtkmm-3.6.0.ebuild, -gtkmm-3.8.1.ebuild:
+ Drop old
21 Apr 2014; Agostino Sarubbo <ago@gentoo.org> gtkmm-3.10.1.ebuild:
Stable for arm, wrt bug #507568
diff --git a/dev-cpp/gtkmm/files/gtkmm-3.4.0-automagic-gdk-targets.patch b/dev-cpp/gtkmm/files/gtkmm-3.4.0-automagic-gdk-targets.patch
deleted file mode 100644
index 2aa5a41d1993..000000000000
--- a/dev-cpp/gtkmm/files/gtkmm-3.4.0-automagic-gdk-targets.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From f86a02f31783acb1be29daf748f8385e8a66f113 Mon Sep 17 00:00:00 2001
-From: Alexandre Rostovtsev <tetromino@gentoo.org>
-Date: Wed, 11 Apr 2012 23:37:19 -0400
-Subject: [PATCH] Make list of gdk targets non-automagic
-
-Otherwise, it is difficult e.g. to build a wayland-only gtkmm on a
-build machine that has gdk with both x11 and wayland targets installed.
-The argument to --with-gdk-targets is comma-delimeted to make quoting
-easier in automated build scripts.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=673963
----
- configure.ac | 8 +++++++-
- 1 files changed, 7 insertions(+), 1 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 5c85b7e..141f39a 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -52,7 +52,13 @@ gdk_target_quartz=no
- gdk_target_x11=no
- gdk_target_wayland=no
- gdk_target_broadway=no
--for target in `$PKG_CONFIG --variable=targets gtk+-3.0`; do
-+AC_ARG_WITH(gdk_targets, AS_HELP_STRING([--with-gdk-targets@<:@=TARGETS@:>@], [comma-delimeted list of gdk targets (default is "", meaning auto-detect)]), ,[with_gdk_targets=])
-+if test -z "$with_gdk_targets"; then
-+ gdk_targets=`$PKG_CONFIG --variable=targets gtk+-3.0`
-+else
-+ gdk_targets=`echo $with_gdk_targets | tr , ' '`
-+fi
-+for target in $gdk_targets; do
- case "$target" in
- win32)
- gdk_target_win32=yes
---
-1.7.8.5
-
diff --git a/dev-cpp/gtkmm/gtkmm-2.24.2.ebuild b/dev-cpp/gtkmm/gtkmm-2.24.2.ebuild
deleted file mode 100644
index 99f18ec1737c..000000000000
--- a/dev-cpp/gtkmm/gtkmm-2.24.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkmm/gtkmm-2.24.2.ebuild,v 1.10 2012/12/09 22:23:58 tetromino Exp $
-
-EAPI="5"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-
-DESCRIPTION="C++ interface for GTK+"
-HOMEPAGE="http://www.gtkmm.org"
-
-LICENSE="LGPL-2.1+"
-SLOT="2.4"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
-IUSE="doc examples test"
-
-RDEPEND=">=dev-cpp/glibmm-2.24:2
- >=x11-libs/gtk+-2.24:2
- >=dev-cpp/atkmm-2.22.2
- >=dev-cpp/cairomm-1.2.2
- >=dev-cpp/pangomm-2.27.1:1.4
- dev-libs/libsigc++:2"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? (
- media-gfx/graphviz
- dev-libs/libxslt
- app-doc/doxygen )"
-
-pkg_setup() {
- DOCS="AUTHORS ChangeLog PORTING NEWS README"
- G2CONF="${G2CONF}
- --enable-api-atkmm
- --disable-maintainer-mode
- $(use_enable doc documentation)"
-}
-
-src_prepare() {
- gnome2_src_prepare
-
- if ! use test; then
- # don't waste time building tests
- sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
- || die "sed 1 failed"
- fi
-
- if ! use examples; then
- # don't waste time building tests
- sed 's/^\(SUBDIRS =.*\)demos\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
- || die "sed 2 failed"
- fi
-}
diff --git a/dev-cpp/gtkmm/gtkmm-3.4.2.ebuild b/dev-cpp/gtkmm/gtkmm-3.4.2.ebuild
deleted file mode 100644
index d4deb983a1a5..000000000000
--- a/dev-cpp/gtkmm/gtkmm-3.4.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkmm/gtkmm-3.4.2.ebuild,v 1.12 2013/04/09 16:41:13 ago Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-
-DESCRIPTION="C++ interface for GTK+"
-HOMEPAGE="http://www.gtkmm.org"
-
-LICENSE="LGPL-2.1+"
-SLOT="3.0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="aqua doc examples test wayland +X"
-REQUIRED_USE="|| ( aqua wayland X )"
-
-RDEPEND="
- >=dev-cpp/glibmm-2.32.0:2
- >=x11-libs/gtk+-3.4.0:3[aqua?,wayland?,X?]
- >=x11-libs/gdk-pixbuf-2.22.1:2
- >=dev-cpp/atkmm-2.22.2
- >=dev-cpp/cairomm-1.9.2.2
- >=dev-cpp/pangomm-2.27.1:1.4
- dev-libs/libsigc++:2"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? (
- media-gfx/graphviz
- dev-libs/libxslt
- app-doc/doxygen )"
-
-# dev-cpp/mm-common"
-# eautoreconf needs mm-common
-
-pkg_setup() {
- DOCS="AUTHORS ChangeLog PORTING NEWS README"
- targets=
- G2CONF="${G2CONF}
- --enable-api-atkmm
- $(use_enable doc documentation)
- $(use_enable aqua quartz-backend)
- $(use_enable wayland wayland-backend)
- $(use_enable X x11-backend)"
-}
-
-src_prepare() {
- if ! use test; then
- # don't waste time building tests
- sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
- || die "sed 1 failed"
- fi
-
- if ! use examples; then
- # don't waste time building tests
- sed 's/^\(SUBDIRS =.*\)demos\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
- || die "sed 2 failed"
- fi
-
- gnome2_src_prepare
-}
diff --git a/dev-cpp/gtkmm/gtkmm-3.6.0.ebuild b/dev-cpp/gtkmm/gtkmm-3.6.0.ebuild
deleted file mode 100644
index 0690084d497e..000000000000
--- a/dev-cpp/gtkmm/gtkmm-3.6.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkmm/gtkmm-3.6.0.ebuild,v 1.6 2013/10/24 13:18:33 jer Exp $
-
-EAPI="5"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-
-DESCRIPTION="C++ interface for GTK+"
-HOMEPAGE="http://www.gtkmm.org"
-
-LICENSE="LGPL-2.1"
-SLOT="3.0"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="aqua doc examples test wayland +X"
-REQUIRED_USE="|| ( aqua wayland X )"
-
-RDEPEND="
- >=dev-cpp/glibmm-2.34:2
- >=x11-libs/gtk+-3.5.12:3[aqua?,wayland?,X?]
- >=x11-libs/gdk-pixbuf-2.22.1:2
- >=dev-cpp/atkmm-2.22.2
- >=dev-cpp/cairomm-1.9.2.2
- >=dev-cpp/pangomm-2.27.1:1.4
- dev-libs/libsigc++:2
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? (
- media-gfx/graphviz
- dev-libs/libxslt
- app-doc/doxygen )
-"
-# dev-cpp/mm-common"
-# eautoreconf needs mm-common
-
-src_prepare() {
- DOCS="AUTHORS ChangeLog PORTING NEWS README"
- targets=
- G2CONF="${G2CONF}
- --enable-api-atkmm
- $(use_enable doc documentation)
- $(use_enable aqua quartz-backend)
- $(use_enable wayland wayland-backend)
- $(use_enable X x11-backend)"
-
- if ! use test; then
- # don't waste time building tests
- sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
- || die "sed 1 failed"
- fi
-
- if ! use examples; then
- # don't waste time building tests
- sed 's/^\(SUBDIRS =.*\)demos\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
- || die "sed 2 failed"
- fi
-
- gnome2_src_prepare
-}
diff --git a/dev-cpp/gtkmm/gtkmm-3.8.1.ebuild b/dev-cpp/gtkmm/gtkmm-3.8.1.ebuild
deleted file mode 100644
index 1d6fcf09d4bc..000000000000
--- a/dev-cpp/gtkmm/gtkmm-3.8.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkmm/gtkmm-3.8.1.ebuild,v 1.4 2013/12/22 15:42:14 jer Exp $
-
-EAPI="5"
-GCONF_DEBUG="no"
-
-inherit gnome2
-
-DESCRIPTION="C++ interface for GTK+"
-HOMEPAGE="http://www.gtkmm.org"
-
-LICENSE="LGPL-2.1"
-SLOT="3.0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="aqua doc examples test wayland +X"
-REQUIRED_USE="|| ( aqua wayland X )"
-
-RDEPEND="
- >=dev-cpp/glibmm-2.36.2:2
- >=x11-libs/gtk+-3.8.0:3[aqua?,wayland?,X?]
- >=x11-libs/gdk-pixbuf-2.22.1:2
- >=dev-cpp/atkmm-2.22.2
- >=dev-cpp/cairomm-1.9.2.2
- >=dev-cpp/pangomm-2.27.1:1.4
- dev-libs/libsigc++:2
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- doc? (
- media-gfx/graphviz
- dev-libs/libxslt
- app-doc/doxygen )
-"
-# dev-cpp/mm-common"
-# eautoreconf needs mm-common
-
-src_prepare() {
- if ! use test; then
- # don't waste time building tests
- sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
- || die "sed 1 failed"
- fi
-
- if ! use examples; then
- # don't waste time building tests
- sed 's/^\(SUBDIRS =.*\)demos\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
- || die "sed 2 failed"
- fi
-
- gnome2_src_prepare
-}
-
-src_configure() {
- DOCS="AUTHORS ChangeLog PORTING NEWS README"
- gnome2_src_configure \
- --enable-api-atkmm \
- $(use_enable doc documentation) \
- $(use_enable aqua quartz-backend) \
- $(use_enable wayland wayland-backend) \
- $(use_enable X x11-backend)
-}