From owner-svn-ports-head@FreeBSD.ORG Wed Oct 23 18:57:50 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 8820FCD7; Wed, 23 Oct 2013 18:57:50 +0000 (UTC) (envelope-from eadler@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 74CB72565; Wed, 23 Oct 2013 18:57:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9NIvoIK001375; Wed, 23 Oct 2013 18:57:50 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9NIvnG3001369; Wed, 23 Oct 2013 18:57:49 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201310231857.r9NIvnG3001369@svn.freebsd.org> From: Eitan Adler Date: Wed, 23 Oct 2013 18:57:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331409 - in head: devel/cdecl devel/newfile devel/p5-File-Append-TempFile devel/stlfilt x11/xbindkeys x11/xclip 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: Wed, 23 Oct 2013 18:57:50 -0000 Author: eadler Date: Wed Oct 23 18:57:48 2013 New Revision: 331409 URL: http://svnweb.freebsd.org/changeset/ports/331409 Log: Unquiet my ports to make debugging easier. Modified: head/devel/cdecl/Makefile head/devel/newfile/Makefile head/devel/p5-File-Append-TempFile/Makefile head/devel/stlfilt/Makefile head/x11/xbindkeys/Makefile head/x11/xclip/Makefile Modified: head/devel/cdecl/Makefile ============================================================================== --- head/devel/cdecl/Makefile Wed Oct 23 18:56:57 2013 (r331408) +++ head/devel/cdecl/Makefile Wed Oct 23 18:57:48 2013 (r331409) @@ -24,7 +24,7 @@ CONFLICTS= cutils-[0-9]* post-install: .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/testset* ${STAGEDIR}${DOCSDIR} .endif Modified: head/devel/newfile/Makefile ============================================================================== --- head/devel/newfile/Makefile Wed Oct 23 18:56:57 2013 (r331408) +++ head/devel/newfile/Makefile Wed Oct 23 18:57:48 2013 (r331409) @@ -26,7 +26,7 @@ post-configure: post-install: ${INSTALL_MAN} ${WRKSRC}/doc/newfile.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/doc/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ .endif Modified: head/devel/p5-File-Append-TempFile/Makefile ============================================================================== --- head/devel/p5-File-Append-TempFile/Makefile Wed Oct 23 18:56:57 2013 (r331408) +++ head/devel/p5-File-Append-TempFile/Makefile Wed Oct 23 18:57:48 2013 (r331409) @@ -19,7 +19,7 @@ USE_PERL5= configure PORTDOCS= Changes README test: build - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test + cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test .include Modified: head/devel/stlfilt/Makefile ============================================================================== --- head/devel/stlfilt/Makefile Wed Oct 23 18:56:57 2013 (r331408) +++ head/devel/stlfilt/Makefile Wed Oct 23 18:57:48 2013 (r331409) @@ -26,7 +26,7 @@ post-patch: do-install: .for file in gSTLFilt.pl gfilt - @${INSTALL_SCRIPT} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin .endfor .include Modified: head/x11/xbindkeys/Makefile ============================================================================== --- head/x11/xbindkeys/Makefile Wed Oct 23 18:56:57 2013 (r331408) +++ head/x11/xbindkeys/Makefile Wed Oct 23 18:57:48 2013 (r331409) @@ -42,7 +42,7 @@ post-patch: @${REINPLACE_CMD} -e 's| wish | ${WISH} |g' ${WRKSRC}/xbindkeys_show post-install: - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/xbindkeysrc ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/x11/xclip/Makefile ============================================================================== --- head/x11/xclip/Makefile Wed Oct 23 18:56:57 2013 (r331408) +++ head/x11/xclip/Makefile Wed Oct 23 18:57:48 2013 (r331409) @@ -20,7 +20,7 @@ GNU_CONFIGURE= yes PLIST_FILES= bin/xclip bin/xclip-copyfile bin/xclip-cutfile bin/xclip-pastefile man/man1/xclip.1.gz man/man1/xclip-copyfile.1.gz pre-configure: - @cd ${WRKSRC}; ./bootstrap + cd ${WRKSRC}; ./bootstrap post-patch: ${REINPLACE_CMD} 's,mktemp,mktemp -t xclip,' \