From owner-svn-ports-all@freebsd.org Tue Oct 4 20:00:28 2016 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 9EF3DAF5534; Tue, 4 Oct 2016 20:00:28 +0000 (UTC) (envelope-from fjoe@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 52920B0E; Tue, 4 Oct 2016 20:00:28 +0000 (UTC) (envelope-from fjoe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u94K0Rdc029227; Tue, 4 Oct 2016 20:00:27 GMT (envelope-from fjoe@FreeBSD.org) Received: (from fjoe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u94K0Rjb029224; Tue, 4 Oct 2016 20:00:27 GMT (envelope-from fjoe@FreeBSD.org) Message-Id: <201610042000.u94K0Rjb029224@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fjoe set sender to fjoe@FreeBSD.org using -f From: Max Khon Date: Tue, 4 Oct 2016 20:00:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423298 - in head/misc/dahdi: . 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.23 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: Tue, 04 Oct 2016 20:00:28 -0000 Author: fjoe Date: Tue Oct 4 20:00:27 2016 New Revision: 423298 URL: https://svnweb.freebsd.org/changeset/ports/423298 Log: - Fix dahdi_monitor argument parsing - Bump PORTREVISION Added: head/misc/dahdi/files/patch-tools-dahdi_monitor.c (contents, props changed) head/misc/dahdi/files/patch-tools-menuselect-Makefile (contents, props changed) Modified: head/misc/dahdi/Makefile Modified: head/misc/dahdi/Makefile ============================================================================== --- head/misc/dahdi/Makefile Tue Oct 4 19:55:46 2016 (r423297) +++ head/misc/dahdi/Makefile Tue Oct 4 20:00:27 2016 (r423298) @@ -3,7 +3,7 @@ PORTNAME= dahdi PORTVERSION= ${DAHDI_VERSION:S/-//g} -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= misc MASTER_SITES= LOCAL/fjoe DISTNAME= ${PORTNAME}-freebsd-complete-${DAHDI_VERSION}+${DAHDI_TOOLS_VERSION} @@ -23,6 +23,7 @@ CONFIGURE_ENV= WGET=/usr/bin/fetch WRKSRC= ${WRKDIR}/${DISTNAME}/tools PATCH_WRKSRC= ${WRKDIR}/${DISTNAME} USE_LDCONFIG= yes +MAKE_ENV= HOST_CC=${CC} CONFLICTS= zaptel-[0-9]* Added: head/misc/dahdi/files/patch-tools-dahdi_monitor.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/dahdi/files/patch-tools-dahdi_monitor.c Tue Oct 4 20:00:27 2016 (r423298) @@ -0,0 +1,10 @@ +--- tools/dahdi_monitor.c.orig 2016-10-04 19:57:19.085982000 +0000 ++++ tools/dahdi_monitor.c 2016-10-04 19:57:34.349843000 +0000 +@@ -368,6 +368,7 @@ + + chan = atoi(argv[1]); + ++ optind = 2; + while ((opt = getopt(argc, argv, "vmol:f:r:t:s:F:R:T:S:")) != -1) { + switch (opt) { + case '?': Added: head/misc/dahdi/files/patch-tools-menuselect-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/dahdi/files/patch-tools-menuselect-Makefile Tue Oct 4 20:00:27 2016 (r423298) @@ -0,0 +1,11 @@ +--- tools/menuselect/Makefile.orig 2016-10-04 19:53:16.199527000 +0000 ++++ tools/menuselect/Makefile 2016-10-04 19:53:31.943912000 +0000 +@@ -64,7 +64,7 @@ + $(OBJS) $(C_OBJS) $(N_OBJS) $(G_OBJS) $(M_OBJS): autoconfig.h menuselect.h + + makeopts autoconfig.h: autoconfig.h.in makeopts.in +- @./configure $(CONFIGURE_SILENT) CC= LD= AR= CFLAGS= ++ @./configure $(CONFIGURE_SILENT) CC=${CC} LD= AR= CFLAGS= + + $(ALL_TGTS): mxml/libmxml.a +