aboutsummaryrefslogtreecommitdiff
path: root/sysutils/byobu
diff options
context:
space:
mode:
authorKevin Bowling <kbowling@FreeBSD.org>2021-04-19 00:40:04 +0000
committerKevin Bowling <kbowling@FreeBSD.org>2021-04-19 00:41:52 +0000
commitee6b45a8e5625eb92c7af126f2b00fdbe21f3079 (patch)
tree046f5a6dc94f75b08d40c0d7a2c0e2f8ba9f29cb /sysutils/byobu
parenta6d0c2f4e2167b4da1607f0b018a0e3985b7e729 (diff)
downloadports-ee6b45a8e5625eb92c7af126f2b00fdbe21f3079.tar.gz
ports-ee6b45a8e5625eb92c7af126f2b00fdbe21f3079.zip
sysutils/byobu: fix color definitions
PR: 255190 Approved by: Connor Sheridan <cws@cybersecu.red> (maintainer)
Diffstat (limited to 'sysutils/byobu')
-rw-r--r--sysutils/byobu/Makefile4
-rw-r--r--sysutils/byobu/files/patch-usr_lib_byobu_include_colors20
2 files changed, 22 insertions, 2 deletions
diff --git a/sysutils/byobu/Makefile b/sysutils/byobu/Makefile
index 4a17708893a2..c38384a267a2 100644
--- a/sysutils/byobu/Makefile
+++ b/sysutils/byobu/Makefile
@@ -2,12 +2,12 @@
PORTNAME= byobu
PORTVERSION= 5.133
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= http://launchpad.net/${PORTNAME}/trunk/${PORTVERSION}/+download/
DISTNAME= ${PORTNAME}_${PORTVERSION}.orig
-MAINTAINER= jcoffman@xsecure.io
+MAINTAINER= cws@cybersecu.red
COMMENT= Profile and configuration utilities for GNU Screen and/or tmux
LICENSE= GPLv3
diff --git a/sysutils/byobu/files/patch-usr_lib_byobu_include_colors b/sysutils/byobu/files/patch-usr_lib_byobu_include_colors
new file mode 100644
index 000000000000..12f3a3783fb7
--- /dev/null
+++ b/sysutils/byobu/files/patch-usr_lib_byobu_include_colors
@@ -0,0 +1,20 @@
+--- usr/lib/byobu/include/colors.orig 2021-04-18 17:01:25 UTC
++++ usr/lib/byobu/include/colors
+@@ -22,13 +22,13 @@
+ # Inspired by http://design.ubuntu.com/brand/colour-palette
+
+ # Cool grey
+-export BYOBU_DARK="\#333333"
++export BYOBU_DARK="#333333"
+
+ # Warm white
+-export BYOBU_LIGHT="\#EEEEEE"
++export BYOBU_LIGHT="#EEEEEE"
+
+ # Aubergine
+-export BYOBU_ACCENT="\#75507B"
++export BYOBU_ACCENT="#75507B"
+
+ # Ubuntu orange
+-export BYOBU_HIGHLIGHT="\#DD4814"
++export BYOBU_HIGHLIGHT="#DD4814"