diff options
author | tnn <tnn@pkgsrc.org> | 2015-03-21 00:36:08 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2015-03-21 00:36:08 +0000 |
commit | c19c356c7e44b2e70226221b52b3d8644f432cee (patch) | |
tree | 2a9ee4319500504e372bf3214af4e9ac07cb37ad /chat/navi2ch | |
parent | d0c3752ac653a8bcf173051205c0b79360196a3b (diff) | |
download | pkgsrc-c19c356c7e44b2e70226221b52b3d8644f432cee.tar.gz |
Fix error spotted in bulk build.
1) add patch-elisp-comp from FreeBSD ports to fix
"Wrong type argument: stringp, nil"
2) for some reason the unit test fails if we're in CET time zone so
just set TZ=GMT in the make environment for now.
Diffstat (limited to 'chat/navi2ch')
-rw-r--r-- | chat/navi2ch/Makefile | 5 | ||||
-rw-r--r-- | chat/navi2ch/distinfo | 3 | ||||
-rw-r--r-- | chat/navi2ch/patches/patch-elisp-comp | 13 |
3 files changed, 19 insertions, 2 deletions
diff --git a/chat/navi2ch/Makefile b/chat/navi2ch/Makefile index faef1f1a615..dc4c875b4fa 100644 --- a/chat/navi2ch/Makefile +++ b/chat/navi2ch/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2013/02/17 19:17:56 dholland Exp $ +# $NetBSD: Makefile,v 1.28 2015/03/21 00:36:08 tnn Exp $ DISTNAME= navi2ch-1.8.4 PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME} @@ -16,6 +16,9 @@ USE_TOOLS+= gmake INFO_FILES= yes EMACS_MODULES= base +# XXX the unit test fails in TZ=CET for some reason +MAKE_ENV+= TZ=GMT + CONFIGURE_ARGS+=--with-icondir=${PREFIX}/share/navi2ch/icons CONFIGURE_ARGS+=${CONFIGURE_ARGS.${EMACS_FLAVOR}} diff --git a/chat/navi2ch/distinfo b/chat/navi2ch/distinfo index e3c274eb828..6969d818848 100644 --- a/chat/navi2ch/distinfo +++ b/chat/navi2ch/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.11 2011/04/04 21:52:50 ryoon Exp $ +$NetBSD: distinfo,v 1.12 2015/03/21 00:36:08 tnn Exp $ SHA1 (navi2ch-1.8.4.tar.gz) = fd2c31d6a318fd3b7ef9a4324f101467341d9b5c RMD160 (navi2ch-1.8.4.tar.gz) = 12f5619dbac7ce00837e2333a2e7a7e1d7f1d462 Size (navi2ch-1.8.4.tar.gz) = 470499 bytes +SHA1 (patch-elisp-comp) = 7abe4599c9c82c1c7cb65051d03c1966300ae9d9 diff --git a/chat/navi2ch/patches/patch-elisp-comp b/chat/navi2ch/patches/patch-elisp-comp new file mode 100644 index 00000000000..5701370ab18 --- /dev/null +++ b/chat/navi2ch/patches/patch-elisp-comp @@ -0,0 +1,13 @@ +$NetBSD: patch-elisp-comp,v 1.1 2015/03/21 00:36:08 tnn Exp $ + +--- elisp-comp.orig 2010-11-11 06:15:00.000000000 +0000 ++++ elisp-comp +@@ -72,7 +72,7 @@ cp "$@" $tempdir + + ( + cd $tempdir +- echo "(setq load-path (cons nil load-path))" > script ++ echo "(setq load-path (cons \".\" load-path))" > script + # $EMACS -batch -q -l script -f batch-byte-compile *.el || exit $? + $EMACS -batch -q -l script -l ../bcomp.el || exit $? + mv *.elc .. |