From owner-svn-ports-all@FreeBSD.ORG Sun Jun 8 15:20:24 2014 Return-Path: Delivered-To: svn-ports-all@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 ESMTPS id 6026CC33; Sun, 8 Jun 2014 15:20:24 +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 32E712E7F; Sun, 8 Jun 2014 15:20:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s58FKOPi028507; Sun, 8 Jun 2014 15:20:24 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s58FKNpL028503; Sun, 8 Jun 2014 15:20:23 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406081520.s58FKNpL028503@svn.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Jun 2014 15:20:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357044 - in head/math/xplot: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2014 15:20:24 -0000 Author: vanilla Date: Sun Jun 8 15:20:23 2014 New Revision: 357044 URL: http://svnweb.freebsd.org/changeset/ports/357044 QAT: https://qat.redports.org/buildarchive/r357044/ Log: Stagify. Added: head/math/xplot/files/ head/math/xplot/files/patch-Makefile (contents, props changed) Modified: head/math/xplot/Makefile Modified: head/math/xplot/Makefile ============================================================================== --- head/math/xplot/Makefile Sun Jun 8 15:15:21 2014 (r357043) +++ head/math/xplot/Makefile Sun Jun 8 15:20:23 2014 (r357044) @@ -15,21 +15,21 @@ USE_XORG= x11 USE_PERL5= run GNU_CONFIGURE= yes -MAN1= tcpdump2xplot.1 xplot.1 PORTDOCS= README README.tcp_plots -PLIST_FILES= bin/tcpdump2xplot bin/tcpdump2xplot.pl bin/xplot +PLIST_FILES= bin/tcpdump2xplot bin/tcpdump2xplot.pl bin/xplot \ + man/man1/tcpdump2xplot.1.gz \ + man/man1/xplot.1.gz -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e \ '/INSTALL/s|2xplot$$|2xplot.pl|' ${WRKSRC}/Makefile.in post-install: - ${LN} -sf tcpdump2xplot.pl ${PREFIX}/bin/tcpdump2xplot + ${LN} -sf tcpdump2xplot.pl ${STAGEDIR}${PREFIX}/bin/tcpdump2xplot .if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for doc in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} .endfor .endif Added: head/math/xplot/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/xplot/files/patch-Makefile Sun Jun 8 15:20:23 2014 (r357044) @@ -0,0 +1,19 @@ +--- Makefile.in.orig 2014-06-08 23:17:52.261073676 +0800 ++++ Makefile.in 2014-06-08 23:18:17.975100570 +0800 +@@ -70,11 +70,11 @@ version_string.c: version + echo 'char *version_string = "'`cat version`'";' >version_string.c + + install: all +- mkdir -p $(bindir) +- $(INSTALL_PROGRAM) xplot $(bindir)/xplot +- $(INSTALL) tcpdump2xplot.pl $(bindir)/tcpdump2xplot +- mkdir -p $(mandir) +- $(INSTALL_MAN) $(MANFILES) $(mandir) ++ mkdir -p $(DESTDIR)$(bindir) ++ $(INSTALL_PROGRAM) xplot $(DESTDIR)$(bindir)/xplot ++ $(INSTALL) tcpdump2xplot.pl $(DESTDIR)$(bindir)/tcpdump2xplot ++ mkdir -p $(DESTDIR)$(mandir) ++ $(INSTALL_MAN) $(MANFILES) $(DESTDIR)$(mandir) + clean: + rm -f ${PROG} ${PROG}.old *.o version_string.c +