From owner-svn-ports-all@freebsd.org Sun Nov 29 16:52:07 2015 Return-Path: Delivered-To: svn-ports-all@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 88CADA3C002; Sun, 29 Nov 2015 16:52:07 +0000 (UTC) (envelope-from riggs@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 363411CC5; Sun, 29 Nov 2015 16:52:07 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tATGq6hr053085; Sun, 29 Nov 2015 16:52:06 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tATGq5Tw053081; Sun, 29 Nov 2015 16:52:05 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201511291652.tATGq5Tw053081@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Sun, 29 Nov 2015 16:52:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402606 - in head/comms/efax: . 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-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Nov 2015 16:52:07 -0000 Author: riggs Date: Sun Nov 29 16:52:05 2015 New Revision: 402606 URL: https://svnweb.freebsd.org/changeset/ports/402606 Log: Fix runtime segfault due to uninitialised variable, bump PORTREVISION While on it: - Pet portlint: regenerate patches using 'make makepatch' - Add LICENSE PR: 204845 Submitted by: yama@jasper.co.jp MFH: 2015Q4 (ports-secteam fix blanket) Added: head/comms/efax/files/patch-Makefile - copied, changed from r402605, head/comms/efax/files/patch-src_Makefile head/comms/efax/files/patch-efaxmsg.c (contents, props changed) head/comms/efax/files/patch-fax - copied, changed from r402605, head/comms/efax/files/patch-src_fax Deleted: head/comms/efax/files/patch-src_Makefile head/comms/efax/files/patch-src_fax Modified: head/comms/efax/Makefile Modified: head/comms/efax/Makefile ============================================================================== --- head/comms/efax/Makefile Sun Nov 29 16:34:04 2015 (r402605) +++ head/comms/efax/Makefile Sun Nov 29 16:52:05 2015 (r402606) @@ -3,13 +3,16 @@ PORTNAME= efax-0.9a PORTVERSION= 001114a7 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= comms MASTER_SITES= http://shino.pos.to/linux/ MAINTAINER= ports@FreeBSD.org COMMENT= Fax send/receive program +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + RUN_DEPENDS=xloadimage:${PORTSDIR}/x11/xloadimage DOCSDIR= ${PREFIX}/share/doc/efax Copied and modified: head/comms/efax/files/patch-Makefile (from r402605, head/comms/efax/files/patch-src_Makefile) ============================================================================== --- head/comms/efax/files/patch-src_Makefile Sun Nov 29 16:34:04 2015 (r402605, copy source) +++ head/comms/efax/files/patch-Makefile Sun Nov 29 16:52:05 2015 (r402606) @@ -1,5 +1,5 @@ ---- Makefile.orig Wed Jun 28 19:01:22 2000 -+++ Makefile Sun Oct 20 03:06:13 2002 +--- Makefile.orig 2000-06-29 02:01:22 UTC ++++ Makefile @@ -3,20 +3,17 @@ # Change the following to the name of your ANSI C compiler # (normally gcc). @@ -24,7 +24,7 @@ .c.o: $(CC) $(CFLAGS) -c $< -@@ -32,11 +29,9 @@ +@@ -32,11 +29,9 @@ efix: efix.o efaxlib.o efaxmsg.o strip efix install: Added: head/comms/efax/files/patch-efaxmsg.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/efax/files/patch-efaxmsg.c Sun Nov 29 16:52:05 2015 (r402606) @@ -0,0 +1,36 @@ +--- efaxmsg.c.orig 1999-03-20 04:38:20 UTC ++++ efaxmsg.c +@@ -98,9 +98,6 @@ int msg ( char *fmt, ... ) + int err=0, i, flags=0 ; + char *p ; + +- va_list ap ; +- va_start ( ap, fmt ) ; +- + if ( ! init ) { + logfile[0] = stderr ; + logfile[1] = stdout ; +@@ -112,6 +109,9 @@ int msg ( char *fmt, ... ) + + for ( i=0 ; i&2 <