diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/emacs-w3m/Makefile | 9 | ||||
-rw-r--r-- | www/emacs-w3m/distinfo | 6 | ||||
-rw-r--r-- | www/emacs-w3m/files/patch-aclocal.m4 | 30 |
3 files changed, 7 insertions, 38 deletions
diff --git a/www/emacs-w3m/Makefile b/www/emacs-w3m/Makefile index e4ea3c5b29ed..973483446b3b 100644 --- a/www/emacs-w3m/Makefile +++ b/www/emacs-w3m/Makefile @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= emacs-w3m -PORTVERSION= 1.4.620.b.${SNAPDATE} -PORTREVISION= 2 +PORTVERSION= 1.4.632.b.${SNAPDATE} CATEGORIES= www elisp MASTER_SITES= LOCAL/nobutaka PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} -DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-1.4.620-${SNAPDATE} +DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-1.4.632-${SNAPDATE} MAINTAINER= nobutaka@FreeBSD.org COMMENT= Simple front-end to w3m for emacs @@ -18,13 +17,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= w3m:www/w3m RUN_DEPENDS= w3m:www/w3m -USES= autoreconf emacs tar:bzip2 +USES= autoreconf emacs tar:xz ALL_TARGET= default INSTALL_TARGET= install install-icons NO_ARCH= yes -SNAPDATE= 20180331 +SNAPDATE= 20181110 MAKE_JOBS_UNSAFE= yes GNU_CONFIGURE= yes diff --git a/www/emacs-w3m/distinfo b/www/emacs-w3m/distinfo index b2ae12103a95..748d331e3fcc 100644 --- a/www/emacs-w3m/distinfo +++ b/www/emacs-w3m/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1522501272 -SHA256 (emacs-w3m-1.4.620-20180331.tar.bz2) = e3ebf58d2fe6071b22c129f28ff8c4793d667416019a5ed805529e82254814eb -SIZE (emacs-w3m-1.4.620-20180331.tar.bz2) = 842376 +TIMESTAMP = 1541867766 +SHA256 (emacs-w3m-1.4.632-20181110.tar.xz) = f8661b5e131c1da923c7679e67a2b764257449fc7f1c76699227c7ee950ed663 +SIZE (emacs-w3m-1.4.632-20181110.tar.xz) = 791524 diff --git a/www/emacs-w3m/files/patch-aclocal.m4 b/www/emacs-w3m/files/patch-aclocal.m4 deleted file mode 100644 index cecba1b19d50..000000000000 --- a/www/emacs-w3m/files/patch-aclocal.m4 +++ /dev/null @@ -1,30 +0,0 @@ ---- aclocal.m4.orig 2018-01-16 09:35:31 UTC -+++ aclocal.m4 -@@ -78,15 +78,18 @@ AC_DEFUN(AC_PATH_EMACS, - - AC_MSG_CHECKING([what a flavor does ${EMACS} have]) - AC_EMACS_LISP(flavor, -- (if (featurep (quote xemacs)) -- \"XEmacs\" -- (concat \"Emacs \" -- (mapconcat (function identity) -- (nreverse -- (cdr (nreverse -- (split-string emacs-version -- (concat (vector 92 46)))))) -- \".\"))), -+ (cond ((featurep (quote xemacs)) -+ \"XEmacs\") -+ ((= (length (split-string emacs-version (concat (vector 92 46)))) 2) -+ (concat \"Emacs \" emacs-version)) -+ (t -+ (concat \"Emacs \" -+ (mapconcat (function identity) -+ (nreverse -+ (cdr (nreverse -+ (split-string emacs-version -+ (concat (vector 92 46)))))) -+ \".\")))), - noecho) - case "${flavor}" in - XEmacs) |