Skip to content

Commit

Permalink
upgrade to screen 3.9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Brad Smith committed Sep 4, 2001
1 parent 6883345 commit 58da082
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions misc/screen/Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# $OpenBSD: Makefile,v 1.35 2001/07/28 04:00:36 brad Exp $
# $OpenBSD: Makefile,v 1.36 2001/09/04 14:56:27 brad Exp $

COMMENT= "multi-screen window manager"

VERSION= 3.9.9
VERSION= 3.9.10
DISTNAME= screen-${VERSION}
CATEGORIES= misc
NEED_VERSION= 1.413
NEED_VERSION= 1.435
MASTER_SITES= ftp://ftp.uni-erlangen.de/pub/utilities/screen/

HOMEPAGE= http://www.gnu.org/software/screen/
Expand Down
6 changes: 3 additions & 3 deletions misc/screen/files/md5
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
MD5 (screen-3.9.9.tar.gz) = 9a8b1d6c7438c64b884c4f7d7662afdc
RMD160 (screen-3.9.9.tar.gz) = 7706eb88c95eaa92cbfbd7f840f9206696eddcbd
SHA1 (screen-3.9.9.tar.gz) = e9336f92fc323ebababc671a381c8dfd94d8ccae
MD5 (screen-3.9.10.tar.gz) = de75b2b86008319b26ccf7c382226ecd
RMD160 (screen-3.9.10.tar.gz) = cfad545ac35bb65129ec2e7841ccf24e7a46d010
SHA1 (screen-3.9.10.tar.gz) = b802dbb2dddc5439519ae51a52dd904b1a6d9805
26 changes: 13 additions & 13 deletions misc/screen/pkg/INSTALL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
# $OpenBSD: INSTALL,v 1.6 2001/05/06 00:46:51 brad Exp $
# $OpenBSD: INSTALL,v 1.7 2001/09/04 14:56:28 brad Exp $
#
# Pre/post-installation setup of screen

Expand All @@ -9,28 +9,28 @@ set -e
PATH=/bin:/usr/bin:/sbin:/usr/sbin
PREFIX=${PKG_PREFIX:-/usr/local}
CONFIG_FILE=${SYSCONFDIR}/screenrc
SAMPLE_CONFIG_DIR=$PREFIX/share/examples/screen
SAMPLE_CONFIG_FILE=$PREFIX/share/examples/screen/screenrc-sample

do_notice()
{
echo
echo "+---------------"
echo "| The file $CONFIG_FILE exists on your system. It has"
echo "| NOT been updated. Please look at the file "
echo "| $SAMPLE_CONFIG_DIR/screenrc-sample"
echo "| and add any desired (but missing) entries into your"
echo "| current $CONFIG_FILE"
echo "| The existing $1 configuration file, $CONFIG_FILE,"
echo "| has NOT been changed. You may want to compare it to the"
echo "| current sample file, $SAMPLE_CONFIG_FILE,"
echo "| and update your configuration as needed."
echo "+---------------"
echo
}

do_install()
{
install -o root -g wheel -m 644 $SAMPLE_CONFIG_DIR/screenrc-sample $CONFIG_FILE
install -o root -g wheel -m 644 $SAMPLE_CONFIG_FILE $CONFIG_FILE
echo
echo "+---------------"
echo "| The file $CONFIG_FILE has been created on your system."
echo "| You may want to verify/edit its contents"
echo "| The $1 configuration file, $CONFIG_FILE,"
echo "| has been installed. Please view this file and change"
echo "| the configuration to meet your needs"
echo "+---------------"
echo
}
Expand All @@ -49,10 +49,10 @@ case $2 in
: nothing to pre-install for this port
;;
POST-INSTALL)
if [ -e $CONFIG_FILE ]; then
do_notice
if [ -f $CONFIG_FILE ]; then
do_notice $1
else
do_install
do_install $1
fi
;;
*)
Expand Down

0 comments on commit 58da082

Please sign in to comment.