| Summary: | Change Cyrus-SASL port to use PORTDOCS, DOCSDIR | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Ports & Packages | Reporter: | Scot W. Hetzel <hetzels> | ||||
| Component: | Individual Port(s) | Assignee: | dwcjr | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
Scot W. Hetzel
2001-08-03 04:40:01 UTC
Responsible Changed From-To: gnats-admin->freebsd-ports Wrong category, assign it to ports The following patch to the Cyrus-SASL port adds IPv6 Support via a patch from Hajimu UMEMOTO. Could someone apply the patches in this PR before the ports freeze. Thanks, Scot W. Hetzel diff -ruN cyrus-sasl.orig/Makefile cyrus-sasl/Makefile --- cyrus-sasl.orig/Makefile Thu Aug 2 22:11:49 2001 +++ cyrus-sasl/Makefile Sat Aug 11 16:50:47 2001 @@ -7,11 +7,15 @@ PORTNAME= cyrus-sasl PORTVERSION= 1.5.24 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ \ ${MASTER_SITE_LOCAL} \ ftp://ftp.hanse.de/sites/transit/mirror/ftp.andrew.cmu.edu/pub/cyrus-mail/ + +PATCH_SITES= http://www.imasy.or.jp/~ume/ipv6/ +PATCHFILES= ${DISTNAME}-ipv6-20010321.diff.gz + MASTER_SITE_SUBDIR= stb/mirror/ftp.andrew.cmu.edu/pub/cyrus-mail MAINTAINER= hetzels@westbend.net diff -ruN cyrus-sasl.orig/distinfo cyrus-sasl/distinfo --- cyrus-sasl.orig/distinfo Mon Sep 18 21:59:28 2000 +++ cyrus-sasl/distinfo Sat Aug 11 15:22:20 2001 @@ -1 +1,2 @@ MD5 (cyrus-sasl-1.5.24.tar.gz) = ac3837c071c258b80021325936db2583 +MD5 (cyrus-sasl-1.5.24-ipv6-20010321.diff.gz) = a306953c91d9fbf2f4676ef394b38449 diff -ruN cyrus-sasl.orig/scripts/configure.sasl cyrus-sasl/scripts/configure.sasl --- cyrus-sasl.orig/scripts/configure.sasl Mon Jul 16 14:52:22 2001 +++ cyrus-sasl/scripts/configure.sasl Sat Aug 11 15:25:03 2001 @@ -21,8 +21,7 @@ set ${OPTIONS} fi else - - if [ "x${ENABLE_DB3}" = "xYES" -o -f ${PREFIX}/lib/libdb3.so.1 ] ; then + if [ "x${ENABLE_DB3}" = "xYES" -o -f ${PREFIX}/lib/libdb3.so ] ; then SET_DB3="ON" else SET_DB3="OFF" Here's a corrected patch for the Makefile. PATCH* should be below MASTER* Scot --- cyrus-sasl.orig/Makefile Thu Aug 2 22:11:49 2001 +++ cyrus-sasl/Makefile Sat Aug 11 17:37:45 2001 @@ -7,12 +7,15 @@ PORTNAME= cyrus-sasl PORTVERSION= 1.5.24 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ \ ${MASTER_SITE_LOCAL} \ ftp://ftp.hanse.de/sites/transit/mirror/ftp.andrew.cmu.edu/pub/cyrus-mail/ MASTER_SITE_SUBDIR= stb/mirror/ftp.andrew.cmu.edu/pub/cyrus-mail + +PATCH_SITES= http://www.imasy.or.jp/~ume/ipv6/ +PATCHFILES= ${DISTNAME}-ipv6-20010321.diff.gz MAINTAINER= hetzels@westbend.net Responsible Changed From-To: freebsd-ports->dwcjr I'll handle this State Changed From-To: open->closed Committed, thanks! |