svn commit: r329634 - in head: dns/dnsproxy net-im/jabber-pyicq net-im/jabber-pymsn
John Marino
marino at FreeBSD.org
Sun Oct 6 22:19:29 UTC 2013
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 at 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
More information about the svn-ports-all
mailing list