<div dir="ltr"><br><br>On Tue, Jan 9, 2018 at 6:35 PM, Rich Shepard <<a href="mailto:rshepard@appl-ecosys.com">rshepard@appl-ecosys.com</a>> wrote:<br>><br>> On Tue, 9 Jan 2018, Didier Spaier wrote:<br>><br>>> If kerberos is a hard dependency, you are on your own as far as I am in<br>>> concern.<br>><br>><br>> Didier,<br>><br>>   I added '--without-krb5 \' to the SlackBuild script's configure section;<br>> this fixed this issue. Now I get an issue with pinegpg and don't see just<br>> where in the untarred pinepgp-0.18.0.tar.gz this occurs.<br>><br>> ...<br>> creating ./config.status<br>> creating Makefile<br>> /usr/bin/cat <a href="http://pinegpgp.in">pinegpgp.in</a> | /usr/bin/sed -e 's%\@SED\@%/usr/bin/sed%;\<br>>         s%\@CAT\@%/usr/bin/cat%;\<br>>         s%\@RM\@%/usr/bin/rm%;\<br>>         s%\@MKTEMP\@%/usr/bin/mktemp%;\<br>>         s%\@BASH\@%/bin/sh%;\<br>>         s%\@bindir\@%/usr/bin%;\<br>>         s%\@tmpdir\@%~/.pinepgp%' > pinegpgp<br>> /usr/bin/sed: -e expression #1, char 185: unterminated address regex<br>> Makefile:48: recipe for target 'pinegpgp' failed<br>> make: *** [pinegpgp] Error 1<br>><br>>   A pointer to where the error might be would be appreciated.<br><br><br>I was able to build it after commenting out the patch in the SlackBuild and then switching the SSLTYPE from unix to unix.pwd<br><br>Here's a patch for the 14.2 SlackBuild. You'll need to rename your alpine download to: alpine-f2246f7.tar.xz<br><br>diff --git a/alpine.SlackBuild b/alpine.SlackBuild<br>index 9f2a91c..3a16381 100755<br>--- a/alpine.SlackBuild<br>+++ b/alpine.SlackBuild<br>@@ -22,7 +22,7 @@<br><br><br> PKGNAM=alpine<br>-VERSION=${VERSION:-2.20}<br>+VERSION=${VERSION:-f2246f7}<br> ALPINEBUILD=${ALPINEBUILD:-2}<br> IMAPDBUILD=${IMAPDBUILD:-2}<br> PINEPGP=${PINEPGP:-0.18.0}<br>@@ -67,7 +67,7 @@ find . \<br>  \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \<br>  -exec chmod 644 {} \;<br><br>-zcat $CWD/alpine.manpage.diff.gz | patch -p1 --verbose || exit 1<br>+#zcat $CWD/alpine.manpage.diff.gz | patch -p1 --verbose || exit 1<br><br> # Configure:<br> CFLAGS="$SLKCFLAGS" \<br>@@ -96,9 +96,9 @@ CFLAGS="$SLKCFLAGS" \<br><br> # Build and install:<br> # Since we build non-compliant to RFC3501 we have to answer 'y' half-way:<br>-echo y | make EXTRACFLAGS="-fPIC" SSLTYPE=unix || exit 1<br>+echo y | make EXTRACFLAGS="-fPIC" SSLTYPE=unix.nopwd || exit 1<br><br>-make install SSLTYPE=unix DESTDIR=$PKG || exit 1<br>+make install SSLTYPE=unix.nopwd DESTDIR=$PKG || exit 1<br><br> # Add default config file:<br> ./alpine/alpine -conf > $PKG/etc/pine.conf.new </div>