From owner-svn-ports-head@freebsd.org Wed Apr 6 04:36:40 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8B6FB04C97; Wed, 6 Apr 2016 04:36:40 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 841CC10F3; Wed, 6 Apr 2016 04:36:40 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u364adks086531; Wed, 6 Apr 2016 04:36:39 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u364adOs086527; Wed, 6 Apr 2016 04:36:39 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201604060436.u364adOs086527@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Wed, 6 Apr 2016 04:36:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412602 - in head/shells/zsh: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Apr 2016 04:36:40 -0000 Author: adamw Date: Wed Apr 6 04:36:39 2016 New Revision: 412602 URL: https://svnweb.freebsd.org/changeset/ports/412602 Log: Clean up Makefile and regenerate patches. Reorganize Makefile for clarity, and add a few comments. While here, regenerate the patches with makepatch. No functional changes. Modified: head/shells/zsh/Makefile head/shells/zsh/files/patch-Doc_zshmodules.1 head/shells/zsh/files/patch-Src_jobs.c head/shells/zsh/files/patch-Src_watch.c Modified: head/shells/zsh/Makefile ============================================================================== --- head/shells/zsh/Makefile Wed Apr 6 04:11:00 2016 (r412601) +++ head/shells/zsh/Makefile Wed Apr 6 04:36:39 2016 (r412602) @@ -22,9 +22,15 @@ LICENSE_PERMS= dist-mirror dist-sell pkg MAKE_JOBS_UNSAFE= yes +EXTRA_PATCHES= ${FILESDIR}/extra-patch-bsdtar ZSH_VER= ${PORTVERSION} +PLIST_SUB+= ZSH_VER="${ZSH_VER}" USES= iconv ncurses shebangfix tar:xz + +SHEBANG_LANG= zsh +zsh_OLD_CMD= /bin/zsh +zsh_CMD= ${PREFIX}/bin/zsh SHEBANG_FILES= Functions/Calendar/calendar_add \ Functions/Misc/checkmail \ Functions/Misc/run-help \ @@ -32,9 +38,7 @@ SHEBANG_FILES= Functions/Calendar/calend Functions/Misc/zcalc \ Functions/Misc/zed \ Functions/Misc/zkbd -SHEBANG_LANG= zsh -zsh_OLD_CMD= /bin/zsh -zsh_CMD= ${PREFIX}/bin/zsh + GNU_CONFIGURE= yes TEST_TARGET= test @@ -45,40 +49,48 @@ CONFIGURE_ARGS= --with-tcsetpgrp \ --enable-function-subdirs --enable-multibyte \ --sysconfdir=${PREFIX}/etc -EXTRA_PATCHES= ${FILESDIR}/extra-patch-bsdtar +DOCS= LICENCE META-FAQ README \ + Etc/BUGS Etc/CONTRIBUTORS Etc/FAQ Etc/completion-style-guide \ + Doc/zsh*.html Doc/zsh.dvi + +PORTDOCS= * +PORTEXAMPLES= zlogin zshenv zshrc + +## Vendor completions to be added into the port (none used now) #EXTRA_COMPLETION_FILES= _sockstat #EXTRA_COMPLETION_DIR= Completion/BSD/Command -OPTIONS_DEFINE= GDBM MEM SECURE_FREE MAILDIR PCRE STATIC DOCS DEBUG \ - EXAMPLES +OPTIONS_DEFINE= GDBM MEM SECURE_FREE MAILDIR PCRE STATIC DEBUG \ + DOCS EXAMPLES OPTIONS_DEFAULT=SECURE_FREE MAILDIR +OPTIONS_SUB= yes -GDBM_DESC= Enable GDBM support (GPL) -MEM_DESC= Enable zsh-mem options -SECURE_FREE_DESC= Enable zsh-secure-free -MAILDIR_DESC= Enable support for Maildirs in MAIL(PATH) - -PLIST_SUB+= ZSH_VER="${ZSH_VER}" - -DOCS= LICENCE META-FAQ README Etc/BUGS Etc/CONTRIBUTORS Etc/FAQ \ - Etc/completion-style-guide Doc/zsh*.html Doc/zsh.dvi -PORTDOCS= * -PORTEXAMPLES= zlogin zshenv zshrc +DEBUG_CONFIGURE_ENABLE= zsh-debug -OPTIONS_SUB= yes +DOCS_DISTFILES= ${DISTNAME}-doc${EXTRACT_SUFX}:doc -DOCS_DISTFILES= ${DISTNAME}-doc${EXTRACT_SUFX}:doc +GDBM_DESC= Enable GDBM support (GPL) GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm GDBM_CONFIGURE_ENABLE= gdbm -PCRE_LIB_DEPENDS= libpcre.so:devel/pcre -PCRE_CONFIGURE_ENABLE= pcre + +MAILDIR_DESC= Enable support for Maildirs in MAIL(PATH) +MAILDIR_CONFIGURE_ENABLE= maildir-support + +MEM_DESC= Enable zsh-mem options MEM_CONFIGURE_ENABLE= zsh-mem + +SECURE_FREE_DESC= Enable zsh-secure-free SECURE_FREE_CONFIGURE_ENABLE= zsh-secure-free -MAILDIR_CONFIGURE_ENABLE= maildir-support + +PCRE_LIB_DEPENDS= libpcre.so:devel/pcre +PCRE_CONFIGURE_ENABLE= pcre + +## Some modules can only be built dynamically (such as the regex module). +## If you enable STATIC, you may get strange errors if scripts/plugins +## try to use the regex module. STATIC_LDFLAGS= -static STATIC_CONFIGURE_ON= --disable-dynamic --with-term-lib="tinfow tinfo" STATIC_CONFIGURE_OFF= --enable-dynamic --with-term-lib="ncursesw ncurses" -DEBUG_CONFIGURE_ENABLE= zsh-debug .include @@ -93,6 +105,8 @@ post-patch: ${WRKSRC}/Src/Modules/*.mdd @${SED} -i "" -e "s,/etc/,${LOCALBASE}/etc/," \ ${WRKSRC}/Functions/MIME/zsh-mime-setup + +# Adding vendor completions into the package .ifdef EXTRA_COMPLETION_FILES @${ECHO} "===> Installing extra completion files" .for COMPFILE in ${EXTRA_COMPLETION_FILES} @@ -109,7 +123,7 @@ post-patch: @${FIND} ${WRKSRC}/Completion -type f -iname '*.orig' -delete post-build: - # Fix ".so" macro problem by using "soelim" command. +# Fix ".so" macro problem by using "soelim" command. ${LN} -sf ${WRKSRC}/Doc ${WRKSRC}/man1 ${MV} ${WRKSRC}/Doc/zshall.1 ${WRKSRC}/Doc/zshall.1.source (cd ${WRKSRC} && ${SOELIM} -r ${WRKSRC}/Doc/zshall.1.source > \ @@ -117,6 +131,7 @@ post-build: post-install: ${LN} -f ${STAGEDIR}${PREFIX}/bin/zsh ${STAGEDIR}${PREFIX}/bin/rzsh +# Precompile completions and functions (${STAGEDIR}${PREFIX}/bin/zsh -fc ' \ setopt extendedglob nomark_dirs; \ cd ${STAGEDIR}/${DATADIR}/${ZSH_VER} ; \ Modified: head/shells/zsh/files/patch-Doc_zshmodules.1 ============================================================================== --- head/shells/zsh/files/patch-Doc_zshmodules.1 Wed Apr 6 04:11:00 2016 (r412601) +++ head/shells/zsh/files/patch-Doc_zshmodules.1 Wed Apr 6 04:36:39 2016 (r412602) @@ -1,6 +1,6 @@ ---- Doc/zshmodules.1.orig 2014-11-21 22:50:41 UTC +--- Doc/zshmodules.1.orig 2015-12-02 18:53:48 UTC +++ Doc/zshmodules.1 -@@ -2415,7 +2415,6 @@ Returns the process ID of the current pr +@@ -2717,7 +2717,6 @@ Returns the process ID of the current pr Returns the process ID of the parent of the current process, even in subshells\&. Compare \fB$PPID\fP, which returns the process ID of the parent of the main shell process\&. Modified: head/shells/zsh/files/patch-Src_jobs.c ============================================================================== --- head/shells/zsh/files/patch-Src_jobs.c Wed Apr 6 04:11:00 2016 (r412601) +++ head/shells/zsh/files/patch-Src_jobs.c Wed Apr 6 04:36:39 2016 (r412602) @@ -1,6 +1,6 @@ ---- Src/jobs.c.orig 2014-08-23 20:40:52.000000000 +0200 -+++ Src/jobs.c 2014-09-10 10:33:50.283018759 +0200 -@@ -694,15 +694,15 @@ +--- Src/jobs.c.orig 2015-08-16 18:44:40 UTC ++++ Src/jobs.c +@@ -687,15 +687,15 @@ printtime(struct timeval *real, child_ti /* go ahead and compute these, since almost every TIMEFMT will have them */ elapsed_time = real->tv_sec + real->tv_usec / 1000000.0; @@ -19,7 +19,7 @@ user_time = ti->ut / (double) clktck; system_time = ti->st / (double) clktck; percent = 100.0 * (ti->ut + ti->st) -@@ -796,7 +795,7 @@ +@@ -791,7 +791,7 @@ printtime(struct timeval *real, child_ti #endif #ifdef HAVE_STRUCT_RUSAGE_RU_MAXRSS case 'M': Modified: head/shells/zsh/files/patch-Src_watch.c ============================================================================== --- head/shells/zsh/files/patch-Src_watch.c Wed Apr 6 04:11:00 2016 (r412601) +++ head/shells/zsh/files/patch-Src_watch.c Wed Apr 6 04:36:39 2016 (r412602) @@ -1,5 +1,5 @@ ---- Src/watch.c.orig 2011-11-13 10:39:47.736213000 +0100 -+++ Src/watch.c 2011-11-13 10:47:22.110214518 +0100 +--- Src/watch.c.orig 2015-08-20 19:59:47 UTC ++++ Src/watch.c @@ -30,8 +30,11 @@ #include "zsh.mdh"