update x11/wmtheme to 1.2.9

This commit is contained in:
lebel 2001-09-09 01:12:21 +00:00
parent 81115d6a61
commit c7eff3726e
3 changed files with 16 additions and 25 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.1.1.1 2001/09/07 03:12:57 lebel Exp $
# $OpenBSD: Makefile,v 1.2 2001/09/09 01:12:21 lebel Exp $
COMMENT= "window manager theme utility"
DISTNAME= wmtheme-1.2.8
DISTNAME= wmtheme-1.2.9
CATEGORIES= x11
NEED_VERSION= 1.402

View File

@ -1,3 +1,3 @@
MD5 (wmtheme-1.2.8.tar.gz) = a395c69b07c57a044d990b6a62ae200b
RMD160 (wmtheme-1.2.8.tar.gz) = bf48a4ba7abc02e742a5a8142ffc3899e3101a0b
SHA1 (wmtheme-1.2.8.tar.gz) = 30ad4cf2a4a908c244d1e869343181b79ecef7e7
MD5 (wmtheme-1.2.9.tar.gz) = b247a25caeb29c5ad123bc2f1f807a80
RMD160 (wmtheme-1.2.9.tar.gz) = b1555d146b4a3e33cd472904eb6b0d7532896824
SHA1 (wmtheme-1.2.9.tar.gz) = 3cb565d5d8de8dec0e9fd77d4b0f725b4533010c

View File

@ -1,25 +1,16 @@
$OpenBSD: patch-wmtheme,v 1.1.1.1 2001/09/07 03:12:57 lebel Exp $
--- wmtheme.orig Fri Aug 10 17:06:50 2001
+++ wmtheme Thu Sep 6 13:20:03 2001
@@ -1368,7 +1368,7 @@ sub getuserchoice {
$OpenBSD: patch-wmtheme,v 1.2 2001/09/09 01:12:21 lebel Exp $
--- wmtheme.orig Thu Sep 6 19:40:05 2001
+++ wmtheme Sat Sep 8 21:04:15 2001
@@ -1396,7 +1396,7 @@ sub screensize {
my ($rows, $cols);
$rows = ($sttyout =~ /\brows (\d+)/ and $1 > 4) ? $1 : 24;
- $cols = ($sttyout =~ /\bcolumns (\d+)/ and $1 > 49) ? $1 : 50;
+ $cols = ($sttyout =~ /\bcolumns (\d+)/ and $1 > 79) ? $1 : 80;
($rows, $cols);
}
sub screensize {
- my ($rows, $cols) = (24, 50);
+ my ($rows, $cols) = (24, 80);
my $sttyout = `stty -a`;
if ($sttyout =~ /\brows (\d+)/) {
@@ -1376,7 +1376,7 @@ sub screensize {
}
if ($sttyout =~ /\bcolumns (\d+)/) {
- $cols = $1 < 50 ? 50 : $1;
+ $cols = $1 < 80 ? 80 : $1;
}
($rows, $cols);
@@ -1570,7 +1570,7 @@ sub getfiletypes {
@@ -1585,7 +1585,7 @@ sub getfiletypes {
$cleanups{getfiletypes} = $file_input;
stowfile($file_input, join("\n", @files) . "\n");