From owner-svn-ports-head@FreeBSD.ORG Thu Oct 10 13:41:56 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 2303EE8B; Thu, 10 Oct 2013 13:41:56 +0000 (UTC) (envelope-from trociny@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 0DF552D3B; Thu, 10 Oct 2013 13:41:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9ADftan042779; Thu, 10 Oct 2013 13:41:55 GMT (envelope-from trociny@svn.freebsd.org) Received: (from trociny@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9ADfttC042777; Thu, 10 Oct 2013 13:41:55 GMT (envelope-from trociny@svn.freebsd.org) Message-Id: <201310101341.r9ADfttC042777@svn.freebsd.org> From: Mikolaj Golub Date: Thu, 10 Oct 2013 13:41:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r329998 - head/net-mgmt/hastmon 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: Thu, 10 Oct 2013 13:41:56 -0000 Author: trociny (src committer) Date: Thu Oct 10 13:41:55 2013 New Revision: 329998 URL: http://svnweb.freebsd.org/changeset/ports/329998 Log: Add stage support. Approved by: bdrewery Added: head/net-mgmt/hastmon/pkg-plist (contents, props changed) Modified: head/net-mgmt/hastmon/Makefile Modified: head/net-mgmt/hastmon/Makefile ============================================================================== --- head/net-mgmt/hastmon/Makefile Thu Oct 10 13:36:27 2013 (r329997) +++ head/net-mgmt/hastmon/Makefile Thu Oct 10 13:41:55 2013 (r329998) @@ -3,6 +3,7 @@ PORTNAME= hastmon PORTVERSION= 0.3.1 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= GOOGLE_CODE @@ -18,26 +19,17 @@ INSTALL_TARGET= installdirs install PORTDOCS= ChangeLog COPYRIGHT README -MAN5= hastmon.conf.5 -MAN8= hastmon.8 hastmonctl.8 - -PLIST_FILES= sbin/hastmon \ - sbin/hastmonctl \ - etc/rc.d/hastmon - -NO_STAGE= yes do-build: ${SETENV} ${MKCMAKE_ENV} ${MKCMAKE} -C ${WRKSRC} do-install: - ${SETENV} ${MKCMAKE_ENV} ${MKCMAKE} -C ${WRKSRC} ${INSTALL_TARGET} + ${SETENV} ${MKCMAKE_ENV} DESTDIR=${STAGEDIR} \ + ${MKCMAKE} -C ${WRKSRC} ${INSTALL_TARGET} post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for doc in ${PORTDOCS} - ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/${doc} ${DOCSDIR} + ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/${doc} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include Added: head/net-mgmt/hastmon/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/hastmon/pkg-plist Thu Oct 10 13:41:55 2013 (r329998) @@ -0,0 +1,6 @@ +etc/rc.d/hastmon +sbin/hastmon +sbin/hastmonctl +man/man5/hastmon.conf.5.gz +man/man8/hastmon.8.gz +man/man8/hastmonctl.8.gz