From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Oct 22 12:00:26 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB70510656A9 for ; Fri, 22 Oct 2010 12:00:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AC6668FC1A for ; Fri, 22 Oct 2010 12:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o9MC0QDA058576 for ; Fri, 22 Oct 2010 12:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o9MC0Qka058552; Fri, 22 Oct 2010 12:00:26 GMT (envelope-from gnats) Date: Fri, 22 Oct 2010 12:00:26 GMT Message-Id: <201010221200.o9MC0Qka058552@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Marco Steinbach Cc: Subject: Re: ports/151453: [NEW PORT] sysutils/froxlor: PHP-based ISP Server Management Panel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marco Steinbach List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 12:00:27 -0000 The following reply was made to PR ports/151453; it has been noted by GNATS. From: Marco Steinbach To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151453: [NEW PORT] sysutils/froxlor: PHP-based ISP Server Management Panel Date: Fri, 22 Oct 2010 13:41:38 +0200 This is a multi-part message in MIME format. --------------060307050201030007060704 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit This patch to the ports Makefile corrects the proftpd-mysql RUN_DEPENDS entry, and adds options for installing webalizer/awstats for convenience. If there's anything I can do to help, e.g. provide jails for testing or write up installation instructions, please let me know. --------------060307050201030007060704 Content-Type: text/plain; name="froxlor-0.9.13.1-options.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="froxlor-0.9.13.1-options.patch" diff -ruN froxlor.orig/Makefile froxlor/Makefile --- froxlor.orig/Makefile 2010-10-22 13:30:22.000000000 +0200 +++ froxlor/Makefile 2010-10-22 13:29:42.000000000 +0200 @@ -28,7 +28,9 @@ DOVECOT "Use Dovecot as imap/pop3 server" On \ PROFTPD "Use Proftpd-mysql as ftp server (implies MySQL)" On \ POWERDNS "Use Powerdns as dns server" Off \ - LIBNSS "Use Libnss-mysql for authentication (impl. MySQL)" Off + LIBNSS "Use Libnss-mysql for authentication (impl. MySQL)" Off \ + WEBALIZER "Use webalizer" On \ + AWSTATS "Use awstats" Off .include @@ -53,7 +55,7 @@ .endif .if !defined(WITHOUT_PROFTPD) -RUN_DEPENDS+= proftpd-mysql:${PORTSDIR}/ftp/proftpd-mysql +RUN_DEPENDS+= proftpd:${PORTSDIR}/ftp/proftpd-mysql .endif .if !defined(WITHOUT_POWERDNS) @@ -64,6 +66,14 @@ RUN_DEPENDS+= libnss-mysql:${PORTSDIR}/net/libnss-mysql .endif +.if !defined(WITHOUT_WEBALIZER) +RUN_DEPENDS+= webalizer:${PORTSDIR}/www/webalizer +.endif + +.if !defined(WITHOUT_AWSTATS) +RUN_DEPENDS+= awstats:${PORTSDIR}/www/awstats +.endif + do-install: cd ${WRKDIR}/${PORTNAME} && \ ${FIND} . | ${CPIO} --quiet -pdm -L ${WWWDIR} --------------060307050201030007060704--