gnome-base/libgnomeprintui: Remove last-rited package
authorMart Raudsepp <leio@gentoo.org>
Thu, 16 Aug 2018 21:04:03 +0000 (00:04 +0300)
committerMart Raudsepp <leio@gentoo.org>
Thu, 16 Aug 2018 21:32:25 +0000 (00:32 +0300)
Bug: https://bugs.gentoo.org/352952

gnome-base/libgnomeprintui/Manifest [deleted file]
gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-adwaita-icon-theme.patch [deleted file]
gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-intl.patch [deleted file]
gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-orientation-for-preview.patch [deleted file]
gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-system-config-printer.patch [deleted file]
gnome-base/libgnomeprintui/libgnomeprintui-2.18.6-r2.ebuild [deleted file]
gnome-base/libgnomeprintui/metadata.xml [deleted file]
profiles/package.mask

diff --git a/gnome-base/libgnomeprintui/Manifest b/gnome-base/libgnomeprintui/Manifest
deleted file mode 100644 (file)
index c4f1df3..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST libgnomeprintui-2.18.6.tar.bz2 681125 BLAKE2B 2850749f0d41cada9ecc377ff1fad17d1d629094f423f012069790c5b5ec56c047668a8e2d703a11e8654046b1c8e06c075fb350e2d25e05a06622c3a2072efc SHA512 acf44fd8b273f5e48c9c7224647704c1d45a66c8fb7279414028506fd6b8941126636499793c825a767f2f731fcddce78ce750670969d5ff9236e9ff75dca002
diff --git a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-adwaita-icon-theme.patch b/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-adwaita-icon-theme.patch
deleted file mode 100644 (file)
index f1fc454..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -up ./configure.in.orig ./configure.in
---- ./configure.in.orig        2014-05-04 11:07:55.308844477 +0300
-+++ ./configure.in     2014-05-04 11:08:26.884571685 +0300
-@@ -64,7 +64,7 @@ PKG_CHECK_MODULES(LIBGNOMEPRINTUI, [
-       gtk+-2.0           >= 2.6.0
-       libgnomeprint-2.2  >= 2.12.1
-       libgnomecanvas-2.0 >= 1.117.0
--      gnome-icon-theme   >= 1.1.92
-+      adwaita-icon-theme >= 1.1.92
- ])
- AC_SUBST(LIBGNOMEPRINTUI_CFLAGS)
- AC_SUBST(LIBGNOMEPRINTUI_LIBS)
diff --git a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-intl.patch b/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-intl.patch
deleted file mode 100644 (file)
index db206e6..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
---- libgnomeprintui-2.18.6/libgnomeprintui/gpaui/Makefile.am~  2010-02-09 12:33:13.000000000 +0000
-+++ libgnomeprintui-2.18.6/libgnomeprintui/gpaui/Makefile.am   2015-11-03 23:16:49.625137517 +0000
-@@ -2,7 +2,6 @@
- INCLUDES = \
-       -I$(top_srcdir) \
--      -I$(top_srcdir)/intl \
-       -I$(top_srcdir)/libgnomeprintui \
-       -DWE_ARE_LIBGNOMEPRINT_INTERNALS \
-       $(LIBGNOMEPRINTUI_CFLAGS)       \
diff --git a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-orientation-for-preview.patch b/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-orientation-for-preview.patch
deleted file mode 100644 (file)
index 3a6aa63..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
---- ./libgnomeprintui/gnome-print-job-preview.c.orig   2012-02-23 22:48:42.000000000 +0600
-+++ ./libgnomeprintui/gnome-print-job-preview.c        2012-02-25 00:18:43.000000000 +0600
-@@ -152,6 +152,7 @@ 
-       GtkWidget *last;
-       GnomeCanvas *canvas;
-       GnomePrintConfig *config;
-+    guchar *paper_orientation_save;
-       guint current_page, current_offset;
-@@ -2187,6 +2188,19 @@ 
-       if (jp->config)
-               g_object_unref (G_OBJECT (jp->config));
-       jp->config = config;
-+    if( config ) {
-+        guchar *txt = gnome_print_config_get( jp->config, (const guchar*)GNOME_PRINT_KEY_PAGE_ORIENTATION );
-+        if( ( g_ascii_strcasecmp(( const gchar* )txt, "R90") == 0 ) ||
-+            ( g_ascii_strcasecmp(( const gchar* )txt, "R270") == 0 ) ) {
-+            jp->paper_orientation_save =
-+                gnome_print_config_get( jp->config, (const guchar*)GNOME_PRINT_KEY_PAPER_ORIENTATION );
-+            gnome_print_config_set( jp->config, (const guchar*)GNOME_PRINT_KEY_PAPER_ORIENTATION, txt );
-+            g_free ( txt );
-+        }
-+        else {
-+            jp->paper_orientation_save = NULL;
-+        }
-+    }
-       if (!jp->config)
-               return;
-       g_object_ref (G_OBJECT (jp->config));
-@@ -2389,6 +2403,13 @@ 
- {
-       GnomePrintJobPreview *jp = GNOME_PRINT_JOB_PREVIEW (object);
-+    if( jp->paper_orientation_save ) {
-+        gnome_print_config_set( jp->config, (const guchar*)GNOME_PRINT_KEY_PAPER_ORIENTATION,
-+                                jp->paper_orientation_save );
-+        g_free ( jp->paper_orientation_save );
-+        jp->paper_orientation_save = NULL;
-+    }
-+
-       gnome_print_job_preview_set_config (jp, NULL);
-       gnome_print_job_preview_set_job (jp, NULL);
diff --git a/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-system-config-printer.patch b/gnome-base/libgnomeprintui/files/libgnomeprintui-2.18.6-system-config-printer.patch
deleted file mode 100644 (file)
index 57e188c..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -p -up libgnomeprintui-2.18.3/libgnomeprintui/gnome-printer-selector.c.system-config-printer libgnomeprintui-2.18.3/libgnomeprintui/gnome-printer-selector.c
---- libgnomeprintui-2.18.3/libgnomeprintui/gnome-printer-selector.c.system-config-printer      2008-09-23 10:49:59.000000000 +0200
-+++ libgnomeprintui-2.18.3/libgnomeprintui/gnome-printer-selector.c    2008-09-23 10:50:47.000000000 +0200
-@@ -47,7 +47,7 @@
- #include "gpaui/gpa-transport-selector.h"
- #define GPS_PAD 4
--#define ADD_PRINTER_APP       "gnome-cups-add"
-+#define ADD_PRINTER_APP       "system-config-printer"
- static void gnome_printer_selector_class_init (GnomePrinterSelectorClass *klass);
- static void gnome_printer_selector_init (GObject *object);
diff --git a/gnome-base/libgnomeprintui/libgnomeprintui-2.18.6-r2.ebuild b/gnome-base/libgnomeprintui/libgnomeprintui-2.18.6-r2.ebuild
deleted file mode 100644 (file)
index ab335f9..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME_TARBALL_SUFFIX="bz2"
-
-inherit autotools gnome2 multilib-minimal
-
-DESCRIPTION="User interface libraries for gnome print"
-HOMEPAGE="https://www.gnome.org/"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="2.2"
-KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris"
-IUSE=""
-
-RDEPEND="
-       >=gnome-base/libgnomeprint-2.12.1[${MULTILIB_USEDEP}]
-       >=gnome-base/libgnomecanvas-1.117[${MULTILIB_USEDEP}]
-       >=x11-libs/gtk+-2.6:2[${MULTILIB_USEDEP}]
-       x11-themes/adwaita-icon-theme
-"
-DEPEND="${RDEPEND}
-       sys-devel/gettext
-       virtual/pkgconfig[${MULTILIB_USEDEP}]
-"
-
-src_prepare() {
-       # Patches from Mageia
-       eapply "${FILESDIR}"/${P}-adwaita-icon-theme.patch
-       eapply "${FILESDIR}"/${P}-intl.patch
-       eapply "${FILESDIR}"/${P}-orientation-for-preview.patch
-       eapply "${FILESDIR}"/${P}-system-config-printer.patch
-       eautoreconf
-       gnome2_src_prepare
-}
-
-multilib_src_configure() {
-       ECONF_SOURCE=${S} \
-       gnome2_src_configure \
-               --disable-static
-}
-
-multilib_src_install() {
-       gnome2_src_install
-}
diff --git a/gnome-base/libgnomeprintui/metadata.xml b/gnome-base/libgnomeprintui/metadata.xml
deleted file mode 100644 (file)
index 3998080..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-       <email>gnome@gentoo.org</email>
-       <name>Gentoo GNOME Desktop</name>
-</maintainer>
-</pkgmetadata>
index 57da48c9724126fe155c1466958347d420d03817..7d1aae0405fd028de960b2c0dd42c69aca1d8da0 100644 (file)
@@ -102,7 +102,6 @@ dev-python/django-celery
 # Obsolete early GNOME 2 era print libraries. Applications
 # use printing support found directly in x11-libs/gtk+ now.
 # Removal in 30 days. Bug #352952
-gnome-base/libgnomeprintui
 gnome-base/libgnomeprint
 
 # Mart Raudsepp <leio@gentoo.org> (16 Jul 2018)