summaryrefslogtreecommitdiff
path: root/opt/screen
diff options
context:
space:
mode:
authorrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
committerrawnix ports <ports@rawnix.org>2026-09-26 18:19:05 +0000
commitc82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch)
tree56d864b5a5c6c145edd96178ae219a8f90e191a6 /opt/screen
downloadports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'opt/screen')
-rw-r--r--opt/screen/.footprint31
-rw-r--r--opt/screen/.signature6
-rw-r--r--opt/screen/MAKEPKG40
3 files changed, 77 insertions, 0 deletions
diff --git a/opt/screen/.footprint b/opt/screen/.footprint
new file mode 100644
index 0000000..418a0b4
--- /dev/null
+++ b/opt/screen/.footprint
@@ -0,0 +1,31 @@
+drwxr-xr-x root/root etc/
+-rw-r--r-- root/root etc/screenrc
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/screen-5.0.2
+lrwxrwxrwx root/root usr/bin/screen -> screen-5.0.2
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/info/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/screen.1.gz
+drwxr-xr-x root/root usr/share/screen/
+drwxr-xr-x root/root usr/share/screen/utf8encodings/
+-rw-r--r-- root/root usr/share/screen/utf8encodings/01
+-rw-r--r-- root/root usr/share/screen/utf8encodings/02
+-rw-r--r-- root/root usr/share/screen/utf8encodings/03
+-rw-r--r-- root/root usr/share/screen/utf8encodings/04
+-rw-r--r-- root/root usr/share/screen/utf8encodings/18
+-rw-r--r-- root/root usr/share/screen/utf8encodings/19
+-rw-r--r-- root/root usr/share/screen/utf8encodings/a1
+-rw-r--r-- root/root usr/share/screen/utf8encodings/a3
+-rw-r--r-- root/root usr/share/screen/utf8encodings/bf
+-rw-r--r-- root/root usr/share/screen/utf8encodings/c2
+-rw-r--r-- root/root usr/share/screen/utf8encodings/c3
+-rw-r--r-- root/root usr/share/screen/utf8encodings/c4
+-rw-r--r-- root/root usr/share/screen/utf8encodings/c6
+-rw-r--r-- root/root usr/share/screen/utf8encodings/c7
+-rw-r--r-- root/root usr/share/screen/utf8encodings/c8
+-rw-r--r-- root/root usr/share/screen/utf8encodings/cc
+-rw-r--r-- root/root usr/share/screen/utf8encodings/cd
+-rw-r--r-- root/root usr/share/screen/utf8encodings/d6
diff --git a/opt/screen/.signature b/opt/screen/.signature
new file mode 100644
index 0000000..7baec9d
--- /dev/null
+++ b/opt/screen/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mMhI2KYzdA8IymVXxfPIWfotNVmBjxTrHtrEVXD9MpsSHBEhBmDZV317zF5td//k+H03mg2ewGMoyLvYHjKI0gA=
+
+SHA256 (MAKEPKG) = 27f1e5cdf9253b37759724d613954b651f98fd01cc31c9cae3c916ba0258a16b
+SHA256 (.footprint) = 2571295d9694c8a38273e59da4923f36afca77a4e04dfaf874f9b9ae207ae7d8
+SHA256 (screen-5.0.2.tar.gz) = ca9a2c7e240919bc7ac12124593ae4529bb4eb5f7349d8857829b7e3f0b3b332
+SHA256 (screen#5.0.2-1.pkg.tar.gz) = e4e3831410fc41295007bddcbe7b398a166a9bdc4c0a3603c77bf3b0bbf7df4c
diff --git a/opt/screen/MAKEPKG b/opt/screen/MAKEPKG
new file mode 100644
index 0000000..6803b95
--- /dev/null
+++ b/opt/screen/MAKEPKG
@@ -0,0 +1,40 @@
+#!/bin/mkpkg
+# description: Terminal multiplexer with session detach/reattach
+# url: https://www.gnu.org/software/screen/
+
+name=screen
+version=5.0.2
+release=1
+depends=(ncurses)
+source=(https://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
+
+sha256sums=(
+ "ca9a2c7e240919bc7ac12124593ae4529bb4eb5f7349d8857829b7e3f0b3b332"
+)
+
+build() {
+ cd $name-$version
+
+ ./configure \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man \
+ --enable-colors256 \
+ --disable-pam \
+ --disable-socket-dir
+
+ make
+ make DESTDIR=$PKG install
+ install -Dm644 etc/etcscreenrc $PKG/etc/screenrc
+
+ # recent CVEs in screen 5.0.x around setuid-root exploits
+ # -rwsr-xr-x root/root usr/bin/screen-5.0.1
+ chmod u-s $PKG/usr/bin/screen-5.0.2
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh