Skip to content

Instantly share code, notes, and snippets.

View derekschrock's full-sized avatar

Derek Schrock derekschrock

View GitHub Profile
This file has been truncated, but you can view the full file.
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by mutt configure 1.12.0, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure --disable-fcntl --with-ssl=/usr/local --with-docdir=/usr/local/share/doc/mutt --sysconfdir=/usr/local/etc --enable-external-dotlock --enable-pop --enable-imap --enable-compressed --enable-sidebar --disable-flock --enable-gpgme --without-gss --with-bdb=/usr/local --without-kyotocabinet --enable-hcache --without-qdbm --without-gdbm --without-tokyocabinet --with-libiconv-prefix=/usr/local --with-idn2=/usr/local --enable-locales-fix --enable-nls --with-sasl=/usr/local --enable-smtp --prefix=/usr/local --localstatedir=/var --mandir=/usr/local/man --disable-silent-rules --infodir=/usr/local/share/info/ --build=i386-portbld-freebsd11.3
## --------- ##
## Platform. ##
--- PATCHES.orig 2017-12-03 03:10:17 UTC
+++ PATCHES
@@ -0,0 +1 @@
+vvv.quote
--- handler.c.orig 2019-04-28 20:41:58 UTC
+++ handler.c
@@ -1593,7 +1593,31 @@ static int text_plain_handler (BODY *b, STATE *s)
buf[--l] = 0;
}
if (s->prefix)
diff --git a/Mk/Scripts/do-depends.sh b/Mk/Scripts/do-depends.sh
index 5469bff33337..46dc5760e9dd 100644
--- a/Mk/Scripts/do-depends.sh
+++ b/Mk/Scripts/do-depends.sh
@@ -11,7 +11,7 @@ validate_env dp_RAWDEPENDS dp_DEPTYPE dp_DEPENDS_TARGET dp_DEPENDS_PRECLEAN \
dp_DEPENDS_CLEAN dp_DEPENDS_ARGS dp_USE_PACKAGE_DEPENDS \
dp_USE_PACKAGE_DEPENDS_ONLY dp_PKG_ADD dp_PKG_INFO dp_WRKDIR \
dp_PKGNAME dp_STRICT_DEPENDS dp_LOCALBASE dp_LIB_DIRS dp_SH \
- dp_SCRIPTSDIR PORTSDIR dp_MAKE dp_MAKEFLAGS
+ dp_SCRIPTSDIR PORTSDIR dp_MAKE dp_MAKEFLAGS dp_PORTEPOCH
diff --git a/Mk/Scripts/do-depends.sh b/Mk/Scripts/do-depends.sh
index 5469bff33337..3df2989d165a 100644
--- a/Mk/Scripts/do-depends.sh
+++ b/Mk/Scripts/do-depends.sh
@@ -11,7 +11,7 @@ validate_env dp_RAWDEPENDS dp_DEPTYPE dp_DEPENDS_TARGET dp_DEPENDS_PRECLEAN \
dp_DEPENDS_CLEAN dp_DEPENDS_ARGS dp_USE_PACKAGE_DEPENDS \
dp_USE_PACKAGE_DEPENDS_ONLY dp_PKG_ADD dp_PKG_INFO dp_WRKDIR \
dp_PKGNAME dp_STRICT_DEPENDS dp_LOCALBASE dp_LIB_DIRS dp_SH \
- dp_SCRIPTSDIR PORTSDIR dp_MAKE dp_MAKEFLAGS
+ dp_SCRIPTSDIR PORTSDIR dp_MAKE dp_MAKEFLAGS dp_PORTEPOCH
diff --git a/Mk/Scripts/do-depends.sh b/Mk/Scripts/do-depends.sh
index 5469bff33337..1159b400d33f 100644
--- a/Mk/Scripts/do-depends.sh
+++ b/Mk/Scripts/do-depends.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-# $FreeBSD$
+# $FreeBSD: head/Mk/Scripts/do-depends.sh 455690 2017-12-07 01:51:00Z bdrewery $
#
# MAINTAINER: portmgr@FreeBSD.org
@derekschrock
derekschrock / test
Created October 9, 2018 01:44 — forked from ndowens/test
# $FreeBSD: head/x11/guake/Makefile 465584 2018-03-26 12:38:56Z bapt $
PORTNAME= guake
PORTVERSION= 3.4.0
PORTREVISION= 1
CATEGORIES= x11 python gnome
MAINTAINER= daniel@shafer.cc
COMMENT= Dropdown terminal made for the GNOME desktop
diff --git a/misc/units b/misc/units
index 790c214f..5d72244a 100755
--- a/misc/units
+++ b/misc/units
@@ -1872,7 +1872,7 @@ failed_git_marker ()
local f=$1
local l
- if type "git" > /dev/null 2>&1; then
+ if type "git" > /dev/null 2>&1 && [ -d .git ]; then
--- /usr/jails/apache/usr/local/www/phpvirtualbox/endpoints/lib/vboxconnector.php 2017-09-10 05:57:43.000000000 -0400
+++ vboxconnector.php 2017-12-22 21:57:11.691738000 -0500
@@ -1593,7 +1593,7 @@
// Network properties
$eprops = $n->getProperties(null);
$eprops = array_combine($eprops[1],$eprops[0]);
- $iprops = array_map(create_function('$a','$b=explode("=",$a); return array($b[0]=>$b[1]);'),preg_split('/[\r|\n]+/',$args['networkAdapters'][$i]['properties']));
+ $iprops = array_map(function ($a) { $b=explode("=",$a); return array($b[0]=>$b[1]); },preg_split('/[\r|\n]+/',$args['networkAdapters'][$i]['properties']));
$inprops = array();
foreach($iprops as $a) {
@derekschrock
derekschrock / -
Created September 22, 2017 18:33
# Sample minimal config file. Copy this to ~/.offlineimaprc and edit to
# get started fast.
[general]
accounts = LOADM
pythonfile = ~/.offlineimap.py
[Account LOADM]
localrepository = Local
remoterepository = Remote
@derekschrock
derekschrock / -
Created September 16, 2017 22:37
#!/usr/bin/env sh
if ! [ -d "$1" ] ; then
echo "usage: ${0##*/} dir"
exit
fi
cd "$1"
pkg query "%o" | while read origin; do