From owner-freebsd-ports Fri Jul 6 16:10:19 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 BF03537B406 for ; Fri, 6 Jul 2001 16:10:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.3/8.11.3) id f66NA5936413; Fri, 6 Jul 2001 16:10:05 -0700 (PDT) (envelope-from gnats) Received: from electron.databits.net (electron.databits.net [207.29.204.16]) by hub.freebsd.org (Postfix) with ESMTP id 2115037B407 for ; Fri, 6 Jul 2001 16:00:24 -0700 (PDT) (envelope-from petef@electron.databits.net) Received: (from petef@localhost) by electron.databits.net (8.11.4/8.11.4) id f66Mxdm90230; Fri, 6 Jul 2001 18:59:39 -0400 (EDT) (envelope-from petef) Message-Id: <200107062259.f66Mxdm90230@electron.databits.net> Date: Fri, 6 Jul 2001 18:59:39 -0400 (EDT) From: Pete Fritchman Reply-To: Pete Fritchman To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/28782: Update ftp/bftpd to 1.0.21 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: 28782 >Category: ports >Synopsis: Update ftp/bftpd to 1.0.21 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Jul 06 16:10:02 PDT 2001 >Closed-Date: >Last-Modified: >Originator: Pete Fritchman >Release: FreeBSD 4.3-STABLE i386 >Organization: Databits Network Services, Inc. >Environment: System: FreeBSD electron.databits.net 4.3-STABLE FreeBSD 4.3-STABLE #7: Mon Jun 11 10:15:45 EDT 2001 root@electron.databits.net:/usr/obj/usr/src/sys/ELECTRON i386 >Description: - update to version 1.0.21 - enable pam support - silence some commands - install docs - take over as maintainer from ports@ >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/ftp/bftpd/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 2001/04/15 02:06:52 1.2 +++ Makefile 2001/07/06 22:52:35 @@ -6,22 +6,30 @@ # PORTNAME= bftpd -PORTVERSION= 1.0.18 -PORTREVISION= 1 +PORTVERSION= 1.0.21 CATEGORIES= ftp MASTER_SITES= http://www.bftpd.f2s.com/downloads/src/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= petef@databits.net GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --enable-pam + MAN8= bftpd.8 -pre-configure: - ${PERL} -pi -e "s@@@g" ${WRKSRC}/commands.c - ${PERL} -pi -e "s@chmod 644 /var@#chmod 644 /var@g; \ +post-patch: + @${PERL} -pi -e "s@@@g" ${WRKSRC}/commands.c + @${PERL} -pi -e "s@chmod 644 /var@#chmod 644 /var@g; \ s@touch /var@#touch /var@g; \ s@DESTDIR\)/etc@prefix\)/etc@g; \ s@bftpd.conf @bftpd.conf.sample @g" ${WRKSRC}/Makefile.in - ${CP} ${WRKSRC}/bftpd.conf ${WRKSRC}/bftpd.conf.sample + @${PERL} -pi -e "s@-ldl@@" ${WRKSRC}/configure + @${CP} ${WRKSRC}/bftpd.conf ${WRKSRC}/bftpd.conf.sample + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/bftpd + ${INSTALL_DATA} ${WRKSRC}/doc/bftpddoc.txt ${PREFIX}/share/doc/bftpd +.endif .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/ftp/bftpd/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 2001/04/07 23:24:24 1.1 +++ distinfo 2001/07/06 16:58:08 @@ -1 +1 @@ -MD5 (bftpd-1.0.18.tar.gz) = fc73794898fc1f1eb8119eafa69338b1 +MD5 (bftpd-1.0.21.tar.gz) = a0a438bb5c90cd9852db489c5a4c2448 Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/ftp/bftpd/pkg-descr,v retrieving revision 1.1 diff -u -r1.1 pkg-descr --- pkg-descr 2001/04/07 23:24:24 1.1 +++ pkg-descr 2001/07/06 22:37:21 @@ -12,9 +12,12 @@ * Support for most RFC FTP commands * tar.gz on-the-fly compression/archiving * Security with chroot without special setup - * No need for filessh, ls...) in a chroot environment + * No need for files (sh, ls...) in a chroot environment * Logging to wtmp and to a config file - * PAM and passwd/shadow support + * PAM support * Support for SITE CHOWN/CHMOD WWW: http://www.bftpd.org/ + +- Pete +petef@databits.net Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/ftp/bftpd/pkg-plist,v retrieving revision 1.1 diff -u -r1.1 pkg-plist --- pkg-plist 2001/04/07 23:24:24 1.1 +++ pkg-plist 2001/07/06 22:53:06 @@ -1,3 +1,5 @@ @unexec if cmp -s %D/etc/bftpd.conf %D/etc/bftpd.conf.sample; then rm -f %D/etc/bftpd.conf; fi etc/bftpd.conf.sample sbin/bftpd +%%PORTDOCS%%share/doc/bftpd/bftpddoc.txt +%%PORTDOCS%%@dirrm share/doc/bftpd >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message