Fri Jun 14 04:56:47 2013 UTC ()
Clean up pkglint flagged issue:
(1) mail/wl/Makefile
   - Add LICENSE=	gnu-gpl-v2.
   - Use # none instead onf # defined (EMACS_BUILDLINK=).
   - Use set instead of @set.
(2) mail/wl/patches/patch-aa
   - Add comment from old cvs log.
(3) mail/wl/patches/patch-utils_ptexinfmt.el
   Avoid diff -c confusion by pkglint:
   -*** [info] Error code 255
   + *** [info] Error code 255
(4) mk/defaults/options.description 14 Jun 2013 04:48:54 -0000
   Add following option:
   +emacs-w3m     W3m browser extention.


(mef)
diff -r1.45 -r1.46 pkgsrc/mail/wl/Makefile
diff -r1.17 -r1.18 pkgsrc/mail/wl/distinfo
diff -r1.2 -r1.3 pkgsrc/mail/wl/patches/patch-aa
diff -r1.1 -r1.2 pkgsrc/mail/wl/patches/patch-utils_ptexinfmt.el
diff -r1.422 -r1.423 pkgsrc/mk/defaults/options.description

cvs diff -r1.45 -r1.46 pkgsrc/mail/wl/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/mail/wl/Attic/Makefile 2013/02/17 19:18:06 1.45
+++ pkgsrc/mail/wl/Attic/Makefile 2013/06/14 04:56:47 1.46
@@ -1,49 +1,50 @@ @@ -1,49 +1,50 @@
1# $NetBSD: Makefile,v 1.45 2013/02/17 19:18:06 dholland Exp $ 1# $NetBSD: Makefile,v 1.46 2013/06/14 04:56:47 mef Exp $
2 2
3DISTNAME= wl-2.14.0 3DISTNAME= wl-2.14.0
4PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME} 4PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME}
5PKGREVISION= 11 5PKGREVISION= 11
6CATEGORIES= mail 6CATEGORIES= mail
7MASTER_SITES= ftp://ftp.gohome.org/wl/stable/ 7MASTER_SITES= ftp://ftp.gohome.org/wl/stable/
8 8
9MAINTAINER= tech-pkg-ja@jp.NetBSD.org 9MAINTAINER= tech-pkg-ja@jp.NetBSD.org
10HOMEPAGE= http://www.gohome.org/wl/ 10HOMEPAGE= http://www.gohome.org/wl/
11COMMENT= Mail/news management system with IMAP4rev1 support for Emacs 11COMMENT= Mail/news management system with IMAP4rev1 support for Emacs
 12LICENSE= gnu-gpl-v2
12 13
13BUILD_TARGET= all info 14BUILD_TARGET= all info
14INSTALL_TARGET= install install-info 15INSTALL_TARGET= install install-info
15MAKE_FLAGS+= INFODIR=${DESTDIR:Q}${EMACS_INFOPREFIX:Q} 16MAKE_FLAGS+= INFODIR=${DESTDIR:Q}${EMACS_INFOPREFIX:Q}
16MAKE_FLAGS+= LISPDIR=${DESTDIR:Q}${EMACS_LISPPREFIX:Q} 17MAKE_FLAGS+= LISPDIR=${DESTDIR:Q}${EMACS_LISPPREFIX:Q}
17MAKE_FLAGS+= EMACS=${EMACS_FLAVOR:Q} 18MAKE_FLAGS+= EMACS=${EMACS_FLAVOR:Q}
18MAKE_FLAGS+= PIXMAPDIR=${DESTDIR:Q}${PREFIX:Q}/share/wl 19MAKE_FLAGS+= PIXMAPDIR=${DESTDIR:Q}${PREFIX:Q}/share/wl
19INFO_FILES= yes 20INFO_FILES= yes
20 21
21SUBST_CLASSES+= pixmap 22SUBST_CLASSES+= pixmap
22SUBST_STAGE.pixmap= post-configure 23SUBST_STAGE.pixmap= post-configure
23SUBST_MESSAGE.pixmap= Fixing wl-icon-directory default value 24SUBST_MESSAGE.pixmap= Fixing wl-icon-directory default value
24SUBST_FILES.pixmap= wl/wl-vars.el 25SUBST_FILES.pixmap= wl/wl-vars.el
25SUBST_VARS.pixmap= PREFIX 26SUBST_VARS.pixmap= PREFIX
26 27
27DOCDIR= ${PREFIX}/share/doc/wl 28DOCDIR= ${PREFIX}/share/doc/wl
28EXAMPLESDIR= ${PREFIX}/share/examples/wl 29EXAMPLESDIR= ${PREFIX}/share/examples/wl
29INSTALLATION_DIRS= ${DOCDIR}/en ${DOCDIR}/ja \ 30INSTALLATION_DIRS= ${DOCDIR}/en ${DOCDIR}/ja \
30 ${EXAMPLESDIR}/en ${EXAMPLESDIR}/ja \ 31 ${EXAMPLESDIR}/en ${EXAMPLESDIR}/ja \
31 ${EMACS_INFOPREFIX} 32 ${EMACS_INFOPREFIX}
32 33
33EMACS_BUILDLINK=# defined 34EMACS_BUILDLINK= # none
34 35
35post-install: 36post-install:
36 @set -e; \ 37 set -e; \
37 for f in BUGS NEWS README; do \ 38 for f in BUGS NEWS README; do \
38 ${INSTALL_DATA} ${WRKSRC:Q}/"$$f" ${DESTDIR:Q}${DOCDIR:Q}/en; \ 39 ${INSTALL_DATA} ${WRKSRC:Q}/"$$f" ${DESTDIR:Q}${DOCDIR:Q}/en; \
39 ${INSTALL_DATA} ${WRKSRC:Q}/"$$f".ja ${DESTDIR:Q}${DOCDIR:Q}/ja; \ 40 ${INSTALL_DATA} ${WRKSRC:Q}/"$$f".ja ${DESTDIR:Q}${DOCDIR:Q}/ja; \
40 done 41 done
41 ${INSTALL_DATA} ${WRKSRC:Q}/samples/en/dot.* ${DESTDIR:Q}${EXAMPLESDIR:Q}/en 42 ${INSTALL_DATA} ${WRKSRC:Q}/samples/en/dot.* ${DESTDIR:Q}${EXAMPLESDIR:Q}/en
42 ${INSTALL_DATA} ${WRKSRC:Q}/samples/ja/dot.* ${DESTDIR:Q}${EXAMPLESDIR:Q}/ja 43 ${INSTALL_DATA} ${WRKSRC:Q}/samples/ja/dot.* ${DESTDIR:Q}${EXAMPLESDIR:Q}/ja
43 44
44.include "../../editors/emacs/modules.mk" 45.include "../../editors/emacs/modules.mk"
45 46
46.include "options.mk" 47.include "options.mk"
47 48
48.include "../../devel/apel/buildlink3.mk" 49.include "../../devel/apel/buildlink3.mk"
49.include "../../devel/semi/buildlink3.mk" 50.include "../../devel/semi/buildlink3.mk"

cvs diff -r1.17 -r1.18 pkgsrc/mail/wl/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/mail/wl/Attic/distinfo 2013/06/14 03:44:40 1.17
+++ pkgsrc/mail/wl/Attic/distinfo 2013/06/14 04:56:47 1.18
@@ -1,10 +1,10 @@ @@ -1,10 +1,10 @@
1$NetBSD: distinfo,v 1.17 2013/06/14 03:44:40 mef Exp $ 1$NetBSD: distinfo,v 1.18 2013/06/14 04:56:47 mef Exp $
2 2
3SHA1 (wl-2.14.0.tar.gz) = 75b93013444cb27ca540462afbaefdce0e157b3f 3SHA1 (wl-2.14.0.tar.gz) = 75b93013444cb27ca540462afbaefdce0e157b3f
4RMD160 (wl-2.14.0.tar.gz) = 1a5aa025fc05cbcf2a7d390b1804cc1b22f5df2b 4RMD160 (wl-2.14.0.tar.gz) = 1a5aa025fc05cbcf2a7d390b1804cc1b22f5df2b
5Size (wl-2.14.0.tar.gz) = 1101505 bytes 5Size (wl-2.14.0.tar.gz) = 1101505 bytes
6SHA1 (patch-aa) = ede97cce8b2574737a91941a905e067c940fb50a 6SHA1 (patch-aa) = 848a4dda06c77f94c05ea770056690065b0c6c93
7SHA1 (patch-ad) = 74e15c41f2f3521833e126809c713e65509fe5ce 7SHA1 (patch-ad) = 74e15c41f2f3521833e126809c713e65509fe5ce
8SHA1 (patch-ae) = fac4a79a5c8e315c7c92ba17eb3316c5f6338c4f 8SHA1 (patch-ae) = fac4a79a5c8e315c7c92ba17eb3316c5f6338c4f
9SHA1 (patch-ba) = 34bd7b7d06020aefad90b0b563b10c5877acdc1d 9SHA1 (patch-ba) = 34bd7b7d06020aefad90b0b563b10c5877acdc1d
10SHA1 (patch-utils_ptexinfmt.el) = 2ee8e64ef759b2185ed31cc93396fcbeb827cc41 10SHA1 (patch-utils_ptexinfmt.el) = 0699218d01fe2cc4c24fbf0ad1c00ff7d476269b

cvs diff -r1.2 -r1.3 pkgsrc/mail/wl/patches/Attic/patch-aa (expand / switch to unified diff)

--- pkgsrc/mail/wl/patches/Attic/patch-aa 2002/01/08 11:47:17 1.2
+++ pkgsrc/mail/wl/patches/Attic/patch-aa 2013/06/14 04:56:47 1.3
@@ -1,13 +1,15 @@ @@ -1,13 +1,15 @@
1$NetBSD: patch-aa,v 1.2 2002/01/08 11:47:17 jun Exp $ 1$NetBSD: patch-aa,v 1.3 2013/06/14 04:56:47 mef Exp $
 2
 3Install info and examples.
2 4
3--- WL-CFG.orig Tue Oct 23 20:44:04 2001 5--- WL-CFG.orig Tue Oct 23 20:44:04 2001
4+++ WL-CFG 6+++ WL-CFG
5@@ -9,7 +9,7 @@ 7@@ -9,7 +9,7 @@
6 ; load-path)) 8 ; load-path))
7  9
8 ;; If you want to install utils, uncomment following line. 10 ;; If you want to install utils, uncomment following line.
9-;(setq wl-install-utils t) 11-;(setq wl-install-utils t)
10+(setq wl-install-utils t) 12+(setq wl-install-utils t)
11  13
12 ;; Set language for info file ("ja" or "en", both in default). 14 ;; Set language for info file ("ja" or "en", both in default).
13 ;; If you only need manual in English, uncomment following line. 15 ;; If you only need manual in English, uncomment following line.

cvs diff -r1.1 -r1.2 pkgsrc/mail/wl/patches/Attic/patch-utils_ptexinfmt.el (expand / switch to unified diff)

--- pkgsrc/mail/wl/patches/Attic/patch-utils_ptexinfmt.el 2013/06/14 03:46:30 1.1
+++ pkgsrc/mail/wl/patches/Attic/patch-utils_ptexinfmt.el 2013/06/14 04:56:47 1.2
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: patch-utils_ptexinfmt.el,v 1.1 2013/06/14 03:46:30 mef Exp $ 1$NetBSD: patch-utils_ptexinfmt.el,v 1.2 2013/06/14 04:56:47 mef Exp $
2 2
3Loading `/usr/pkgsrc/mail/wl/work/wl-2.14.0/utils/ptexinfmt.el': old-style backquotes detected! 3 Loading `/usr/pkgsrc/mail/wl/work/wl-2.14.0/utils/ptexinfmt.el': old-style backquotes detected!
4Wrong number of arguments: put, 2 4 Wrong number of arguments: put, 2
5INFODIR is /usr/pkgsrc/mail/wl/work/.destdir/usr/pkg/info 5 INFODIR is /usr/pkgsrc/mail/wl/work/.destdir/usr/pkg/info
6 6
7*** [info] Error code 255 7 *** [info] Error code 255
8 8
9--- utils/ptexinfmt.el.orig 2005-02-24 17:16:41.000000000 +0900 9--- utils/ptexinfmt.el.orig 2005-02-24 17:16:41.000000000 +0900
10+++ utils/ptexinfmt.el 2013-06-14 11:50:27.000000000 +0900 10+++ utils/ptexinfmt.el 2013-06-14 11:50:27.000000000 +0900
11@@ -509,7 +509,7 @@ 11@@ -509,7 +509,7 @@
12 (goto-char texinfo-command-start)) 12 (goto-char texinfo-command-start))
13  13
14 ;; @,{c} ==> c, cedilla accent 14 ;; @,{c} ==> c, cedilla accent
15-(put ', 'texinfo-format 'texinfo-format-cedilla-accent) 15-(put ', 'texinfo-format 'texinfo-format-cedilla-accent)
16+(put '\, 'texinfo-format 'texinfo-format-cedilla-accent) 16+(put '\, 'texinfo-format 'texinfo-format-cedilla-accent)
17 (ptexinfmt-defun-if-void texinfo-format-cedilla-accent () 17 (ptexinfmt-defun-if-void texinfo-format-cedilla-accent ()
18 (insert (texinfo-parse-arg-discard) ",") 18 (insert (texinfo-parse-arg-discard) ",")
19 (goto-char texinfo-command-start)) 19 (goto-char texinfo-command-start))

cvs diff -r1.422 -r1.423 pkgsrc/mk/defaults/options.description (expand / switch to unified diff)

--- pkgsrc/mk/defaults/options.description 2013/05/26 18:20:29 1.422
+++ pkgsrc/mk/defaults/options.description 2013/06/14 04:56:47 1.423
@@ -128,26 +128,27 @@ dvdread Enable reproduction of DVDs. @@ -128,26 +128,27 @@ dvdread Enable reproduction of DVDs.
128dvi Enable device independent file format (mostly TeX) support. 128dvi Enable device independent file format (mostly TeX) support.
129eaccelerator-disassembler Include disassembler. 129eaccelerator-disassembler Include disassembler.
130eaccelerator-doc-comment-inclusion Retain doc-comments in internal php structures. 130eaccelerator-doc-comment-inclusion Retain doc-comments in internal php structures.
131eb Enable EB dictionary library support. 131eb Enable EB dictionary library support.
132ecl Use Embeddable Common Lisp. 132ecl Use Embeddable Common Lisp.
133ecore Enable ecore library support. 133ecore Enable ecore library support.
134eekboard Use eekboard for virtual keyboard support. 134eekboard Use eekboard for virtual keyboard support.
135efence Build with Electric Fence malloc() debugger support. 135efence Build with Electric Fence malloc() debugger support.
136efnet Enable tweaks to support EFNet. 136efnet Enable tweaks to support EFNet.
137elinks-exmode Enable vi-like command entry. 137elinks-exmode Enable vi-like command entry.
138elinks-fastmem Allow direct use of system memory allocation functions. 138elinks-fastmem Allow direct use of system memory allocation functions.
139elinks-html-highlight Enable HTML highlighting using DOM engine. 139elinks-html-highlight Enable HTML highlighting using DOM engine.
140elinks-root-exec Allow elinks to run as root. 140elinks-root-exec Allow elinks to run as root.
 141emacs-w3m W3m browser extention.
141emacs-xaw3d Emacs should use Xaw3D for the scrollbar. 142emacs-xaw3d Emacs should use Xaw3D for the scrollbar.
142embedded-server Enable embedded server support for MySQL. 143embedded-server Enable embedded server support for MySQL.
143enchant Add spell checking support using enchant. 144enchant Add spell checking support using enchant.
144enchant-zemberek Add spell checking support for Turkish. 145enchant-zemberek Add spell checking support for Turkish.
145epoll Enable support for epoll I/O event notification facility. 146epoll Enable support for epoll I/O event notification facility.
146epub Enable epub support. 147epub Enable epub support.
147esound Enable support for the Enlightment Sound Daemon. 148esound Enable support for the Enlightment Sound Daemon.
148evolution-data-server Enable support for evolution-data-server. 149evolution-data-server Enable support for evolution-data-server.
149exim-build-eximon Also build the X based exim queue monitoring tool. 150exim-build-eximon Also build the X based exim queue monitoring tool.
150exim-content-scan Call virus and spam scanning direct from ACLs. 151exim-content-scan Call virus and spam scanning direct from ACLs.
151exim-lookup-dnsdb Use DNS for lookups (as general database facility). 152exim-lookup-dnsdb Use DNS for lookups (as general database facility).
152exim-lookup-dsearch Lookup via key as filename in directory. 153exim-lookup-dsearch Lookup via key as filename in directory.
153exim-lookup-ldap LDAP lookup using a query in the form of a URL. 154exim-lookup-ldap LDAP lookup using a query in the form of a URL.