ports/88661: Update port: Mk/bsd.database.mk Use lower case in DBD and SQLITE and fix comment

Marcus Alves Grando mnag at FreeBSD.org
Tue Nov 8 12:50:31 UTC 2005


>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 at 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:



More information about the freebsd-ports-bugs mailing list