Index: head/x11-wm/pekwm/Makefile =================================================================== --- head/x11-wm/pekwm/Makefile (revision 536020) +++ head/x11-wm/pekwm/Makefile (revision 536021) @@ -1,35 +1,33 @@ # Created by: anders@hack.org # $FreeBSD$ PORTNAME= pekwm -PORTVERSION= 0.1.17 -PORTREVISION= 4 +DISTVERSIONPREFIX= release- +DISTVERSION= 0.1.17 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= x11-wm -MASTER_SITES= https://pekwm.org/projects/3/files/ MAINTAINER= natbsd@instinctive.eu COMMENT= Light, Unobtrusive, and configurable windowmanager -BROKEN= unfetchable -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2020-05-05 - LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libpng.so:graphics/png -USES= compiler gmake iconv:wchar_t jpeg localbase pkgconfig \ - tar:bzip2 xorg -USE_XORG= xft xpm x11 sm ice xext +USES= autoreconf compiler gmake iconv:wchar_t jpeg \ + localbase pkgconfig tar:bzip2 xorg +USE_XORG= xft xpm x11 sm ice xext xinerama xrandr +USE_GITHUB= yes +GH_ACCOUNT= pekdon GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-shape --enable-xinerama --enable-xrandr \ --enable-xft --enable-image-xpm --enable-image-jpeg \ --enable-image-png --disable-debug \ --disable-pedantic CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}} CXXFLAGS_clang= -Wno-c++11-narrowing LDFLAGS+= ${ICONV_LIB} .include Index: head/x11-wm/pekwm/distinfo =================================================================== --- head/x11-wm/pekwm/distinfo (revision 536020) +++ head/x11-wm/pekwm/distinfo (revision 536021) @@ -1,2 +1,3 @@ -SHA256 (pekwm-0.1.17.tar.bz2) = 8a1fd3bf9f38e8c7bb2b2864c090f986b60cec2281ecf1bba462d120fb327d00 -SIZE (pekwm-0.1.17.tar.bz2) = 405742 +TIMESTAMP = 1585563189 +SHA256 (pekdon-pekwm-release-0.1.17_GH0.tar.gz) = 7b5a07a377494588e95d68b87a3f4d823f813cb29053618bfad691a00cd8afb6 +SIZE (pekdon-pekwm-release-0.1.17_GH0.tar.gz) = 429100 Index: head/x11-wm/pekwm/files/patch-data__scripts__pekwm_screenshot.sh =================================================================== --- head/x11-wm/pekwm/files/patch-data__scripts__pekwm_screenshot.sh (revision 536020) +++ head/x11-wm/pekwm/files/patch-data__scripts__pekwm_screenshot.sh (revision 536021) @@ -1,66 +1,66 @@ ---- ./data/scripts/pekwm_screenshot.sh.orig 2013-05-26 14:01:18.000000000 +0200 -+++ ./data/scripts/pekwm_screenshot.sh 2013-06-25 13:38:36.617834517 +0200 +--- data/scripts/pekwm_screenshot.sh.orig 2013-05-24 19:24:23 UTC ++++ data/scripts/pekwm_screenshot.sh @@ -1,30 +1,30 @@ -#!/usr/bin/env bash +#!/bin/sh # # Copyright © 2013 the pekwm development team # -function screenshot_scrot +screenshot_scrot() { scrot -z "$1" } -function screenshot_xwd_netpbm +screenshot_xwd_netpbm() { xwd -root | xwdtopnm 2>/dev/null | pnmtopng > "$1" } -function screenshot_imagemagick +screenshot_imagemagick() { import -window root "$1" } -function is_in_path +is_in_path() { which $1 >/dev/null 2>&1 return $? } -function detect_command +detect_command() { is_in_path "scrot" if test $? -eq 0; then -@@ -45,7 +45,7 @@ +@@ -45,7 +45,7 @@ function detect_command fi } -function usage +usage() { echo "usage: pekwm_screenshot.sh [-c scrot|netpbm|magick] [-d delay] [-o output.png]" echo "" -@@ -61,7 +61,7 @@ +@@ -61,7 +61,7 @@ function usage exit 0 } -function usage_command +usage_command() { echo "Unable to find any supported commands for taking screenshots" echo "" -@@ -74,7 +74,7 @@ +@@ -74,7 +74,7 @@ function usage_command exit 1 } -function main +main() { # Initialize for strict mode command=""