diff options
author | zeising <zeising@FreeBSD.org> | 2012-07-04 22:57:11 +0800 |
---|---|---|
committer | zeising <zeising@FreeBSD.org> | 2012-07-04 22:57:11 +0800 |
commit | d5eb0eec100121d099425ed03a1b27bf7c7ccc9e (patch) | |
tree | a3939b72f649281391d0570f647ad2552fca21cc /x11-wm/spectrwm | |
parent | 6db7aa5c396f75a0828a14fa068cdc102de60861 (diff) | |
download | freebsd-ports-gnome-d5eb0eec100121d099425ed03a1b27bf7c7ccc9e.tar.gz freebsd-ports-gnome-d5eb0eec100121d099425ed03a1b27bf7c7ccc9e.tar.zst freebsd-ports-gnome-d5eb0eec100121d099425ed03a1b27bf7c7ccc9e.zip |
Update to version 1.1.1
Changelog:
* Fix status bar flicker by double-buffering the output.
* Add horizontal_flip and vertical_flip layout options.
* Kill references before focusing on a new window.
* Add new options to change focus behavior on window open and close.
* Increase workspace hard limit to 22.
* Bug and backawards compatiblity fixes.
Approved by: kwm (mentor)
Diffstat (limited to 'x11-wm/spectrwm')
-rw-r--r-- | x11-wm/spectrwm/Makefile | 13 | ||||
-rw-r--r-- | x11-wm/spectrwm/distinfo | 4 | ||||
-rw-r--r-- | x11-wm/spectrwm/files/startscrotwm | 10 |
3 files changed, 9 insertions, 18 deletions
diff --git a/x11-wm/spectrwm/Makefile b/x11-wm/spectrwm/Makefile index 828358d25f0a..df5772fb9bcf 100644 --- a/x11-wm/spectrwm/Makefile +++ b/x11-wm/spectrwm/Makefile @@ -6,7 +6,7 @@ # PORTNAME= spectrwm -PORTVERSION= 1.0.0 +PORTVERSION= 1.1.1 CATEGORIES= x11-wm MASTER_SITES= https://opensource.conformal.com/snapshots/${PORTNAME}/ EXTRACT_SUFX= .tgz @@ -16,14 +16,15 @@ COMMENT= A small, dynamic tiling window manager for X11 LICENSE= ISCL -OPTIONS= DMENU_BOTTOM "dmenu at screen bottom (instead of top)" Off +OPTIONS_DEFINE= DMENU_BOTTOM +DMENU_BOTTOM_DESC= dmenu at screen bottom (instead of top) -.include <bsd.port.pre.mk> +.include <bsd.port.options.mk> USE_XORG= x11 xproto xrandr xt xtst MAN1= spectrwm.1 -USE_LDCONFIG=yes +USE_LDCONFIG= yes PORTEXAMPLES= spectrwm_cz.conf \ spectrwm_es.conf \ spectrwm_fr.conf \ @@ -33,7 +34,7 @@ PORTEXAMPLES= spectrwm_cz.conf \ RUN_DEPENDS+= dmenu:${PORTSDIR}/x11/dmenu -.if defined(WITH_DMENU_BOTTOM) +.if ${PORT_OPTIONS:MDMENU_BOTTOM} EXTRA_PATCHES+= ${FILESDIR}/spawn_menu_atbottom.patch .endif @@ -64,4 +65,4 @@ do-install: .endfor .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/x11-wm/spectrwm/distinfo b/x11-wm/spectrwm/distinfo index b962cce2165b..1aa54e3d4beb 100644 --- a/x11-wm/spectrwm/distinfo +++ b/x11-wm/spectrwm/distinfo @@ -1,2 +1,2 @@ -SHA256 (spectrwm-1.0.0.tgz) = 4cfd7ed7c61fdfc8c108e5efec4513ee14b32baa8d2b095465c62e7bfdd65998 -SIZE (spectrwm-1.0.0.tgz) = 88112 +SHA256 (spectrwm-1.1.1.tgz) = 36daf5fb55d8215abbd64a3f98681a5c6a4a9141d08ec5efc57e33786619357f +SIZE (spectrwm-1.1.1.tgz) = 93045 diff --git a/x11-wm/spectrwm/files/startscrotwm b/x11-wm/spectrwm/files/startscrotwm deleted file mode 100644 index 34721b34da5b..000000000000 --- a/x11-wm/spectrwm/files/startscrotwm +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -if [ -z "${DISPLAY}" ] -then - echo "$0: Starting X server" - exec xinit $( which scrotwm ) -else - echo "$0: X server already running on display ${DISPLAY}" - $( which scrotwm ) -fi |