commit:     8acdf0a35e2a37fc19fa1155b3ff9e27a3cc086c
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat Dec 12 16:35:14 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Dec 12 16:35:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8acdf0a3

x11-wm/aewm: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/18613
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 x11-wm/aewm/files/aewm-1.3.12-gentoo.patch | 63 ------------------------------
 1 file changed, 63 deletions(-)

diff --git a/x11-wm/aewm/files/aewm-1.3.12-gentoo.patch 
b/x11-wm/aewm/files/aewm-1.3.12-gentoo.patch
deleted file mode 100644
index 6cc02f4560d..00000000000
--- a/x11-wm/aewm/files/aewm-1.3.12-gentoo.patch
+++ /dev/null
@@ -1,63 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -6,12 +6,12 @@
- XROOT = /usr/X11R6
- 
- # Uncomment to enable Shape extension support
--#OPT_WMFLAGS += -DSHAPE
-+OPT_WMFLAGS += -DSHAPE
- #OPT_WMLIB += -lXext
- 
- # Uncomment to add Xft support
--#OPT_WMFLAGS += -DXFT `pkg-config --cflags xft`
--#OPT_WMLIB += `pkg-config --libs xft` -lXext
-+OPT_WMFLAGS += -DXFT $(shell $(PKG_CONFIG) --cflags xft xext)
-+OPT_WMLIB += $(shell $(PKG_CONFIG) --libs xft xext)
- 
- # Uncomment for debugging (abandon all hope, ye who enter here)
- #OPT_WMFLAGS += -DDEBUG
-@@ -46,7 +46,7 @@
- 
- X11FLAGS = -I$(XROOT)/include
- WMFLAGS = $(X11FLAGS) $(OPT_WMFLAGS)
--GTKFLAGS = `pkg-config --cflags gtk+-2.0`
-+GTKFLAGS = $(shell $(PKG_CONFIG) --cflags gtk+-2.0)
- 
- $(PLAINOBJ): %.o: %.c
-       $(CC) $(CFLAGS) -c $< -o $@
-@@ -60,28 +60,28 @@
- $(GTKOBJ): %.o: %.c
-       $(CC) $(CFLAGS) $(GTKFLAGS) -c $< -o $@
- 
--X11LIB = -L$(XROOT)/lib -lX11
-+X11LIB = $(shell $(PKG_CONFIG) --libs x11)
- WMLIB = $(X11LIB) $(OPT_WMLIB)
--GTKLIB = `pkg-config --libs gtk+-2.0`
-+GTKLIB = $(shell $(PKG_CONFIG) --libs gtk+-2.0)
- 
- $(PLAINBIN): %: %.o
--      $(CC) $^ -o $@
-+      $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@
- 
- $(X11BIN): %: %.o
--      $(CC) $^ $(X11LIB) -o $@
-+      $(CC) $(CFLAGS) $(LDFLAGS) $^ $(X11LIB) -o $@
- 
- $(WMBIN): %:
--      $(CC) $^ $(WMLIB) -o $@
-+      $(CC) $(CFLAGS) $(LDFLAGS) $^ $(WMLIB) -o $@
- 
- $(GTKBIN): %: %.o
--      $(CC) $^ $(GTKLIB) -o $@
-+      $(CC) $(CFLAGS) $(LDFLAGS) $^ $(GTKLIB) $(X11LIB) -o $@
- 
- AEMAN = aewm.1x aeclients.1x
- AERC = aewmrc clientsrc
- 
- install: all
-       mkdir -p $(BINDIR) $(MANDIR) $(CFGDIR)
--      install -s $(ALLBIN) $(BINDIR)
-+      install $(ALLBIN) $(BINDIR)
-       for i in $(AEMAN); do \
-           install -m 644 doc/$$i $(MANDIR); \
-           gzip -9 $(MANDIR)/$$i; \

Reply via email to