void-packages/srcpkgs/yeahwm/patches/fix-makefile.patch
Đoàn Trần Công Danh ad877a7e29 srcpkgs/y*: convert patches to -Np1
```sh
git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" |
while read template; do
	for p in ${template%/template}/patches/*; do
		sed -i '
			\,^[+-][+-][+-] /dev/null,b
			/^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b
			s,^[*][*][*] ,&a/,
			/^--- /{
				s,\(^--- \)\(./\)*,\1a/,
				s,[.-][Oo][Rr][Ii][Gg]\([	/]\),\1,
				s/[.-][Oo][Rr][Ii][Gg]$//
				s/[.]patched[.]\([^.]\)/.\1/
				h
			}
			/^+++ -/{
				g
				s/^--- a/+++ b/
				b
			}
			s,\(^+++ \)\(./\)*,\1b/,
		' "$p"
	done
	sed -i '/^patch_args=/d' $template
done
```
2021-06-20 13:17:29 +07:00

38 lines
1 KiB
Diff

Enable configurable CC and XROOT.
Add missing $(LIBS) to link and remove strip.
Add yeahwm.1 to install target.
--- a/Makefile 2004-11-21 19:11:04.000000000 +0100
+++ b/Makefile 2015-10-25 23:20:45.306617941 +0100
@@ -1,11 +1,11 @@
# If you don't use CC
-CC = gcc
+CC ?= gcc
# Edit this line if you don't want yeahwm to install under /usr.
# Note that $(DESTDIR) is used by the Debian build process.
prefix = $(DESTDIR)/usr
-XROOT = /usr/X11R6
+XROOT ?= /usr/X11R6
INCLUDES = -I$(XROOT)/include
LDPATH = -L$(XROOT)/lib
LIBS = -lX11
@@ -55,7 +55,6 @@
all: yeahwm
yeahwm: $(OBJS)
- $(CC) $(CFLAGS) $(OBJS) -o $@ $(LDFLAGS)
+ $(CC) $(CFLAGS) $(OBJS) -o $@ $(LDFLAGS) $(LIBS)
- strip yeahwm
allinone:
@@ -71,7 +71,7 @@
if [ -f yeahwm.exe ]; then mv yeahwm.exe yeahwm; fi
mkdir -p $(prefix)/bin $(prefix)/share/man/man1
install -s yeahwm $(prefix)/bin
- #install yeahwm.1 $(prefix)/share/man/man1
+ install yeahwm.1 $(prefix)/share/man/man1
#gzip -9 $(prefix)/share/man/man1/yeahwm.1
install: doinstall