From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Nov 8 12:50:31 2005 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 7A26616A41F for ; Tue, 8 Nov 2005 12:50:31 +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 6BBAD43D5A for ; Tue, 8 Nov 2005 12:50:27 +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 jA8CoRDJ011391 for ; Tue, 8 Nov 2005 12:50:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jA8CoRLh011390; Tue, 8 Nov 2005 12:50:27 GMT (envelope-from gnats) Resent-Date: Tue, 8 Nov 2005 12:50:27 GMT Resent-Message-Id: <200511081250.jA8CoRLh011390@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Marcus Alves Grando Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A9DF16A41F for ; Tue, 8 Nov 2005 12:46:58 +0000 (GMT) (envelope-from root@marcus.grupos.com.br) Received: from mail.grupos.com.br (mail.grupos.com.br [200.203.183.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id D05AF43D49 for ; Tue, 8 Nov 2005 12:46:57 +0000 (GMT) (envelope-from root@marcus.grupos.com.br) Received: from corp.grupos.com.br (201-3-244-86.fnsce701.e.brasiltelecom.net.br [201.3.244.86]) by mail.grupos.com.br (Postfix) with ESMTP id 5B1BA11E0A1 for ; Tue, 8 Nov 2005 10:46:44 -0200 (BRST) Received: from marcus.grupos.com.br (marcus.grupos.com.br [150.162.166.51]) by corp.grupos.com.br (Postfix) with ESMTP id 53B05551A for ; Tue, 8 Nov 2005 10:46:40 -0200 (BRST) Received: by marcus.grupos.com.br (Postfix, from userid 0) id 926FE5B; Tue, 8 Nov 2005 10:39:50 -0200 (BRST) Message-Id: <20051108123950.926FE5B@marcus.grupos.com.br> Date: Tue, 8 Nov 2005 10:39:50 -0200 (BRST) From: Marcus Alves Grando To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/88661: Update port: Mk/bsd.database.mk Use lower case in DBD and SQLITE and fix comment X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcus Alves Grando List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2005 12:50:31 -0000 >Number: 88661 >Category: ports >Synopsis: Update port: Mk/bsd.database.mk Use lower case in DBD and SQLITE and fix comment >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Nov 08 12:50:27 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Marcus Alves Grando >Release: FreeBSD 6.0-STABLE i386 >Organization: Grupos Internet S/A >Environment: System: FreeBSD marcus.grupos.com.br 6.0-STABLE FreeBSD 6.0-STABLE #17: Mon Nov 7 10:35:55 BRST 2005 root@marcus.grupos.com.br:/usr/obj/usr/src/sys/MARCUS i386 >Description: Use lower in USE_BDB and USE_SQLITE to make tests Fix comment about BROKEN. >How-To-Repeat: >Fix: --- bsd.database.mk begins here --- Index: bsd.database.mk =================================================================== RCS file: /home/pcvs/ports/Mk/bsd.database.mk,v retrieving revision 1.1 diff -u -r1.1 bsd.database.mk --- bsd.database.mk 8 Nov 2005 09:02:51 -0000 1.1 +++ bsd.database.mk 8 Nov 2005 12:34:38 -0000 @@ -173,7 +173,7 @@ _WANT_BDB_VER= ${USE_BDB} # Assume the default bdb version as 41 -.if ${USE_BDB} == "yes" +.if ${USE_BDB:L} == "yes" _WANT_BDB_VER= 41+ .endif @@ -204,7 +204,7 @@ .endif .endfor -# USE_BDB is specified incorrectly, so mark this as BROKEN +# USE_BDB is specified incorrectly, so mark this as IGNORE .if ${_FOUND} == "no" IGNORE= "Unknown bdb version: ${USE_BDB}" .endif @@ -214,12 +214,13 @@ # Handling sqlite dependency .if defined(USE_SQLITE) -.if ${USE_SQLITE} == "yes" +.if ${USE_SQLITE:L} == "yes" _SQLITE_VER= 3 .else _SQLITE_VER= ${USE_SQLITE} .endif +# USE_SQLITE is specified incorrectly, so mark this as IGNORE .if ${_SQLITE_VER} != "3" && ${_SQLITE_VER} != "2" IGNORE= "Unknown sqlite version: ${_SQLITE_VER}" .endif --- bsd.database.mk ends here --- >Release-Note: >Audit-Trail: >Unformatted: