From owner-freebsd-ports@FreeBSD.ORG Wed Aug 6 19:09:01 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2937337B401 for ; Wed, 6 Aug 2003 19:09:01 -0700 (PDT) Received: from mx1.au.itouchnet.net (nat2.au.itouchnet.net [144.135.23.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ADA143F85 for ; Wed, 6 Aug 2003 19:08:59 -0700 (PDT) (envelope-from ajthomson@optushome.com.au) Received: from nobody by mx1.au.itouchnet.net with scanned_ok (Exim 3.36 #1) id 19kaD3-000OTr-00 for ports@freebsd.org; Thu, 07 Aug 2003 12:08:57 +1000 X-TLS: TLSv1:DES-CBC3-SHA:168 athomson.prv.au.itouchnet.net -> mx1.au.itouchnet.net Received: from athomson.prv.au.itouchnet.net ([192.168.13.55]) by mx1.au.itouchnet.net with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 3.36 #1) id 19kaD2-000OTi-00 for ports@freebsd.org; Thu, 07 Aug 2003 12:08:56 +1000 From: Andrew Thomson To: ports@freebsd.org Content-Type: multipart/mixed; boundary="=-N8DWXOS5tGGHgZ2Pu7Pe" Message-Id: <1060222135.44133.4.camel@athomson.prv.au.itouchnet.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Thu, 07 Aug 2003 12:08:56 +1000 X-Checked: Scanned for any viruses and unauthorized attachments at mx1.au.itouchnet.net X-iScan-ID: 94101-1060222136-17042@mx1.au.itouchnet.net version $Name: REL_2_0_2 $ Subject: net/py-ldap2 update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2003 02:09:01 -0000 --=-N8DWXOS5tGGHgZ2Pu7Pe Content-Type: text/plain Content-Transfer-Encoding: 7bit rather than just tell everyone that this port is out of date, i actually thought i'd give it a crack at updating it. this definitely isn't my area of expertise but i did get it to compile with the following modifications to the current Makefile. I didn't have my openldap21 compiled with the sasl2 business so I took that out.. i'm sure there's something funky to get around that! ;) regards, ajt. --=-N8DWXOS5tGGHgZ2Pu7Pe Content-Disposition: attachment; filename=py-ldap2.diff Content-Type: text/plain; name=py-ldap2.diff; charset= Content-Transfer-Encoding: 7bit --- Makefile Mon Feb 24 13:56:35 2003 +++ Makefile.ajt Wed Aug 6 19:46:33 2003 @@ -5,7 +5,7 @@ # $FreeBSD: ports/net/py-ldap2/Makefile,v 1.21 2003/02/24 02:56:35 edwin Exp $ PORTNAME= ldap2 -PORTVERSION= 2.0.0pre04 +PORTVERSION= 2.0.0pre13 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= python-ldap @@ -27,9 +27,9 @@ #libs = lber ldap resolv do-configure: @${MV} ${WRKSRC}/setup.cfg ${WRKSRC}/setup.cfg.sed - ${SED} -e "s=/usr/local/openldap2/lib=${LOCALBASE}/lib=" \ - -e "s=/usr/local/openldap2/include=${LOCALBASE}/include=" \ - -e "s=lber ldap resolv=lber ldap=" \ + ${SED} -e "s=/usr/local/openldap-REL_ENG_2_1/lib=${LOCALBASE}/lib=" \ + -e "s=/usr/local/openldap-REL_ENG_2_1/include=${LOCALBASE}/include=" \ + -e "s=ldap_r lber sasl2 ssl crypto=ldap_r lber ssl crypto=" \ ${WRKSRC}/setup.cfg.sed > ${WRKSRC}/setup.cfg .include --=-N8DWXOS5tGGHgZ2Pu7Pe--