[Slackbuilds-users] How best to contact Slackware devs?

Jeremy Hansen jebrhansen+SBo at gmail.com
Wed Jan 10 00:10:22 UTC 2018


On Tue, Jan 9, 2018 at 6:35 PM, Rich Shepard <rshepard at appl-ecosys.com>
wrote:
>
> On Tue, 9 Jan 2018, Didier Spaier wrote:
>
>> If kerberos is a hard dependency, you are on your own as far as I am in
>> concern.
>
>
> Didier,
>
>   I added '--without-krb5 \' to the SlackBuild script's configure section;
> this fixed this issue. Now I get an issue with pinegpg and don't see just
> where in the untarred pinepgp-0.18.0.tar.gz this occurs.
>
> ...
> creating ./config.status
> creating Makefile
> /usr/bin/cat pinegpgp.in | /usr/bin/sed -e 's%\@SED\@%/usr/bin/sed%;\
>         s%\@CAT\@%/usr/bin/cat%;\
>         s%\@RM\@%/usr/bin/rm%;\
>         s%\@MKTEMP\@%/usr/bin/mktemp%;\
>         s%\@BASH\@%/bin/sh%;\
>         s%\@bindir\@%/usr/bin%;\
>         s%\@tmpdir\@%~/.pinepgp%' > pinegpgp
> /usr/bin/sed: -e expression #1, char 185: unterminated address regex
> Makefile:48: recipe for target 'pinegpgp' failed
> make: *** [pinegpgp] Error 1
>
>   A pointer to where the error might be would be appreciated.


I was able to build it after commenting out the patch in the SlackBuild and
then switching the SSLTYPE from unix to unix.pwd

Here's a patch for the 14.2 SlackBuild. You'll need to rename your alpine
download to: alpine-f2246f7.tar.xz

diff --git a/alpine.SlackBuild b/alpine.SlackBuild
index 9f2a91c..3a16381 100755
--- a/alpine.SlackBuild
+++ b/alpine.SlackBuild
@@ -22,7 +22,7 @@


 PKGNAM=alpine
-VERSION=${VERSION:-2.20}
+VERSION=${VERSION:-f2246f7}
 ALPINEBUILD=${ALPINEBUILD:-2}
 IMAPDBUILD=${IMAPDBUILD:-2}
 PINEPGP=${PINEPGP:-0.18.0}
@@ -67,7 +67,7 @@ find . \
  \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm
400 \) \
  -exec chmod 644 {} \;

-zcat $CWD/alpine.manpage.diff.gz | patch -p1 --verbose || exit 1
+#zcat $CWD/alpine.manpage.diff.gz | patch -p1 --verbose || exit 1

 # Configure:
 CFLAGS="$SLKCFLAGS" \
@@ -96,9 +96,9 @@ CFLAGS="$SLKCFLAGS" \

 # Build and install:
 # Since we build non-compliant to RFC3501 we have to answer 'y' half-way:
-echo y | make EXTRACFLAGS="-fPIC" SSLTYPE=unix || exit 1
+echo y | make EXTRACFLAGS="-fPIC" SSLTYPE=unix.nopwd || exit 1

-make install SSLTYPE=unix DESTDIR=$PKG || exit 1
+make install SSLTYPE=unix.nopwd DESTDIR=$PKG || exit 1

 # Add default config file:
 ./alpine/alpine -conf > $PKG/etc/pine.conf.new
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.slackbuilds.org/pipermail/slackbuilds-users/attachments/20180109/6d5fa917/attachment.html>


More information about the SlackBuilds-users mailing list