From owner-svn-ports-head@FreeBSD.ORG Sun Oct 6 22:19:29 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D7877C38; Sun, 6 Oct 2013 22:19:28 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B596E2228; Sun, 6 Oct 2013 22:19:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r96MJS5S041992; Sun, 6 Oct 2013 22:19:28 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r96MJSSf041989; Sun, 6 Oct 2013 22:19:28 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201310062219.r96MJSSf041989@svn.freebsd.org> From: John Marino Date: Sun, 6 Oct 2013 22:19:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329634 - in head: dns/dnsproxy net-im/jabber-pyicq net-im/jabber-pymsn 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.14 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: Sun, 06 Oct 2013 22:19:29 -0000 Author: marino Date: Sun Oct 6 22:19:27 2013 New Revision: 329634 URL: http://svnweb.freebsd.org/changeset/ports/329634 Log: Remove verbose flag from install command of three unmaintained ports It appears that the -v option (verbose) is handled slightly differently on DragonFly. FreeBSD appears to be intolerant of where it appears in the command line while the DragonFly version of "install" insists that it appear in the early group of options. In any case, these three ports may be the only ones in the entire ports collection to use -v switch with ${INSTALL_DATA}, so for the sake of compatibility and consistency, it is being removed from these unmaintained ports which also local patches to be removed from DPorts. Modified: head/dns/dnsproxy/Makefile head/net-im/jabber-pyicq/Makefile head/net-im/jabber-pymsn/Makefile Modified: head/dns/dnsproxy/Makefile ============================================================================== --- head/dns/dnsproxy/Makefile Sun Oct 6 22:06:43 2013 (r329633) +++ head/dns/dnsproxy/Makefile Sun Oct 6 22:19:27 2013 (r329634) @@ -7,7 +7,7 @@ CATEGORIES= dns MASTER_SITES= http://www.wolfermann.org/ MAINTAINER= ports@FreeBSD.org -COMMENT= A proxy for DNS queries +COMMENT= proxy for DNS queries BUILD_DEPENDS= ${LOCALBASE}/lib/libevent.so:${PORTSDIR}/devel/libevent @@ -28,7 +28,7 @@ do-install: @${INSTALL_PROGRAM} ${WRKSRC}/dnsproxy ${PREFIX}/sbin @${INSTALL_MAN} ${WRKSRC}/dnsproxy.1 ${MAN1PREFIX}/man/man1 @${MKDIR} ${ETCDIR} - @${INSTALL_DATA} -v ${WRKSRC}/dnsproxy.conf ${ETCDIR}/dnsproxy.conf.sample + @${INSTALL_DATA} ${WRKSRC}/dnsproxy.conf ${ETCDIR}/dnsproxy.conf.sample post-install: ${CAT} ${PKGMESSAGE} Modified: head/net-im/jabber-pyicq/Makefile ============================================================================== --- head/net-im/jabber-pyicq/Makefile Sun Oct 6 22:06:43 2013 (r329633) +++ head/net-im/jabber-pyicq/Makefile Sun Oct 6 22:19:27 2013 (r329634) @@ -113,9 +113,9 @@ do-install: @${MKDIR} ${DOCSDIR} . for portdoc in ${PORTDOCS} @if [ -f ${WRKDIR}/${portdoc} ]; then \ - ${INSTALL_DATA} -v ${WRKDIR}/${portdoc} ${DOCSDIR}/; \ + ${INSTALL_DATA} ${WRKDIR}/${portdoc} ${DOCSDIR}/; \ else \ - ${INSTALL_DATA} -v ${WRKSRC}/${portdoc} ${DOCSDIR}/; \ + ${INSTALL_DATA} ${WRKSRC}/${portdoc} ${DOCSDIR}/; \ fi . endfor .endif Modified: head/net-im/jabber-pymsn/Makefile ============================================================================== --- head/net-im/jabber-pymsn/Makefile Sun Oct 6 22:06:43 2013 (r329633) +++ head/net-im/jabber-pymsn/Makefile Sun Oct 6 22:19:27 2013 (r329634) @@ -120,9 +120,9 @@ do-install: @${MKDIR} ${DOCSDIR} .for portdoc in ${PORTDOCS} @if [ -f ${WRKDIR}/${portdoc} ]; then \ - ${INSTALL_DATA} -v ${WRKDIR}/${portdoc} ${DOCSDIR}/; \ + ${INSTALL_DATA} ${WRKDIR}/${portdoc} ${DOCSDIR}/; \ else \ - ${INSTALL_DATA} -v ${WRKSRC}/${portdoc} ${DOCSDIR}/; \ + ${INSTALL_DATA} ${WRKSRC}/${portdoc} ${DOCSDIR}/; \ fi .endfor .endif