From owner-svn-ports-all@FreeBSD.ORG Tue Jan 7 13:31:54 2014 Return-Path: Delivered-To: svn-ports-all@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 177379C8; Tue, 7 Jan 2014 13:31:54 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 03190184A; Tue, 7 Jan 2014 13:31:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s07DVrJr022154; Tue, 7 Jan 2014 13:31:53 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s07DVqO6022144; Tue, 7 Jan 2014 13:31:52 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201401071331.s07DVqO6022144@svn.freebsd.org> From: William Grzybowski Date: Tue, 7 Jan 2014 13:31:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339005 - in head/sysutils: . hptcli 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.17 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: Tue, 07 Jan 2014 13:31:54 -0000 Author: wg Date: Tue Jan 7 13:31:52 2014 New Revision: 339005 URL: http://svnweb.freebsd.org/changeset/ports/339005 Log: sysutils/hptcli: HighPoint storage controllers management CLI Command Line Interface (CLI) for HighPoint Technologies raid management WWW: http://www.highpoint-tech.com/USA_new/cs-service_support.htm Added: head/sysutils/hptcli/ head/sysutils/hptcli/Makefile (contents, props changed) head/sysutils/hptcli/distinfo (contents, props changed) head/sysutils/hptcli/pkg-descr (contents, props changed) head/sysutils/hptcli/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Jan 7 13:23:54 2014 (r339004) +++ head/sysutils/Makefile Tue Jan 7 13:31:52 2014 (r339005) @@ -386,6 +386,7 @@ SUBDIR += hoz SUBDIR += hpacucli SUBDIR += hploscripts + SUBDIR += hptcli SUBDIR += hs-angel SUBDIR += hs-cpu SUBDIR += htop Added: head/sysutils/hptcli/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/hptcli/Makefile Tue Jan 7 13:31:52 2014 (r339005) @@ -0,0 +1,38 @@ +# Created by: William Grzybowski +# $FreeBSD$ + +PORTNAME= hptcli +PORTVERSION= 3.6 +CATEGORIES= sysutils +MASTER_SITES= http://www.highpoint-tech.com/BIOS_Driver/HRM/FreeBSD/ +DISTNAME= CLI-FreeBSD-3.6-1-120913 + +MAINTAINER= wg@FreeBSD.org +COMMENT= HighPoint storage controllers management CLI + +EXTRACT_SUFX= .tgz + +RESTRICTED= Redistribution is not allowed +ONLY_FOR_ARCHS= i386 amd64 + +WRKSRC= ${WRKDIR} +NO_BUILD= yes + +post-extract: + cd ${WRKDIR} && ${TAR} -xf hptraidconf-3.6-1.tbz && \ + ${TAR} -xf hptsvr-3.6-1.tbz + +.include + +do-install: + #@${MKDIR} ${STAGEDIR}${PREFIX} + ${INSTALL_MAN} ${WRKSRC}/hptraidconf.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 +.if ${ARCH} == "i386" + ${INSTALL_DATA} ${WRKSRC}/hptraidconf-8.0 ${STAGEDIR}${PREFIX}/bin/hptraidconf + ${INSTALL_DATA} ${WRKSRC}/hptsvr-3.6/hptsvr-8.0 ${STAGEDIR}${PREFIX}/sbin/hptsvr +.else + ${INSTALL_DATA} ${WRKSRC}/hptraidconf-8.0.amd64 ${STAGEDIR}${PREFIX}/bin/hptraidconf + ${INSTALL_DATA} ${WRKSRC}/hptsvr-3.6/hptsvr-8.0.amd64 ${STAGEDIR}${PREFIX}/sbin/hptsvr +.endif + +.include Added: head/sysutils/hptcli/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/hptcli/distinfo Tue Jan 7 13:31:52 2014 (r339005) @@ -0,0 +1,2 @@ +SHA256 (CLI-FreeBSD-3.6-1-120913.tgz) = 3945802c7063899c1870c844ee09128f52ddb704b03aae585c17722a98d9d774 +SIZE (CLI-FreeBSD-3.6-1-120913.tgz) = 8963206 Added: head/sysutils/hptcli/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/hptcli/pkg-descr Tue Jan 7 13:31:52 2014 (r339005) @@ -0,0 +1,3 @@ +Command Line Interface (CLI) for HighPoint Technologies raid management + +WWW: http://www.highpoint-tech.com/USA_new/cs-service_support.htm Added: head/sysutils/hptcli/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/hptcli/pkg-plist Tue Jan 7 13:31:52 2014 (r339005) @@ -0,0 +1,3 @@ +bin/hptraidconf +man/man1/hptraidconf.1.gz +sbin/hptsvr