exec.start = "/bin/sh /etc/rc";
exec.stop = "/bin/sh /etc/rc.shutdown";
exec.clean;
mount.devfs;
host.hostname = $name;
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: Makefile | |
=================================================================== | |
--- Makefile (revision 514118) | |
+++ Makefile (working copy) | |
@@ -3,7 +3,7 @@ | |
PORTNAME= Net-Proxy | |
PORTVERSION= 0.13 | |
-PORTREVISION= 1 | |
+PORTREVISION= 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: Makefile | |
=================================================================== | |
--- Makefile (revision 513440) | |
+++ Makefile (working copy) | |
@@ -1,10 +1,10 @@ | |
# $FreeBSD$ | |
PORTNAME= omegaT | |
-DISTVERSION= 3.6.0 | |
+DISTVERSION= 4.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: Makefile | |
=================================================================== | |
--- Makefile (revision 512551) | |
+++ Makefile (working copy) | |
@@ -5,7 +5,7 @@ | |
# discretion. | |
PORTNAME= gettext-tools | |
-PORTREVISION= 1 | |
+PORTREVISION= 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: Makefile | |
=================================================================== | |
--- Makefile (revision 513327) | |
+++ Makefile (working copy) | |
@@ -2,8 +2,7 @@ | |
PORTNAME= onedrive | |
DISTVERSIONPREFIX= v | |
-DISTVERSION= 2.3.3 | |
-PORTREVISION= 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
log | |
hypnotoad.pid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/ElectronClient/app/electronRebuild.js b/ElectronClient/app/electronRebuild.js | |
index 4b6143f6..41ac1e5a 100644 | |
--- a/ElectronClient/app/electronRebuild.js | |
+++ b/ElectronClient/app/electronRebuild.js | |
@@ -30,6 +30,10 @@ const isMac = () => { | |
return process && process.platform === 'darwin'; | |
} | |
+const isFreeBSD = () => { | |
+ return process && process.platform === 'freebsd'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XTerm*utf8 : 1 | |
XTerm*locale : true | |
XTerm*selectToClipboard : true | |
XTerm*faceName: DejaVu Sans Mono:style=Book:antialias=true | |
XTerm*faceNameDoublesize: VL Gothic:style=reguler:antialias=true | |
xterm*ximFont: -misc-fixed-medium-r-normal--14-130-75-75-c-140-jisx0208.1983-0 | |
XTerm*faceSize : 10.5 | |
XTerm*cjkWidth : true | |
XTerm*fontDoublesize : true | |
XTerm*saveLines : 2000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- Actions.pm.orig 2019-06-10 13:45:42.577613000 +0900 | |
+++ Actions.pm 2019-06-10 13:52:49.789538000 +0900 | |
@@ -62,7 +62,8 @@ | |
and $args{'THRESHOLDING'} eq 'on' | |
and not &Swatch::Threshold::threshold(%args)); | |
- if (${$args{'MODES'}}[0] =~ /^normal$/i) { # for backward compatability | |
+ if (${$args{'MODES'}}[0] =~ /^normal$/i # for backward compatability | |
+ || @{$args{'MODES'}} < 1 ){ | |
print "$args{'MESSAGE'}\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
JAILNAME=test | |
IFLIST="edsc epair ipsec gif gre lagg lo stf tap tun vlan vmnet vxlan" | |
runcmd(){ | |
echo "#" $@ >&2 | |
"$@" | |
} | |
create(){ |
NewerOlder