diff options
author | 0mp <0mp@FreeBSD.org> | 2019-03-18 05:33:01 +0800 |
---|---|---|
committer | 0mp <0mp@FreeBSD.org> | 2019-03-18 05:33:01 +0800 |
commit | 22a813f566dae5f9b1e737f80812b51c97345b8a (patch) | |
tree | 217f9f5c69578ce07f4a7174a41a38befb4fec15 /x11-wm/dwm/files | |
parent | 472b1faf829750c62a5e7c150886ff77318c1a45 (diff) | |
download | freebsd-ports-gnome-22a813f566dae5f9b1e737f80812b51c97345b8a.tar.gz freebsd-ports-gnome-22a813f566dae5f9b1e737f80812b51c97345b8a.tar.zst freebsd-ports-gnome-22a813f566dae5f9b1e737f80812b51c97345b8a.zip |
x11-wm/dwm: Update to 6.2
- Clean up MASTER_SITES (remove outdated websites)
- Set FREETYPEINC (now required to build) and VERSION in MARK_ARGS
- Use DISTVERSION instead of PORTVERSION for consistency
- Define a simple do-test target so that we can quickly test if the binary
is at least not core dumping when started
- Improve the description of the VOLUMECONTROL option
- Replace config.mk patching with a post-configure target that makes the
port respect user's CFLAGS, CPPFLAGS and LDFLAGS
- Rewrite the post-extract target using make(1) if syntax instead of sh(1)
if syntax
New release announcement:
https://lists.suckless.org/dev/1902/33214.html
Reviewed by: mat
Approved by: mat (mentor)
Differential Revision: https://reviews.freebsd.org/D19416
Diffstat (limited to 'x11-wm/dwm/files')
-rw-r--r-- | x11-wm/dwm/files/patch-config.mk | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/x11-wm/dwm/files/patch-config.mk b/x11-wm/dwm/files/patch-config.mk deleted file mode 100644 index ef1fe2160438..000000000000 --- a/x11-wm/dwm/files/patch-config.mk +++ /dev/null @@ -1,17 +0,0 @@ ---- config.mk.orig 2015-11-08 22:39:37 UTC -+++ config.mk -@@ -25,10 +25,10 @@ INCS = -I${X11INC} -I${FREETYPEINC} - LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} - - # flags --CPPFLAGS = -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} --#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} --CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS} --LDFLAGS = -s ${LIBS} -+CPPFLAGS+= -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS} -+#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} -+CFLAGS+= -std=c99 -Wno-deprecated-declarations ${INCS} ${CPPFLAGS} -+LDFLAGS+= ${LIBS} - - # Solaris - #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" |