From owner-freebsd-ports Sun Jan 30 20:30: 5 2000 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AC69152C4 for ; Sun, 30 Jan 2000 20:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id UAA29003; Sun, 30 Jan 2000 20:30:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from cx587235-a.chnd1.az.home.com (cx587235-a.chnd1.az.home.com [24.11.88.170]) by hub.freebsd.org (Postfix) with ESMTP id A0F4C14F67 for ; Sun, 30 Jan 2000 20:20:40 -0800 (PST) (envelope-from jjreynold@cx587235-a.chnd1.az.home.com) Received: from whale.home-net (whale [192.168.1.2]) by cx587235-a.chnd1.az.home.com (8.9.3/8.9.3) with ESMTP id VAA07530; Sun, 30 Jan 2000 21:20:36 -0700 (MST) (envelope-from jjreynold@dolphin.home-net) Received: (from jjreynold@localhost) by whale.home-net (8.9.3/8.9.3) id VAA94006; Sun, 30 Jan 2000 21:20:35 -0700 (MST) (envelope-from jjreynold@mailhost.home-net) Message-Id: <200001310420.VAA94006@whale.home-net> Date: Sun, 30 Jan 2000 21:20:35 -0700 (MST) From: jjreynold@home.com Reply-To: jjreynold@home.com To: FreeBSD-gnats-submit@freebsd.org Cc: ve@sci.fi X-Send-Pr-Version: 3.2 Subject: ports/16488: port update: fetchmail 5.2.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 16488 >Category: ports >Synopsis: update of fetchmail to 5.2.4 - bug fixes >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jan 30 20:30:01 PST 2000 >Closed-Date: >Last-Modified: >Originator: John Reynolds >Release: FreeBSD 3.4-STABLE i386 >Organization: me? Organized? >Environment: FreeBSD whale 3.4-STABLE FreeBSD 3.4-STABLE #0: Sat Jan 22 10:31:40 MST 2000 root@whale:/usr/src/sys/compile/WHALE i386 >Description: fetchmail 5.2.2 introduced a bug where --syslog would not log fetchmail's activites to syslog. 5.2.4 fixes this. I re-CVSup'd my ports tree in hopes of seeing this updated already. It was not. However, the update to the port was trivial. Makefile change, md5 change, and small tweak to patch-ad to the configure script. >How-To-Repeat: Run fetchmail 5.2.2, or 5.2.3 with the --syslog (or "set syslog" in your .fetchmailrc) and you will not see any output in your /var/log/maillog >Fix: Apply the following patch set while in /usr/ports/mail diff -urN fetchmail.orig/Makefile fetchmail/Makefile --- fetchmail.orig/Makefile Sun Jan 30 20:51:21 2000 +++ fetchmail/Makefile Sun Jan 30 20:51:46 2000 @@ -11,7 +11,7 @@ # does not need Python, so there is no RUN_DEPENDS for Python in # this Makefile. -DISTNAME= fetchmail-5.2.3 +DISTNAME= fetchmail-5.2.4 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.ccil.org/pub/esr/fetchmail/ diff -urN fetchmail.orig/files/md5 fetchmail/files/md5 --- fetchmail.orig/files/md5 Sun Jan 30 20:51:21 2000 +++ fetchmail/files/md5 Sun Jan 30 20:53:01 2000 @@ -1 +1 @@ -MD5 (fetchmail-5.2.3.tar.gz) = ad21b1ac6a062bd8b8236c1e33299bf3 +MD5 (fetchmail-5.2.4.tar.gz) = b2a4f31cc279f77e0e418ecce54c4b91 diff -urN fetchmail.orig/patches/patch-ad fetchmail/patches/patch-ad --- fetchmail.orig/patches/patch-ad Sun Jan 30 20:51:21 2000 +++ fetchmail/patches/patch-ad Sun Jan 30 21:04:11 2000 @@ -1,5 +1,5 @@ ---- configure.orig Tue Jan 4 15:59:12 2000 -+++ configure Wed Jan 12 08:56:41 2000 +--- configure.orig Sun Jan 16 10:07:09 2000 ++++ configure Sun Jan 30 21:03:36 2000 @@ -1595,7 +1595,7 @@ if test `uname` = "FreeBSD" then @@ -9,16 +9,16 @@ fi # Check for Rhapsody special case: it doesn't like -s -@@ -5553,7 +5553,7 @@ +@@ -5555,7 +5555,7 @@ then echo "Configuring kerberosIV for `uname`" CEFLAGS="$CEFLAGS -DKERBEROS_V4 -I/usr/include/kerberosIV" - LIBS="$LIBS -lkrb -ldes" + LIBS="$LIBS -lkrb -ldes -lcom_err" - elif test -n "$with_kerberos" -a -n "$with_kerberos5" + elif test -n "$with_kerberos" -a -n "$with_kerberos5" -a "$with_kerberos" != "no" then CEFLAGS="$CEFLAGS -DKERBEROS_V4 -I$with_kerberos/include" -@@ -5584,7 +5584,7 @@ +@@ -5586,7 +5586,7 @@ then CEFLAGS="$CEFLAGS -DKERBEROS_V4 -I$with_kerberos/include" LDEFLAGS="$LDEFLAGS -L$with_kerberos/lib" @@ -27,7 +27,7 @@ else if test "$with_kerberos" != "no" then -@@ -5594,7 +5594,7 @@ +@@ -5596,7 +5596,7 @@ then CEFLAGS="$CEFLAGS -DKERBEROS_V4 -I$dir/include" LDEFLAGS="$LDEFLAGS -L$dir/lib" >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message