[30565] trunk/dports/perl

source_changes at macosforge.org source_changes at macosforge.org
Wed Oct 31 02:18:53 PDT 2007


Revision: 30565
          http://trac.macosforge.org/projects/macports/changeset/30565
Author:   ryandesign at macports.org
Date:     2007-10-31 02:18:53 -0700 (Wed, 31 Oct 2007)

Log Message:
-----------
p5-authen-smb: new port; see #12849

Added Paths:
-----------
    trunk/dports/perl/p5-authen-smb/
    trunk/dports/perl/p5-authen-smb/Portfile
    trunk/dports/perl/p5-authen-smb/files/
    trunk/dports/perl/p5-authen-smb/files/patch-smbval-rfcnb-util.c.diff
    trunk/dports/perl/p5-authen-smb/files/patch-smbval-session.c.diff
    trunk/dports/perl/p5-authen-smb/files/patch-smbval-smbencrypt.c.diff
    trunk/dports/perl/p5-authen-smb/files/patch-smbval-smblib-util.c.diff
    trunk/dports/perl/p5-authen-smb/files/patch-smbval-smblib.c.diff

Added: trunk/dports/perl/p5-authen-smb/Portfile
===================================================================
--- trunk/dports/perl/p5-authen-smb/Portfile	                        (rev 0)
+++ trunk/dports/perl/p5-authen-smb/Portfile	2007-10-31 09:18:53 UTC (rev 30565)
@@ -0,0 +1,17 @@
+# $Id$
+
+PortSystem        1.0
+PortGroup         perl5 1.0
+
+perl5.setup       Authen-Smb 0.91
+maintainers       mni at oaf.dk
+description       Perl extension to authenticate against an Samba server
+long_description  Authen::Smb is a module which allows you to authenticate a user \
+                  against an NT domain directly from Perl.
+checksums   	  md5 97d8aee872160eeabd0c08a7b0985216
+platforms         darwin
+patchfiles        patch-smbval-smbencrypt.c.diff \
+                  patch-smbval-rfcnb-util.c.diff \
+                  patch-smbval-session.c.diff \
+                  patch-smbval-smblib-util.c.diff \
+                  patch-smbval-smblib.c.diff


Property changes on: trunk/dports/perl/p5-authen-smb/Portfile
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native

Added: trunk/dports/perl/p5-authen-smb/files/patch-smbval-rfcnb-util.c.diff
===================================================================
--- trunk/dports/perl/p5-authen-smb/files/patch-smbval-rfcnb-util.c.diff	                        (rev 0)
+++ trunk/dports/perl/p5-authen-smb/files/patch-smbval-rfcnb-util.c.diff	2007-10-31 09:18:53 UTC (rev 30565)
@@ -0,0 +1,11 @@
+--- smbval/rfcnb-util.c.orig	2007-10-03 14:04:13.000000000 +0200
++++ smbval/rfcnb-util.c	2007-10-03 14:05:26.000000000 +0200
+@@ -24,7 +24,7 @@
+ */
+ 
+ #include <string.h>
+-#include <malloc.h>
++#include <stdlib.h>
+ #include <arpa/inet.h>
+ 
+ #include "std-includes.h"

Added: trunk/dports/perl/p5-authen-smb/files/patch-smbval-session.c.diff
===================================================================
--- trunk/dports/perl/p5-authen-smb/files/patch-smbval-session.c.diff	                        (rev 0)
+++ trunk/dports/perl/p5-authen-smb/files/patch-smbval-session.c.diff	2007-10-31 09:18:53 UTC (rev 30565)
@@ -0,0 +1,11 @@
+--- smbval/session.c.orig	2007-10-03 14:04:20.000000000 +0200
++++ smbval/session.c	2007-10-03 14:05:26.000000000 +0200
+@@ -23,7 +23,7 @@
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+ 
+-#include <malloc.h>
++#include <stdlib.h>
+ #include <string.h>
+ 
+ int RFCNB_errno = 0;

Added: trunk/dports/perl/p5-authen-smb/files/patch-smbval-smbencrypt.c.diff
===================================================================
--- trunk/dports/perl/p5-authen-smb/files/patch-smbval-smbencrypt.c.diff	                        (rev 0)
+++ trunk/dports/perl/p5-authen-smb/files/patch-smbval-smbencrypt.c.diff	2007-10-31 09:18:53 UTC (rev 30565)
@@ -0,0 +1,10 @@
+--- smbval/smbencrypt.c.orig	2007-10-03 14:03:40.000000000 +0200
++++ smbval/smbencrypt.c	2007-10-03 14:05:26.000000000 +0200
+@@ -24,7 +24,6 @@
+ #include <arpa/inet.h>
+ #include <dirent.h>
+ #include <string.h>
+-#include <sys/vfs.h>
+ #include <netinet/in.h>
+ #include <ctype.h>
+ #include "smblib-priv.h"

Added: trunk/dports/perl/p5-authen-smb/files/patch-smbval-smblib-util.c.diff
===================================================================
--- trunk/dports/perl/p5-authen-smb/files/patch-smbval-smblib-util.c.diff	                        (rev 0)
+++ trunk/dports/perl/p5-authen-smb/files/patch-smbval-smblib-util.c.diff	2007-10-31 09:18:53 UTC (rev 30565)
@@ -0,0 +1,11 @@
+--- smbval/smblib-util.c.orig	2007-10-03 14:04:31.000000000 +0200
++++ smbval/smblib-util.c	2007-10-03 14:05:26.000000000 +0200
+@@ -24,7 +24,7 @@
+ */
+ 
+ #include "smblib-priv.h"
+-#include <malloc.h>
++#include <stdlib.h>
+ 
+ #include "rfcnb.h"
+ 

Added: trunk/dports/perl/p5-authen-smb/files/patch-smbval-smblib.c.diff
===================================================================
--- trunk/dports/perl/p5-authen-smb/files/patch-smbval-smblib.c.diff	                        (rev 0)
+++ trunk/dports/perl/p5-authen-smb/files/patch-smbval-smblib.c.diff	2007-10-31 09:18:53 UTC (rev 30565)
@@ -0,0 +1,11 @@
+--- smbval/smblib.c.orig	2007-10-03 14:04:44.000000000 +0200
++++ smbval/smblib.c	2007-10-03 14:05:26.000000000 +0200
+@@ -24,7 +24,7 @@
+ */
+ 
+ #include "config.h"
+-#include <malloc.h>
++#include <stdlib.h>
+ 
+ int SMBlib_errno;
+ int SMBlib_SMB_Error;

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20071031/cc1ef1ca/attachment.html


More information about the macports-changes mailing list