Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Oct 2013 22:19:28 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
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
Message-ID:  <201310062219.r96MJSSf041989@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310062219.r96MJSSf041989>