From owner-svn-ports-head@FreeBSD.ORG Wed Jun 11 15:02:38 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9020A17; Wed, 11 Jun 2014 15:02:38 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B422D21BD; Wed, 11 Jun 2014 15:02:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5BF2cCe027538; Wed, 11 Jun 2014 15:02:38 GMT (envelope-from kuriyama@svn.freebsd.org) Received: (from kuriyama@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5BF2aJ8027523; Wed, 11 Jun 2014 15:02:36 GMT (envelope-from kuriyama@svn.freebsd.org) Message-Id: <201406111502.s5BF2aJ8027523@svn.freebsd.org> From: Jun Kuriyama Date: Wed, 11 Jun 2014 15:02:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357489 - in head: net-p2p/libpdtp net-p2p/libpdtp/files net-p2p/squall net-p2p/squall/files net/tramp security/samba-virusfilter security/starttls 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.18 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, 11 Jun 2014 15:02:38 -0000 Author: kuriyama Date: Wed Jun 11 15:02:36 2014 New Revision: 357489 URL: http://svnweb.freebsd.org/changeset/ports/357489 QAT: https://qat.redports.org/buildarchive/r357489/ Log: - Stagify. Added: head/net-p2p/libpdtp/files/ head/net-p2p/libpdtp/files/patch-make-buildlib.sh (contents, props changed) head/net-p2p/libpdtp/files/patch-make-compile.sh (contents, props changed) head/net-p2p/libpdtp/files/patch-make-link.sh (contents, props changed) head/net-p2p/squall/files/ head/net-p2p/squall/files/patch-make-compile.sh (contents, props changed) head/net-p2p/squall/files/patch-make-link.sh (contents, props changed) Modified: head/net-p2p/libpdtp/Makefile head/net-p2p/squall/Makefile head/net/tramp/Makefile head/security/samba-virusfilter/Makefile head/security/starttls/Makefile Modified: head/net-p2p/libpdtp/Makefile ============================================================================== --- head/net-p2p/libpdtp/Makefile Wed Jun 11 14:53:17 2014 (r357488) +++ head/net-p2p/libpdtp/Makefile Wed Jun 11 15:02:36 2014 (r357489) @@ -14,9 +14,8 @@ HAS_CONFIGURE= yes USE_LDCONFIG= yes CFLAGS+= -fpic -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/pdtp ${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/libpdtp.* ${PREFIX}/lib + ${INSTALL_PROGRAM} ${WRKSRC}/pdtp ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/libpdtp.* ${STAGEDIR}${PREFIX}/lib .include Added: head/net-p2p/libpdtp/files/patch-make-buildlib.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/libpdtp/files/patch-make-buildlib.sh Wed Jun 11 15:02:36 2014 (r357489) @@ -0,0 +1,11 @@ +--- ./make-buildlib.sh.orig 2014-06-11 23:58:17.022462223 +0900 ++++ ./make-buildlib.sh 2014-06-11 23:58:26.037461106 +0900 +@@ -10,7 +10,7 @@ + BUILDLIBFLAGS="-lpthread -shared" + ;; + FreeBSD|OpenBSD|NetBSD) +- BUILDLIB=gcc ++ BUILDLIB=${CC} + BUILDLIBFLAGS="-pthread -shared" + ;; + SunOS) Added: head/net-p2p/libpdtp/files/patch-make-compile.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/libpdtp/files/patch-make-compile.sh Wed Jun 11 15:02:36 2014 (r357489) @@ -0,0 +1,11 @@ +--- ./make-compile.sh.orig 2014-06-11 23:56:44.234462034 +0900 ++++ ./make-compile.sh 2014-06-11 23:56:59.164462439 +0900 +@@ -11,7 +11,7 @@ + CFLAGS="-ansi -pedantic -fpic -g -Wall -D_GNU_SOURCE" + ;; + FreeBSD|OpenBSD|NetBSD) +- CC=gcc ++ CC=${CC} + CFLAGS="-ansi -pedantic -fpic -g -Wall" + ;; + SunOS) Added: head/net-p2p/libpdtp/files/patch-make-link.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/libpdtp/files/patch-make-link.sh Wed Jun 11 15:02:36 2014 (r357489) @@ -0,0 +1,11 @@ +--- ./make-link.sh.orig 2014-06-11 23:57:05.342462423 +0900 ++++ ./make-link.sh 2014-06-11 23:57:14.220461623 +0900 +@@ -6,7 +6,7 @@ + LDFLAGS="-lpthread" + ;; + FreeBSD|OpenBSD|NetBSD) +- LD=gcc ++ LD=${CC} + LDFLAGS="-pthread" + ;; + SunOS) Modified: head/net-p2p/squall/Makefile ============================================================================== --- head/net-p2p/squall/Makefile Wed Jun 11 14:53:17 2014 (r357488) +++ head/net-p2p/squall/Makefile Wed Jun 11 15:02:36 2014 (r357489) @@ -13,13 +13,12 @@ HAS_CONFIGURE= yes WRKSRC= ${WRKDIR}/${PORTNAME} STRIP= # Keep empty for debugging. -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/squall/squall ${PREFIX}/sbin - ${INSTALL_PROGRAM} ${WRKSRC}/squallhub/squallhub ${PREFIX}/sbin - ${INSTALL_PROGRAM} ${WRKSRC}/squallproxy/squallproxy ${PREFIX}/sbin - ${INSTALL_PROGRAM} ${WRKSRC}/squirt/squirt ${PREFIX}/sbin - ${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${DOCSDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/squall/squall ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/squallhub/squallhub ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/squallproxy/squallproxy ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/squirt/squirt ${STAGEDIR}${PREFIX}/sbin + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${STAGEDIR}${DOCSDIR} .include Added: head/net-p2p/squall/files/patch-make-compile.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/squall/files/patch-make-compile.sh Wed Jun 11 15:02:36 2014 (r357489) @@ -0,0 +1,11 @@ +--- make-compile.sh.orig 2014-06-11 23:42:34.333462233 +0900 ++++ make-compile.sh 2014-06-11 23:42:45.001462051 +0900 +@@ -8,7 +8,7 @@ + CFLAGS="-D_REENTRANT -D_THREAD_SAFE -g -O3 -Wall" + ;; + FreeBSD|OpenBSD|NetBSD) +- CC=gcc ++ CC=${CC} + CFLAGS="-D_REENTRANT -D_THREAD_SAFE -ansi -pedantic -g -O3 -Wall" + ;; + Linux) Added: head/net-p2p/squall/files/patch-make-link.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/squall/files/patch-make-link.sh Wed Jun 11 15:02:36 2014 (r357489) @@ -0,0 +1,11 @@ +--- make-link.sh.orig 2014-06-11 23:44:37.727462291 +0900 ++++ make-link.sh 2014-06-11 23:47:07.004461915 +0900 +@@ -6,7 +6,7 @@ + LDFLAGS=-lpthread + ;; + FreeBSD|OpenBSD|NetBSD) +- LD=gcc ++ LD=${CC} + LDFLAGS=-pthread + ;; + SunOS) Modified: head/net/tramp/Makefile ============================================================================== --- head/net/tramp/Makefile Wed Jun 11 14:53:17 2014 (r357488) +++ head/net/tramp/Makefile Wed Jun 11 15:02:36 2014 (r357489) @@ -30,7 +30,6 @@ CONFIGURE_ARGS+= --with-japanese-manual INFO+= tramp .endif -NO_STAGE= yes .include .if ${EMACS_PORT_NAME} == emacs20 Modified: head/security/samba-virusfilter/Makefile ============================================================================== --- head/security/samba-virusfilter/Makefile Wed Jun 11 14:53:17 2014 (r357488) +++ head/security/samba-virusfilter/Makefile Wed Jun 11 15:02:36 2014 (r357489) @@ -20,5 +20,4 @@ SAMBA_PORT?= samba36 USE_AUTOTOOLS= autoconf autoheader # for net/${SAMBA_PORT} configure MAKE_ARGS= SAMBA_DATADIR=${PREFIX} -NO_STAGE= yes .include Modified: head/security/starttls/Makefile ============================================================================== --- head/security/starttls/Makefile Wed Jun 11 14:53:17 2014 (r357488) +++ head/security/starttls/Makefile Wed Jun 11 15:02:36 2014 (r357489) @@ -13,5 +13,4 @@ GNU_CONFIGURE= yes USES= gmake USE_EMACS= yes -NO_STAGE= yes .include