summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-12-18 15:42:06 +0100
committerBernard Cafarelli <voyageur@gentoo.org>2020-12-19 11:38:46 +0100
commitfdb6a259d5f084b000c4d2d222c97d73a013c743 (patch)
tree78cd79fc5c3d6b7328c5caeccf40ff03f9389d68 /x11-plugins/wmbutton
parentdev-libs/jsoncpp: marked ~ppc-macos (diff)
downloadgentoo-fdb6a259d5f084b000c4d2d222c97d73a013c743.tar.gz
gentoo-fdb6a259d5f084b000c4d2d222c97d73a013c743.tar.bz2
gentoo-fdb6a259d5f084b000c4d2d222c97d73a013c743.zip
x11-plugins/wmbutton: remove unused patch(es)
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'x11-plugins/wmbutton')
-rw-r--r--x11-plugins/wmbutton/files/sample.wmbutton43
-rw-r--r--x11-plugins/wmbutton/files/wmbutton-0.7.0-Makefile.patch26
2 files changed, 0 insertions, 69 deletions
diff --git a/x11-plugins/wmbutton/files/sample.wmbutton b/x11-plugins/wmbutton/files/sample.wmbutton
deleted file mode 100644
index a4177a24e081..000000000000
--- a/x11-plugins/wmbutton/files/sample.wmbutton
+++ /dev/null
@@ -1,43 +0,0 @@
-# Buttons are numbered as follows
-# Left 1 2 3 Middle 11 12 13 Right 21 22 23
-# button 4 5 6 button 14 15 16 button 24 25 26
-# 7 8 9 17 18 19 27 28 29
-#
-
-1 mozilla &
-11 firefox &
-21 opera &
-
-2 evolution &
-12 mozilla -mail &
-22 gftp &
-
-3 xterm -T 'xterm' &
-13 Eterm -T 'Eterm' &
-23 aterm -T 'Aterm' &
-
-4 psi &
-14 gaim &
-24 kadu &
-
-5 gentoo &
-15 xterm -T 'Midnight Commander' -e mc &
-25 xffm &
-
-6 ooffice &
-16 gnumeric &
-26 acroread &
-
-7 xmms &
-17 gmplayer &
-27 audacity &
-
-8 gimp-2.0 &
-18 sodipodi &
-28 kpaint &
-
-9 kghostview &
-19 ggv &
-29 xpdf &
-# The above don't need to be in any particular order.
-# Repeated entries should be ignored
diff --git a/x11-plugins/wmbutton/files/wmbutton-0.7.0-Makefile.patch b/x11-plugins/wmbutton/files/wmbutton-0.7.0-Makefile.patch
deleted file mode 100644
index f9197842b44a..000000000000
--- a/x11-plugins/wmbutton/files/wmbutton-0.7.0-Makefile.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- Makefile.orig 2014-10-06 15:20:41.300883734 +0200
-+++ Makefile 2014-10-06 15:22:08.936939085 +0200
-@@ -1,6 +1,6 @@
- INCLUDES =-I/usr/include -I/usr/local/include
--LIBINC =-L/usr/X11R6/lib -L/usr/include/lib
- LIBS = -lX11 -lXpm -lXext
-+CC = gcc
-
- TARGET = wmbutton
- OBJECTS = wmbutton.o wmb_libs.o
-@@ -14,13 +14,11 @@
- INSTALL_PROGRAM = $(INSTALL) -p -o root -g root -m 755
- INSTALL_FILE = $(INSTALL) -p -o root -g root -m 644
-
--CFLAGS += -Wall -O2
--
- .c.o:
-- gcc -c ${CFLAGS} ${INCLUDES} $< -o $*.o
-+ ${CC} -c ${CFLAGS} ${INCLUDES} $< -o $*.o
-
- ${TARGET}: ${OBJECTS}
-- gcc -o ${TARGET} ${OBJECTS} ${LIBINC} ${LIBS}
-+ ${CC} ${LDFLAGS} ${OBJECTS} ${LIBS} -o ${TARGET}
-
- clean::
- for i in ${OBJECTS}; do if [ -e $$i ] ; then rm $$i; fi; done