Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Oct 2013 09:33:05 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r330995 - in head/sysutils/dtpstree: . files
Message-ID:  <201310200933.r9K9X5ci099929@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sun Oct 20 09:33:04 2013
New Revision: 330995
URL: http://svnweb.freebsd.org/changeset/ports/330995

Log:
  - Fix build with clang
  - Use USES=gmake
  - Support STAGEDIR
  
  PR:		ports/183116
  Submitted by:	sunpoet (myself)
  Approved by:	Douglas Thrift <douglas@douglasthrift.net> (maintainer)

Added:
  head/sysutils/dtpstree/files/
  head/sysutils/dtpstree/files/patch-dtpstree.cpp   (contents, props changed)
Modified:
  head/sysutils/dtpstree/Makefile   (contents, props changed)

Modified: head/sysutils/dtpstree/Makefile
==============================================================================
--- head/sysutils/dtpstree/Makefile	Sun Oct 20 08:42:42 2013	(r330994)
+++ head/sysutils/dtpstree/Makefile	Sun Oct 20 09:33:04 2013	(r330995)
@@ -13,11 +13,12 @@ COMMENT=	Display a tree of processes
 LICENSE=	AL2
 
 USE_XZ=		yes
-USE_GMAKE=	yes
 GNU_CONFIGURE=	yes
 MAKEFILE=	GNUmakefile
+USES=		gmake
+
 MAN1=		dtpstree.1
-PLIST_FILES=	bin/dtpstree
+PLIST_FILES=	bin/dtpstree \
+		man/man1/dtpstree.1.gz
 
-NO_STAGE=	yes
 .include <bsd.port.mk>

Added: head/sysutils/dtpstree/files/patch-dtpstree.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/dtpstree/files/patch-dtpstree.cpp	Sun Oct 20 09:33:04 2013	(r330995)
@@ -0,0 +1,10 @@
+--- dtpstree.cpp.orig	2010-08-05 16:01:47.000000000 +0800
++++ dtpstree.cpp	2013-10-19 19:48:34.750149337 +0800
+@@ -21,6 +21,7 @@
+ 
+ #include <cerrno>
+ #include <climits>
++#include <clocale>
+ #include <cstdarg>
+ #include <cstdio>
+ #include <cstdlib>



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