From owner-freebsd-ports-bugs@FreeBSD.ORG Tue May 10 14:10:07 2005 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 238E116A4D0 for ; Tue, 10 May 2005 14:10:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0DD643D82 for ; Tue, 10 May 2005 14:10:06 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4AEA6oQ059022 for ; Tue, 10 May 2005 14:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4AEA69P059021; Tue, 10 May 2005 14:10:06 GMT (envelope-from gnats) Date: Tue, 10 May 2005 14:10:06 GMT Message-Id: <200505101410.j4AEA69P059021@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Matus UHLAR - fantomas Subject: Re: ports/80832: proftpd mod_ctrls enhancement X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Matus UHLAR - fantomas List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 May 2005 14:10:07 -0000 The following reply was made to PR ports/80832; it has been noted by GNATS. From: Matus UHLAR - fantomas To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/80832: proftpd mod_ctrls enhancement Date: Tue, 10 May 2005 16:01:14 +0200 --yrj/dFKFPuw6o+aM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline attached patch should help... -- Matus UHLAR - fantomas, uhlar@fantomas.sk ; http://www.fantomas.sk/ Warning: I wish NOT to receive e-mail advertising to this address. Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu. Linux IS user friendly, it's just selective who its friends are... --yrj/dFKFPuw6o+aM Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="port-proftpd-Makefile.patch" --- Makefile.orig Tue May 10 10:45:24 2005 +++ Makefile Tue May 10 11:11:38 2005 @@ -141,6 +141,10 @@ .if defined(WITH_CTRLS) CONFIGURE_ARGS+= --enable-ctrls MAN8+= ftpdctl.8 +PLIST_FILES+= sbin/ftpdctl +.if !defined(WITHOUT_CTRLS_ADMIN) +MODULES:=${MODULES}:mod_ctrls_admin +.endif .else .endif @@ -216,6 +220,11 @@ ${WRKSRC}/sample-configurations/basic.conf ${PREFIX}/etc/proftpd.conf; \ fi @${INSTALL_SCRIPT} ${WRKSRC}/proftpd.sh ${PREFIX}/etc/rc.d/proftpd${RC_SUFX} + +.if defined(WITH_CTRLS) + @${INSTALL_PROGRAM} ${WRKSRC}/ftpdctl ${PREFIX}/sbin/ftpdctl + @${INSTALL_MAN} ${WRKSRC}/src/ftpdctl.8 ${PREFIX}/man/man8/ftpdctl.8 +.endif .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/proftpd --yrj/dFKFPuw6o+aM--