From owner-svn-ports-head@FreeBSD.ORG Wed Aug 29 22:48:56 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7DFF5106566C; Wed, 29 Aug 2012 22:48:56 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 68E148FC15; Wed, 29 Aug 2012 22:48:56 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7TMmubJ028371; Wed, 29 Aug 2012 22:48:56 GMT (envelope-from zi@svn.freebsd.org) Received: (from zi@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7TMmudk028365; Wed, 29 Aug 2012 22:48:56 GMT (envelope-from zi@svn.freebsd.org) Message-Id: <201208292248.q7TMmudk028365@svn.freebsd.org> From: Ryan Steinmetz Date: Wed, 29 Aug 2012 22:48:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303354 - in head/sysutils: . msktutil msktutil/files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 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, 29 Aug 2012 22:48:56 -0000 Author: zi Date: Wed Aug 29 22:48:55 2012 New Revision: 303354 URL: http://svn.freebsd.org/changeset/ports/303354 Log: New port: sysutils/msktutil: Msktutil is a program for interoperability with Active Directory that can: Create a computer account in Active Directory Create a system Kerberos keytab Add and remove principals to and from that keytab Change the computer account's password WWW: https://fuhm.net/software/msktutil/ Added: head/sysutils/msktutil/ head/sysutils/msktutil/Makefile (contents, props changed) head/sysutils/msktutil/distinfo (contents, props changed) head/sysutils/msktutil/files/ head/sysutils/msktutil/files/patch-msktutil.h (contents, props changed) head/sysutils/msktutil/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Wed Aug 29 22:34:04 2012 (r303353) +++ head/sysutils/Makefile Wed Aug 29 22:48:55 2012 (r303354) @@ -545,6 +545,7 @@ SUBDIR += mount.app SUBDIR += mountsmb2 SUBDIR += mpiexec + SUBDIR += msktutil SUBDIR += msyslog SUBDIR += mtpfs SUBDIR += mtxorbd Added: head/sysutils/msktutil/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/msktutil/Makefile Wed Aug 29 22:48:55 2012 (r303354) @@ -0,0 +1,37 @@ +# New ports collection makefile for: zi +# Date created: 2012-08-29 +# Whom: zi@FreeBSD.org +# +# $FreeBSD$ + +PORTNAME= msktutil +PORTVERSION= 0.4 +CATEGORIES= sysutils +MASTER_SITES= https://fuhm.net/software/msktutil/releases/ \ + http://mirrors.rit.edu/zi/ + +MAINTAINER= zi@FreeBSD.org +COMMENT= A utility to manage Active Directory interoperability + +USE_BZIP2= yes +USE_GMAKE= yes +USE_OPENLDAP= yes +GNU_CONFIGURE= yes +WANT_OPENLDAP_SASL= yes + +CONFIGURE_ARGS+=--with-sasldir=${PREFIX} + +MAN1= msktutil.1 +PLIST_FILES= sbin/msktutil + +.include + +.if ${OSVERSION} < 900035 +LDFLAGS+= -lgssapi_krb5 +.endif + +.if ${OSVERSION} < 800000 +BROKEN= does not build on FreeBSD 7.x +.endif + +.include Added: head/sysutils/msktutil/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/msktutil/distinfo Wed Aug 29 22:48:55 2012 (r303354) @@ -0,0 +1,2 @@ +SHA256 (msktutil-0.4.tar.bz2) = edaedc347a8c552f243769c93217fda6f576cea985da289df1b4b7c5bca82ee8 +SIZE (msktutil-0.4.tar.bz2) = 63978 Added: head/sysutils/msktutil/files/patch-msktutil.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/msktutil/files/patch-msktutil.h Wed Aug 29 22:48:55 2012 (r303354) @@ -0,0 +1,11 @@ +--- ./msktutil.h.orig 2012-08-29 17:25:54.000000000 -0400 ++++ ./msktutil.h 2012-08-29 17:26:12.000000000 -0400 +@@ -43,6 +43,8 @@ + #include + #include + #include ++#include ++#include + #include + + #ifdef HAVE_COM_ERR_H Added: head/sysutils/msktutil/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/msktutil/pkg-descr Wed Aug 29 22:48:55 2012 (r303354) @@ -0,0 +1,8 @@ +Msktutil is a program for interoperability with Active Directory that can: + + Create a computer account in Active Directory + Create a system Kerberos keytab + Add and remove principals to and from that keytab + Change the computer account's password + +WWW: https://fuhm.net/software/msktutil/