diff --git a/sysutils/byobu/Makefile b/sysutils/byobu/Makefile index 4a17708893a2..c38384a267a2 100644 --- a/sysutils/byobu/Makefile +++ b/sysutils/byobu/Makefile @@ -1,54 +1,54 @@ # Created by: Gea-Suan Lin 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 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= bash:shells/bash \ gsed:textproc/gsed USES= autoreconf python shebangfix ncurses:port SHEBANG_FILES= usr/lib/byobu/include/notify_osd \ usr/lib/byobu/include/config.py.in \ usr/lib/byobu/include/select-session.py WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} GNU_CONFIGURE= yes OPTIONS_DEFINE= DOCS NEWT OPTIONS_MULTI= BACKEND OPTIONS_MULTI_BACKEND= TMUX SCREEN OPTIONS_DEFAULT= DOCS NEWT TMUX NEWT_DESC= Python-based windowing toolkit (required for config menu) NEWT_LIB_DEPENDS= libnewt.so:devel/newt TMUX_DESC= Terminal Multiplexer (byobu default) TMUX_RUN_DEPENDS= tmux:sysutils/tmux SCREEN_DESC= Multi-screen window manager SCREEN_RUN_DEPENDS= screen:sysutils/screen NO_ARCH= yes post-patch: ${FIND} ${WRKSRC} -type f | ${XARGS} \ ${REINPLACE_CMD} \ -e "s@/bin/bash@${LOCALBASE}/bin/bash@" \ -e "s@/usr/bin/python@${PYTHON_CMD}@" ${REINPLACE_CMD} -e 's,@sysconfdir@/profile.d,$$(datadir)/@PACKAGE@,' \ ${WRKSRC}/etc/profile.d/Makefile.am .include 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"