Update to 1.4.632 CVS snapshot on 2018/11/10.
This commit is contained in:
parent
77b32e8e46
commit
6de5a3cdcd
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=484661
@ -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
|
||||
|
@ -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
|
||||
|
@ -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)
|
Loading…
Reference in New Issue
Block a user