From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 10 02:40:09 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org 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 35FD616A420 for ; Fri, 10 Mar 2006 02:40:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF63243D46 for ; Fri, 10 Mar 2006 02:40:08 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k2A2e8ln073711 for ; Fri, 10 Mar 2006 02:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k2A2e8kG073706; Fri, 10 Mar 2006 02:40:08 GMT (envelope-from gnats) Date: Fri, 10 Mar 2006 02:40:08 GMT Message-Id: <200603100240.k2A2e8kG073706@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Ion-Mihai Tetcu Cc: Subject: Re: ports/94288: [PATCH] misc/tinderbox: OPTIONaly depend on c[v]sup X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ion-Mihai Tetcu List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Mar 2006 02:40:09 -0000 The following reply was made to PR ports/94288; it has been noted by GNATS. From: Ion-Mihai Tetcu To: "Ion-Mihai "IOnut" Tetcu" Cc: "FreeBSD gnats submit" Subject: Re: ports/94288: [PATCH] misc/tinderbox: OPTIONaly depend on c[v]sup Date: Fri, 10 Mar 2006 04:32:04 +0200 --MP_15qD_UUazmXQi8Sx6qg/oX= Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline This new patch also fixes p5-DBD-mysql dependency # /var/tinderbox/scripts/setup.sh Welcome to the Tinderbox Setup script. This script will guide you through some of the automated Tinderbox setup steps. Once this script completes, you should review the documentation in /var/tinderbox/scripts/README or on the web at http://tinderbox.marcuscom.com/ to complete your setup. Hit to get started: INFO: Checking prerequisites ... DONE. INFO: Creating default configuration files ... DONE. INFO: Beginning database configuration. Enter database driver (mysql pgsql): mysql INFO: Checking for prerequisites for mysql database driver ... ERROR: The following mandatory dependencies are missing. These must be installed prior to running the Tinderbox setup script. ERROR: databases/p5-DBD-mysql41 databases/mysql41-client root(itetcu)@worf/SU >-SSH-> /usr/ports/misc/tinderbox [4:20:44] 1 # pkg_info -I p5-DBD\* p5-DBD-mysql-3.0002 MySQL driver for the Perl5 Database Interface (DBI) # make -VMYSQL_VER 50 -- IOnut - Unregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" BOFH excuse #157: Incorrect time synchronization --MP_15qD_UUazmXQi8Sx6qg/oX= Content-Type: text/x-patch; name=tinderbox.diff Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=tinderbox.diff ? tinderbox.diff Index: Makefile =================================================================== RCS file: /home/ncvs/ports/misc/tinderbox/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 24 Feb 2006 02:28:02 -0000 1.13 +++ Makefile 10 Mar 2006 02:28:45 -0000 @@ -6,7 +6,7 @@ PORTNAME= tinderbox PORTVERSION= 2.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= http://tinderbox.marcuscom.com/ @@ -19,7 +19,9 @@ cvsup:${PORTSDIR}/net/cvsup-without-gui OPTIONS= PGSQL "With pgsql" On \ - MYSQL "With mysql" Off + MYSQL "With mysql" Off \ + CSUP "Use CSUP for updates" On \ + CVSUP "Use CVSUP for updates" Off NO_BUILD= yes USE_APACHE= yes @@ -43,7 +45,15 @@ .if defined(WITH_MYSQL) USE_PHP+= mysql USE_MYSQL= yes -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql${MYSQL_VER} +.endif + +.if defined(WITH_CSUP) +RUN_DEPENDS+= csup:${PORTSDIR}/net/csup +.endif + +.if defined(WITH_CVSUP) +RUN_DEPENDS+= cvsup:${PORTSDIR}/net/cvsup-without-gui .endif .include "${PORTSDIR}/Mk/bsd.php.mk" --MP_15qD_UUazmXQi8Sx6qg/oX=--