summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-09-17 15:35:29 +0200
committerPacho Ramos <pacho@gentoo.org>2016-09-17 15:35:29 +0200
commitc5aba822f9c33818a59e15de88ff720a25cc8479 (patch)
treea9202ee318124d8720007612374615bbfd1a0018 /x11-libs
parentmedia-video/subtitleeditor: Version bump (diff)
downloadgentoo-c5aba822f9c33818a59e15de88ff720a25cc8479.tar.gz
gentoo-c5aba822f9c33818a59e15de88ff720a25cc8479.tar.bz2
gentoo-c5aba822f9c33818a59e15de88ff720a25cc8479.zip
x11-libs/gtk+extra: Drop old
Package-Manager: portage-2.3.0
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/gtk+extra/Manifest1
-rw-r--r--x11-libs/gtk+extra/files/gtk+extra-3.0.1-fix-configure.patch173
-rw-r--r--x11-libs/gtk+extra/files/gtk+extra-3.0.1-gunicode.h.patch14
-rw-r--r--x11-libs/gtk+extra/gtk+extra-3.0.5.ebuild39
4 files changed, 0 insertions, 227 deletions
diff --git a/x11-libs/gtk+extra/Manifest b/x11-libs/gtk+extra/Manifest
index 332162dc95d0..4ab9b0acd174 100644
--- a/x11-libs/gtk+extra/Manifest
+++ b/x11-libs/gtk+extra/Manifest
@@ -1,2 +1 @@
-DIST gtkextra-3.0.5.tar.gz 1465561 SHA256 9cab6c5d6b792eb828d17cec2b9c1baba2ef57f789a290464afab80b53969e65 SHA512 6bd6732dc06648ee3267ec1f5d64b01e0be4bfdc3fff914adaca73a563d28639b825e2881b6c6ed1ae08e605878d3aa92c308dc596a24ae8d803d0be93a56db9 WHIRLPOOL 430e43c7d5c257a229efe6e5d282576cacf476653cbf62ccbd0a2525fb271acaaf197db793666573b76f39a42bf82c6bcd2f7cf49ce1264ea15e0f94e7eaeb61
DIST gtkextra-3.2.0.tar.gz 1496537 SHA256 f24478ae8b863864708827f18ad7d72fac99ad013ef1396f9f1c277e9be0953b SHA512 545758f50e5f5c0dfdae8ba9bf7a3cd2dff8489c9868c219c2f53770297641f5a36b442dc8f12951b9c39cf87401665560cb1a846ad6cb97b29f45ee12f5e33f WHIRLPOOL 7aa97146194dd312df8520a06f3efc9efe6a30743b51e8c5a461c47f9c192ef443026b39f090ff33a116e86648fd340e955e4e6abee6fc72ce0ff9391664d219
diff --git a/x11-libs/gtk+extra/files/gtk+extra-3.0.1-fix-configure.patch b/x11-libs/gtk+extra/files/gtk+extra-3.0.1-fix-configure.patch
deleted file mode 100644
index 1aa60d27aa75..000000000000
--- a/x11-libs/gtk+extra/files/gtk+extra-3.0.1-fix-configure.patch
+++ /dev/null
@@ -1,173 +0,0 @@
---- configure.in 2011/05/01 09:17:38 1.14
-+++ configure.in 2011/11/26 10:39:19 1.15
-@@ -1,4 +1,13 @@
- # Process this file with autoconf to produce a configure script.
-+#
-+# Help for autoconf:
-+# - http://www.linuxselfhelp.com/gnu/autoconf/html_chapter/autoconf_toc.html
-+# Option Syntax:
-+# - http://www.linuxselfhelp.com/gnu/autoconf/html_chapter/autoconf_12.html
-+# Printing Messages:
-+# - http://www.linuxselfhelp.com/gnu/autoconf/html_chapter/autoconf_7.html
-+#
-+
- AC_INIT(gtkextra,3.0.1)
- AC_LANG([C])
-
-@@ -109,12 +118,15 @@
- AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes)
-
- # --enable-debug option
--dnl Check if we have enable debug support.
--AC_MSG_CHECKING(whether to enable debugging)
--debug_default="no"
-+
-+AC_MSG_CHECKING([whether to enable debugging])
-+
- AC_ARG_ENABLE(debug,
-- [ --enable-debug=[no/yes] turn on debugging [default=no]],,
-- enable_debug=$debug_default)
-+ AC_HELP_STRING(
-+ [--enable-debug=[no/yes]],
-+ [turn on debugging [default=no]]),
-+ ,
-+ enable_debug=no)
-
- if test "x$enable_debug" = "xyes"; then
- test "$cflags_set" = set || CFLAGS="$CFLAGS -g -DDEBUG"
-@@ -237,31 +249,57 @@
-
- # --enable-man option
-
-+AC_MSG_CHECKING([whether to enable man pages])
-+
- AC_ARG_ENABLE(man,
-- [AC_HELP_STRING([--enable-man],
-- [regenerate man pages from Docbook [default=no]])],enable_man=yes,
-- enable_man=no)
-+ AC_HELP_STRING(
-+ [--enable-man],
-+ [regenerate man pages from Docbook [default=no]])],
-+ ,
-+ enable_man=no)
-
- if test "${enable_man}" != no; then
-- dnl
-- dnl Check for xsltproc
-- dnl
-- AC_PATH_PROG([XSLTPROC], [xsltproc])
-- if test -z "$XSLTPROC"; then
-- enable_man=no
-- fi
-+ AC_MSG_RESULT(yes)
-
-- dnl check for DocBook DTD and stylesheets in the local catalog.
-- JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.1.2//EN],
-- [DocBook XML DTD V4.1.2],,enable_man=no)
-- JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
-- [DocBook XSL Stylesheets],,enable_man=no)
-+ AC_PATH_PROG([XSLTPROC], [xsltproc])
-+ if test -z "$XSLTPROC"; then
-+ enable_man=no
-+ fi
-+
-+ if test "$enable_man" = "no" ; then
-+ AC_MSG_WARN([xsltproc is missing - disabling man pages])
-+ fi
-+
-+ #check for DocBook DTD and stylesheets in the local catalog
-+
-+ JH_CHECK_XML_CATALOG(
-+ [-//OASIS//DTD DocBook XML V4.1.2//EN],
-+ [DocBook XML DTD V4.1.2],
-+ ,
-+ enable_man=no)
-+
-+ if test "$enable_man" = "no" ; then
-+ AC_MSG_WARN([missing DocBook DTD - disabling man pages])
-+ fi
-+
-+ JH_CHECK_XML_CATALOG(
-+ [http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
-+ [DocBook XSL Stylesheets],
-+ ,
-+ enable_man=no)
-+
-+ if test "$enable_man" = "no" ; then
-+ AC_MSG_WARN([missing DocBook XML stylesheets - disabling man pages])
-+ fi
-+else
-+ AC_MSG_RESULT(no)
- fi
- AM_CONDITIONAL(ENABLE_MAN, test x$enable_man != xno)
-
--dnl
--dnl Start of pkg-config checks
--dnl
-+
-+##################################################
-+# Start of pkg-config checks
-+##################################################
-
- PKG_PROG_PKG_CONFIG
-
-@@ -275,13 +313,18 @@
-
- # --enable-glade option
-
-+AC_MSG_CHECKING([whether to enable glade integration])
-+
- AC_ARG_ENABLE(glade,
-- [AC_HELP_STRING([--enable-glade],
-- [build glade integration files [default=no]])],
-- enable_glade=yes,
-+ AC_HELP_STRING(
-+ [--enable-glade],
-+ [build glade integration files [default=no]]),
-+ ,
- enable_glade=no)
-
- if test "x$enable_glade" != xno; then
-+ AC_MSG_RESULT(yes)
-+
- PKG_CHECK_MODULES([GLADE], [gladeui-1.0 >= 3.6])
-
- AC_SUBST(GLADE_CATALOG_DIR, `$PKG_CONFIG --variable=catalogdir gladeui-1.0`)
-@@ -290,24 +333,32 @@
-
- #You must define GETTEXT_PACKAGE before including gi18n-lib.h
- GETTEXT_PACKAGE=AC_PACKAGE_NAME
-- AC_SUBST(GETTEXT_PACKAGE)
-- AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Name of the gettext package.])
-+ AC_SUBST(GETTEXT_PACKAGE)
-+ AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
-+ [Name of the gettext package.])
- AM_GLIB_GNU_GETTEXT
-+else
-+ AC_MSG_RESULT(no)
- fi
- AM_CONDITIONAL(ENABLE_GLADE, test x$enable_glade != xno)
-
-
- # --enable-introspection
-
-+AC_MSG_CHECKING([whether to enable gobject-introspection])
-+
- AC_ARG_ENABLE(introspection,
-- [AC_HELP_STRING([--enable-introspection],
-- [build gobject-introspection [default=no]])],
-- enable_introspection=yes,
-+ AC_HELP_STRING(
-+ [--enable-introspection],
-+ [build gobject-introspection [default=no]]),
-+ ,
- enable_introspection=no)
-
- if test "x$enable_introspection" != xno; then
-+ AC_MSG_RESULT(yes)
- GOBJECT_INTROSPECTION_CHECK([0.6.14])
- else
-+ AC_MSG_RESULT(no)
- AM_CONDITIONAL(HAVE_INTROSPECTION, test 1=0)
- fi
- AM_CONDITIONAL(ENABLE_INTROSPECTION, test x$enable_introspection != xno)
diff --git a/x11-libs/gtk+extra/files/gtk+extra-3.0.1-gunicode.h.patch b/x11-libs/gtk+extra/files/gtk+extra-3.0.1-gunicode.h.patch
deleted file mode 100644
index 63017be44fec..000000000000
--- a/x11-libs/gtk+extra/files/gtk+extra-3.0.1-gunicode.h.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-2011-11-16 Fredy Paquet <mailbox AT opag.ch>
- * fixed include problem with glib V2.31.0 (only glib.h can be included directly)
-
---- gtkextra/gtkcharsel.c 2011/09/10 11:44:53 1.10
-+++ gtkextra/gtkcharsel.c 2011/11/26 11:05:59 1.11
-@@ -34,7 +34,7 @@
-
-
- #include <gtk/gtk.h>
--#include <glib/gunicode.h>
-+#include <glib.h>
-
- #include <string.h>
- #include "gtkextra-compat.h"
diff --git a/x11-libs/gtk+extra/gtk+extra-3.0.5.ebuild b/x11-libs/gtk+extra/gtk+extra-3.0.5.ebuild
deleted file mode 100644
index 86f7fd2bb210..000000000000
--- a/x11-libs/gtk+extra/gtk+extra-3.0.5.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-GCONF_DEBUG="no"
-
-inherit gnome2
-
-DESCRIPTION="Useful Additional GTK+ widgets"
-HOMEPAGE="http://gtkextra.sourceforge.net"
-SRC_URI="mirror://sourceforge/gtkextra/gtkextra-${PV}.tar.gz"
-
-LICENSE="FDL-1.1 LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="+introspection static-libs test"
-
-RDEPEND="
- >=x11-libs/gtk+-2.12.0:2
- dev-libs/glib:2
- introspection? ( >=dev-libs/gobject-introspection-0.6.14 )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
-"
-# dev-libs/gobject-introspection-common needed for eautoreconf
-
-S="${WORKDIR}/gtkextra-${PV}"
-
-src_configure() {
- gnome2_src_configure \
- --enable-glade=no \
- --disable-man \
- $(use_enable introspection) \
- $(use_enable static-libs static) \
- $(use_enable test tests) \
- --with-html-dir=/usr/share/doc/${PF}/html
-}