From owner-freebsd-ports Wed Dec 12 7:50:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7464937B417 for ; Wed, 12 Dec 2001 07:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id fBCFo0X43836; Wed, 12 Dec 2001 07:50:00 -0800 (PST) (envelope-from gnats) Received: from yoda.bmi.net (yoda.bmi.net [204.57.191.163]) by hub.freebsd.org (Postfix) with ESMTP id 3807C37B41C; Wed, 12 Dec 2001 07:46:37 -0800 (PST) Received: from johncoop.MSHOME (drumheller-router.bmi.net [206.63.201.3] (may be forged)) by yoda.bmi.net (Pro-8.9.3/Pro-8.9.3) with ESMTP id JAA20536; Wed, 12 Dec 2001 09:19:28 -0800 Received: by johncoop.MSHOME (Postfix, from userid 0) id B0B9815503; Wed, 12 Dec 2001 07:46:31 -0800 (PST) Message-Id: <20011212154631.B0B9815503@johncoop.MSHOME> Date: Wed, 12 Dec 2001 07:46:31 -0800 (PST) From: John Merryweather Cooper Reply-To: John Merryweather Cooper To: FreeBSD-gnats-submit@freebsd.org Cc: tobez@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/32752: [MAINTAINER UPDATE] Upgrade libesmtp to 0.8.8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 32752 >Category: ports >Synopsis: [MAINTAINER UPDATE] Upgrade libesmtp to 0.8.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Dec 12 07:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: John Merryweather Cooper >Release: FreeBSD 4.4-STABLE i386 >Organization: >Environment: System: FreeBSD johncoop.MSHOME 4.4-STABLE FreeBSD 4.4-STABLE #25: Tue Dec 11 14:17:53 PST 2001 jmcoopr@johncoop.MSHOME:/usr/obj/usr/src/sys/JOHNCOOP i386 >Description: Improved build performance across platforms is the major feature of this release: 1) autoconf is no longer required by FreeBSD to build this port; 2) the acinclude.m4 macros have been heavily modified by Brian Stafford (with a little help from me) to correctly detect and build PTHREAD support for FreeBSD under both -STABLE and -CURRENT. The technique we chose is flexible enough to support most any eventuality since the PTHREAD configuration macro will attempt to select build-environment values as the optimum PTHREAD build configuration unless the values fail under test. (this is supposed to work correctly even for AIX) OTHER PORTERS TAKE NOTE: You might want to look long and hard at the acinclude.m4 file . . . :) >How-To-Repeat: N/A >Fix: Summary of file changes: 'libesmtp.new/Makefile' | 0 'libesmtp.new/distinfo' | 0 ./Makefile | 26 +++++++++++--------------- ./distinfo | 2 +- 4 files changed, 12 insertions(+), 16 deletions(-) The patch: # This is a patch for libesmtp to update it to libesmtp.new # # To apply this patch: # STEP 1: Chdir to the source directory. # STEP 2: Run the 'applypatch' program with this patch file as input. # # If you do not have 'applypatch', it is part of the 'makepatch' package # that you can fetch from the Comprehensive Perl Archive Network: # http://www.perl.com/CPAN/authors/Johan_Vromans/makepatch-x.y.tar.gz # In the above URL, 'x' should be 2 or higher. # # To apply this patch without the use of 'applypatch': # STEP 1: Chdir to the source directory. # STEP 2: Run the 'patch' program with this file as input. # #### End of Preamble #### #### Patch data follows #### diff -u 'libesmtp/Makefile' 'libesmtp.new/Makefile' Index: ./Makefile --- ./Makefile Sun Nov 18 16:41:14 2001 +++ ./Makefile Wed Dec 5 06:24:06 2001 @@ -2,10 +2,10 @@ # Date created: Sun Feb 21 2001 # Whom: tobez@tobez.org # -# $FreeBSD: ports/mail/libesmtp/Makefile,v 1.12 2001/11/18 22:48:04 tobez Exp $ +# $FreeBSD$ PORTNAME= libesmtp -PORTVERSION= 0.8.7 +PORTVERSION= 0.8.8 CATEGORIES= mail MASTER_SITES= http://www.stafford.uklinux.net/libesmtp/ \ http://www.tobez.org/download/port-mirrors/mail/libesmtp/ \ @@ -16,30 +16,26 @@ USE_BZIP2= yes USE_GMAKE= yes USE_OPENSSL= yes -USE_AUTOCONF= yes USE_LIBTOOL= yes -LIBTOOLFILES= ${WRKSRC}/aclocal.m4 ${WRKSRC}/libltdl/aclocal.m4 INSTALLS_SHLIB= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ PTHREAD_LIBS="${PTHREAD_LIBS}" \ PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ - LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" + LIBS="-L${LOCALBASE}/lib" # require-all-recipients (implied by enable-all) is required for Balsa-1.2.x -CONFIGURE_ARGS= --enable-all \ - --disable-ltdl-install - +CONFIGURE_ARGS= --enable-all pre-build: @${CP} ${WRKSRC}/libltdl/libtool ${WRKSRC}/libtool post-install: .ifndef(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/examples/libesmtp - ${MKDIR} ${PREFIX}/share/doc/libesmtp - ${INSTALL_DATA} ${WRKSRC}/examples/* ${PREFIX}/share/examples/libesmtp - ${INSTALL_DATA} ${WRKSRC}/INSTALL ${PREFIX}/share/doc/libesmtp - ${INSTALL_DATA} ${WRKSRC}/Notes ${PREFIX}/share/doc/libesmtp - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/libesmtp + @${MKDIR} ${EXAMPLESDIR} + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} + @${INSTALL_DATA} ${WRKSRC}/INSTALL ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/Notes ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif .include diff -u 'libesmtp/distinfo' 'libesmtp.new/distinfo' Index: ./distinfo --- ./distinfo Sun Nov 18 16:41:14 2001 +++ ./distinfo Wed Dec 5 06:00:53 2001 @@ -1 +1 @@ -MD5 (libesmtp-0.8.7.tar.bz2) = e42722f24a5f8cfe250e3c9c3b64cd0a +MD5 (libesmtp-0.8.8.tar.bz2) = 6dc3102123e825bc49cc8050f316ba50 #### End of Patch data #### #### ApplyPatch data follows #### # Data version : 1.0 # Date generated : Wed Dec 12 07:33:14 2001 # Generated by : makepatch 2.00 # Recurse directories : Yes # p 'Makefile' 1426 1007562246 0100644 # p 'distinfo' 64 1007560853 0100644 #### End of ApplyPatch data #### #### End of Patch kit [created: Wed Dec 12 07:33:14 2001] #### #### Checksum: 94 3259 52642 #### >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message