summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2014-11-13 11:54:15 +0000
committerPacho Ramos <pacho@gentoo.org>2014-11-13 11:54:15 +0000
commit4a31f3910317b6d04988bc1219013635facc2d49 (patch)
treeb19a83ead84639fd5adb05afd32dbe63fadcfe1e /gnome-extra/gnome-swallow/files
parentDrop package due bug #508854 (diff)
downloadgentoo-2-4a31f3910317b6d04988bc1219013635facc2d49.tar.gz
gentoo-2-4a31f3910317b6d04988bc1219013635facc2d49.tar.bz2
gentoo-2-4a31f3910317b6d04988bc1219013635facc2d49.zip
Drop package due bug #508854
Diffstat (limited to 'gnome-extra/gnome-swallow/files')
-rw-r--r--gnome-extra/gnome-swallow/files/gnome-swallow-1.2-as-needed.patch48
-rw-r--r--gnome-extra/gnome-swallow/files/gnome-swallow-1.2-libgnomeui-flags.patch39
-rw-r--r--gnome-extra/gnome-swallow/files/gnome-swallow-1.2-qa-warning.patch19
3 files changed, 0 insertions, 106 deletions
diff --git a/gnome-extra/gnome-swallow/files/gnome-swallow-1.2-as-needed.patch b/gnome-extra/gnome-swallow/files/gnome-swallow-1.2-as-needed.patch
deleted file mode 100644
index 13ea1a1e27ba..000000000000
--- a/gnome-extra/gnome-swallow/files/gnome-swallow-1.2-as-needed.patch
+++ /dev/null
@@ -1,48 +0,0 @@
---- a/configure.ac 2009-01-31 20:18:50.000000000 +0100
-+++ b/configure.ac 2009-01-31 20:20:55.000000000 +0100
-@@ -7,19 +7,10 @@
- AC_LANG(C)
- AC_PROG_CC
-
--AC_PATH_PROG(PKG_CONFIG, pkg-config, , )
--
--if test -z "$PKG_CONFIG"; then
-- AC_MSG_ERROR([pkg-config is not installed. I will not be able to find the GNOME headers.])
--fi
--
--if ! $PKG_CONFIG --exists libpanelapplet-2.0; then
-- AC_MSG_ERROR([pkg-config does not know about libpanelapplet-2.0.
--Do you have the development packages for the GNOME 2.0 Panel Applet library installed?
--(the Debian package is 'libpanel-applet2-dev')])
--fi
--
--AC_SUBST(PKG_CONFIG)
-+PKG_PROG_PKG_CONFIG
-+PKG_CHECK_MODULES(PANEL, [libpanelapplet-2.0])
-+AC_SUBST(PANEL_CFLAGS)
-+AC_SUBST(PANEL_LIBS)
-
- AC_CONFIG_FILES([Makefile])
--AC_OUTPUT
-\ Pas de fin de ligne à la fin du fichier.
-+AC_OUTPUT
---- a/Makefile.am 2009-01-31 20:21:02.000000000 +0100
-+++ b/Makefile.am 2009-01-31 20:21:30.000000000 +0100
-@@ -1,15 +1,14 @@
- paneldir = $(prefix)/lib/gnome-panel
- serversdir = $(prefix)/lib/bonobo/servers
--docdir = $(prefix)/share/doc/gnome-swallow
-
- dist_doc_DATA = README
- dist_servers_DATA = GNOME_Swallow.server
-
- panel_PROGRAMS = gnome_swallow
-
--INCLUDES = `@PKG_CONFIG@ --cflags libpanelapplet-2.0`
-+INCLUDES = ${PANEL_CFLAGS}
-
- gnome_swallow_SOURCES = gnome-swallow.c
--gnome_swallow_LDFLAGS = `@PKG_CONFIG@ --libs libpanelapplet-2.0`
-+gnome_swallow_LDADD = ${PANEL_LIBS}
-
- EXTRA_DIST = debian/dirs debian/control debian/changelog debian/copyright debian/install debian/rules
diff --git a/gnome-extra/gnome-swallow/files/gnome-swallow-1.2-libgnomeui-flags.patch b/gnome-extra/gnome-swallow/files/gnome-swallow-1.2-libgnomeui-flags.patch
deleted file mode 100644
index 31d88a037493..000000000000
--- a/gnome-extra/gnome-swallow/files/gnome-swallow-1.2-libgnomeui-flags.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Fix compilation error bug #279143, due to missing libgnomeui CFLAGS.
-Fix another bug error during the link phase due to missing libgnomeui LIBS.
-
- Makefile.am | 4 ++--
- configure.ac | 3 +++
- 2 files changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index 3de3b2b..0f18f44 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -6,9 +6,9 @@ dist_servers_DATA = GNOME_Swallow.server
-
- panel_PROGRAMS = gnome_swallow
-
--INCLUDES = ${PANEL_CFLAGS}
-+INCLUDES = ${PANEL_CFLAGS} ${LIBGNOMEUI_CFLAGS}
-
- gnome_swallow_SOURCES = gnome-swallow.c
--gnome_swallow_LDADD = ${PANEL_LIBS}
-+gnome_swallow_LDADD = ${PANEL_LIBS} ${LIBGNOMEUI_LIBS}
-
- EXTRA_DIST = debian/dirs debian/control debian/changelog debian/copyright debian/install debian/rules
-diff --git a/configure.ac b/configure.ac
-index c20f63e..d9bccb5 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -9,8 +9,11 @@ AC_PROG_CC
-
- PKG_PROG_PKG_CONFIG
- PKG_CHECK_MODULES(PANEL, [libpanelapplet-2.0])
-+PKG_CHECK_MODULES(LIBGNOMEUI, [libgnomeui-2.0])
- AC_SUBST(PANEL_CFLAGS)
- AC_SUBST(PANEL_LIBS)
-+AC_SUBST(LIBGNOMEUI_CFLAGS)
-+AC_SUBST(LIBGNOMEUI_LIBS)
-
- AC_CONFIG_FILES([Makefile])
- AC_OUTPUT
diff --git a/gnome-extra/gnome-swallow/files/gnome-swallow-1.2-qa-warning.patch b/gnome-extra/gnome-swallow/files/gnome-swallow-1.2-qa-warning.patch
deleted file mode 100644
index 6e71ae0a4ec8..000000000000
--- a/gnome-extra/gnome-swallow/files/gnome-swallow-1.2-qa-warning.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Fix two qa warnings due to "implicit declaration of function _exit()" which
-we can find into "unistd.h", and "implicit declaration of function exit()" which
-we can find into "stdlib.h"
-
- gnome-swallow.c | 2 ++
- 1 files changed, 2 insertions(+), 0 deletions(-)
-
-diff --git a/gnome-swallow.c b/gnome-swallow.c
-index 143ef1c..cb4d38a 100644
---- a/gnome-swallow.c
-+++ b/gnome-swallow.c
-@@ -1,5 +1,7 @@
- #include <string.h>
- #include <stdio.h>
-+#include <stdlib.h>
-+#include <unistd.h>
- #include <signal.h>
- #include <sys/wait.h>
-