svn commit: r460344 - in head/x11: . wmutils-opt wmutils-opt/files
Yuri Victorovich
yuri at FreeBSD.org
Mon Jan 29 21:49:35 UTC 2018
Author: yuri
Date: Mon Jan 29 21:49:33 2018
New Revision: 460344
URL: https://svnweb.freebsd.org/changeset/ports/460344
Log:
New port: x11/wmutils-opt: Optional addons to wmutils
See details here: https://github.com/wmutils/opt
PR: 225142
Submitted by: Dmitri Goutnik <dg at syrec.org>
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D14112
Added:
head/x11/wmutils-opt/
head/x11/wmutils-opt/Makefile (contents, props changed)
head/x11/wmutils-opt/distinfo (contents, props changed)
head/x11/wmutils-opt/files/
head/x11/wmutils-opt/files/patch-Makefile (contents, props changed)
head/x11/wmutils-opt/files/patch-config.mk (contents, props changed)
head/x11/wmutils-opt/pkg-descr (contents, props changed)
head/x11/wmutils-opt/pkg-plist (contents, props changed)
Modified:
head/x11/Makefile
Modified: head/x11/Makefile
==============================================================================
--- head/x11/Makefile Mon Jan 29 21:46:42 2018 (r460343)
+++ head/x11/Makefile Mon Jan 29 21:49:33 2018 (r460344)
@@ -352,6 +352,7 @@
SUBDIR += wmdrawer
SUBDIR += wmmatrix
SUBDIR += wmutils-core
+ SUBDIR += wmutils-opt
SUBDIR += wmxss
SUBDIR += workrave
SUBDIR += x11perf
Added: head/x11/wmutils-opt/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/x11/wmutils-opt/Makefile Mon Jan 29 21:49:33 2018 (r460344)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME= wmutils-opt
+DISTVERSIONPREFIX= v
+DISTVERSION= 1.0
+CATEGORIES= x11
+
+MAINTAINER= dg at syrec.org
+COMMENT= Optional addons to wmutils
+
+LICENSE= ISCL
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+USES= localbase:ldflags
+USE_XORG= xcb
+
+USE_GITHUB= yes
+GH_ACCOUNT= wmutils
+GH_PROJECT= opt
+
+post-install:
+ @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
+
+.include <bsd.port.mk>
Added: head/x11/wmutils-opt/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/x11/wmutils-opt/distinfo Mon Jan 29 21:49:33 2018 (r460344)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1515855504
+SHA256 (wmutils-opt-v1.0_GH0.tar.gz) = f30bb409bdcfa6720015dbca5356e04d4359cca3800a39948822152a94bcd055
+SIZE (wmutils-opt-v1.0_GH0.tar.gz) = 7959
Added: head/x11/wmutils-opt/files/patch-Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/x11/wmutils-opt/files/patch-Makefile Mon Jan 29 21:49:33 2018 (r460344)
@@ -0,0 +1,17 @@
+--- Makefile.orig 2016-10-04 08:01:36 UTC
++++ Makefile
+@@ -22,12 +22,10 @@ manpages:
+ $(OBJ): $(HDR) util.o
+
+ .o:
+- @echo "LD $@"
+- @$(LD) $< -o $@ $(LDFLAGS) util.o
++ $(LD) $< -o $@ $(LDFLAGS) util.o
+
+ .c.o:
+- @echo "CC $<"
+- @$(CC) -c $< -o $@ $(CFLAGS)
++ $(CC) -c $< -o $@ $(CFLAGS)
+
+ install: $(BIN)
+ mkdir -p $(DESTDIR)$(PREFIX)/bin/
Added: head/x11/wmutils-opt/files/patch-config.mk
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/x11/wmutils-opt/files/patch-config.mk Mon Jan 29 21:49:33 2018 (r460344)
@@ -0,0 +1,15 @@
+--- config.mk.orig 2016-10-04 08:01:36 UTC
++++ config.mk
+@@ -1,8 +1,8 @@
+-PREFIX = /usr
+-MANPREFIX = $(PREFIX)/share/man
++PREFIX ?= /usr/local
++MANPREFIX = $(PREFIX)/man
+
+ CC = cc
+ LD = $(CC)
+
+-CFLAGS += -std=c99 -pedantic -Wall -Os
+-LDFLAGS += -lxcb
++CFLAGS := -std=c99 -pedantic -Wall $(CFLAGS)
++LDFLAGS := -lxcb $(LDFLAGS)
Added: head/x11/wmutils-opt/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/x11/wmutils-opt/pkg-descr Mon Jan 29 21:49:33 2018 (r460344)
@@ -0,0 +1,5 @@
+wmutils-opt is a set of optional utilities meant to accompany wmutils-core.
+This package includes tools to move/resize windows with the mouse, control
+window borders, and view a window's events and name.
+
+WWW: https://github.com/wmutils/opt
Added: head/x11/wmutils-opt/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/x11/wmutils-opt/pkg-plist Mon Jan 29 21:49:33 2018 (r460344)
@@ -0,0 +1,8 @@
+bin/chwb2
+bin/wew
+bin/wname
+bin/xmmv
+man/man1/chwb2.1.gz
+man/man1/wew.1.gz
+man/man1/wname.1.gz
+man/man1/xmmv.1.gz
More information about the svn-ports-all
mailing list