Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Aug 2012 22:48:56 +0000 (UTC)
From:      Ryan Steinmetz <zi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r303354 - in head/sysutils: . msktutil msktutil/files
Message-ID:  <201208292248.q7TMmudk028365@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 900035
+LDFLAGS+=	-lgssapi_krb5
+.endif
+
+.if ${OSVERSION} < 800000
+BROKEN=		does not build on FreeBSD 7.x
+.endif
+
+.include <bsd.port.post.mk>

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 <netdb.h>
+ #include <sys/socket.h>
+ #include <sys/utsname.h>
++#include <netinet/in.h>
++#include <arpa/inet.h>
+ #include <ldap.h>
+ 
+ #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/



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