View | Details | Raw Unified | Return to bug 225141 | Differences between
and this patch

Collapse All | Expand All

(-)x11/wmutils-core/Makefile (+28 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	wmutils-core
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	1.4
6
CATEGORIES=	x11
7
8
MAINTAINER=	dg@syrec.org
9
COMMENT=	Set of window manipulation tools
10
11
LICENSE=	ISCL
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
14
LIB_DEPENDS=	libxcb-util.so:x11/xcb-util
15
16
USES=		localbase:ldflags
17
USE_XORG=	x11 xcb
18
19
USE_GITHUB=	yes
20
GH_ACCOUNT=	wmutils
21
GH_PROJECT=	core
22
23
CONFLICTS=	wtf # games/wtf
24
25
post-install:
26
	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
27
28
.include <bsd.port.mk>
(-)x11/wmutils-core/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1515851719
2
SHA256 (wmutils-core-v1.4_GH0.tar.gz) = 44e16576b7f6e1f126c2cb249449ab7e10fd65289aff774ffaf27d2c15a7b2ba
3
SIZE (wmutils-core-v1.4_GH0.tar.gz) = 10333
(-)x11/wmutils-core/files/patch-Makefile (+17 lines)
Line 0 Link Here
1
--- Makefile.orig	2017-01-25 13:19:03 UTC
2
+++ Makefile
3
@@ -30,12 +30,10 @@ binutils: $(BIN)
4
 $(OBJ): $(HDR) util.o
5
 
6
 .o:
7
-	@echo "LD $@"
8
-	@$(LD) $< util.o -o $@ $(LDFLAGS)
9
+	$(LD) $< util.o -o $@ $(LDFLAGS)
10
 
11
 .c.o:
12
-	@echo "CC $<"
13
-	@$(CC) -c $< -o $@ $(CFLAGS)
14
+	$(CC) -c $< -o $@ $(CFLAGS)
15
 
16
 install: $(BIN)
17
 	mkdir -p $(DESTDIR)$(PREFIX)/bin/
(-)x11/wmutils-core/files/patch-config.mk (+15 lines)
Line 0 Link Here
1
--- config.mk.orig	2017-01-25 13:19:03 UTC
2
+++ config.mk
3
@@ -1,9 +1,9 @@
4
-PREFIX = /usr
5
+PREFIX ?= /usr/local
6
 MANPREFIX = $(PREFIX)/man
7
 
8
 CC      = cc
9
 LD      = $(CC)
10
 
11
-CFLAGS  = -std=c99 -pedantic -Wall -Os
12
-LDFLAGS = -lxcb -lxcb-util
13
+CFLAGS  := -std=c99 -pedantic -Wall $(CFLAGS)
14
+LDFLAGS := -lxcb -lxcb-util $(LDFLAGS)
15
 
(-)x11/wmutils-core/pkg-descr (+6 lines)
Line 0 Link Here
1
wmutils-core is a set of tools for X windows manipulation. Each tool only
2
has one purpose, to make it as flexible and reliable as possible. Included
3
tools allow window listing, moving, resizing, focusing, changing window
4
order and more.
5
6
WWW: https://github.com/wmutils/core
(-)x11/wmutils-core/pkg-plist (+27 lines)
Line 0 Link Here
1
bin/chwb
2
bin/chwso
3
bin/ignw
4
bin/killw
5
bin/lsw
6
bin/mapw
7
bin/pfw
8
bin/wattr
9
bin/wmp
10
bin/wmv
11
bin/wrs
12
bin/wtf
13
bin/wtp
14
man/man1/chwb.1.gz
15
man/man1/chwso.1.gz
16
man/man1/ignw.1.gz
17
man/man1/killw.1.gz
18
man/man1/lsw.1.gz
19
man/man1/mapw.1.gz
20
man/man1/pfw.1.gz
21
man/man1/wattr.1.gz
22
man/man1/wmp.1.gz
23
man/man1/wmutils.1.gz
24
man/man1/wmv.1.gz
25
man/man1/wrs.1.gz
26
man/man1/wtf.1.gz
27
man/man1/wtp.1.gz

Return to bug 225141