Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 11 Jun 2003 02:21:09 +0200
From:      Gerhard Haering <gh@ghaering.de>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/53182: Update of databases/sqlite to version 2.8.3
Message-ID:  <20030611002108.GA1009@mephisto.ghaering.de>
Resent-Message-ID: <200306110030.h5B0UG38057611@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         53182
>Category:       ports
>Synopsis:       Update of databases/sqlite to version 2.8.3
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Tue Jun 10 17:30:16 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator:     Gerhard Haering <gh@ghaering.de>
>Release:        FreeBSD 5.1-RELEASE i386
>Organization:
N/A
>Environment:
System: FreeBSD lilith.ghaering.test 5.1-RELEASE FreeBSD 5.1-RELEASE #5: Wed Jun 11 00:02:51 CEST 2003 root@lilith.ghaering.test:/usr/obj/usr/src/sys/GH3 i386
>Description:
        This is a port update of databases/sqlite. It offers several new
        features:

        * The TCL wrapper is now optional and off by default. Use
          SQLITE_WITH_TCL83/SQLITE_WITH_TCL84 to enable it. TCL is still needed
          for building the docs, unless you specify NOPORTDOCS.

        * Update to upstream version 2.8.3.
        
        * The TCL example is now installed in $LOCALBASE/share/examples/sqlite

        This patch is quite hackish in that it replaces the libtool stuff from
        SQLite with the libtool port. It also uses plain 'install' instead of
        'libtool install' to install shared libraries. This might not look
        nice, but it's the only way I got the desired effects to work (i. e.
        SQLite's libtool refused to install the TCL wrapper in
        $LOCALBASE/lib/sqlite - it insisted on only installing it into
        $LOCALBASE/lib.

        Anyway, this gets the job done and I don't intend to win any prize for
        the nicest build process ;-) So please apply.
>How-To-Repeat:
	N/A
>Fix:
Don't forget to cvs remove the file patch-ltmain.sh. It's no longer needed.

diff -N -r -C 3 ../sqlite/Makefile ./Makefile
*** ../sqlite/Makefile	Sun Mar 23 08:15:51 2003
--- ./Makefile	Sun Jun  8 19:34:43 2003
***************
*** 6,60 ****
  # $FreeBSD: ports/databases/sqlite/Makefile,v 1.14 2003/03/23 07:15:51 nork Exp $
  #
  
  PORTNAME=	sqlite
! PORTVERSION=	2.8.0
  PORTREVISION=	0
  CATEGORIES=	databases
  MASTER_SITES=	http://www.hwaci.com/sw/sqlite/
  DISTNAME=	${PORTNAME}-${PORTVERSION}
  
! MAINTAINER=	gerhard.haering@gmx.de
  COMMENT=	An SQL database engine in a C library, including a Tcl wrapper
  
! LIB_DEPENDS=	tcl${TCL_VER:S/.//}:${PORTSDIR}/lang/tcl${TCL_VER:S/.//}
  
  USE_GMAKE=	YES
  GNU_CONFIGURE=	YES
  USE_REINPLACE=	YES
  CONFIGURE_ARGS=	--prefix=${PREFIX} --with-hints=freebsd.hints
! ALL_TARGET=	all libtclsqlite.la
  INSTALLS_SHLIB=	YES
  
  WRKSRC=		${WRKDIR}/${PORTNAME}
- MAKE_ARGS+=	TCLSH=tclsh${TCL_VER}
- MAKE_ENV+=	TCL_VER=${TCL_VER}
- TCL_VER?=	8.3
  
  DOCFILES=	arch.html arch.png c_interface.html changes.html \
! 		crosscompile.html download.html faq.html index.html \
! 		lang.html lemon.html mingw.html opcode.html report1.txt \
! 		speed.html sqlite.html tclsqlite.html vdbe.html
  
  DOCSDIR=	${PREFIX}/share/doc/${PORTNAME}
  
  post-patch:
  	${REINPLACE_CMD} -e "s/tclsh \$$(TOP)/\$$(TCLSH) \$$(TOP)/g" ${WRKSRC}/Makefile.in
! 	${ECHO} "config_TARGET_TCL_INC=\"-I${PREFIX}/include/tcl${TCL_VER}\"" >${WRKSRC}/freebsd.hints
! 	${ECHO} "config_TARGET_TCL_LIBS=\"-L${PREFIX}/lib -ltcl${TCL_VER:S/.//}\"" >>${WRKSRC}/freebsd.hints
  	#${ECHO} "config_TARGET_CFLAGS=\"-DTHREADSAFE=1 -pthread\"" >>${WRKSRC}/freebsd.hints
  
  post-build:
  	# Build the docs
! 	cd ${WRKSRC} && ${MAKE} ${MAKE_ARGS} doc
  
  post-install:
  	${INSTALL_DATA} ${FILESDIR}/pkgIndex.tcl ${PREFIX}/lib/sqlite/
  .if !defined(NOPORTDOCS)
  	@${MKDIR} ${DOCSDIR}
- 	@${INSTALL_DATA} ${FILESDIR}/example.tcl ${DOCSDIR}
  .for file in ${DOCFILES}
  	@${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR}
  .endfor
  .endif
  
  .include <bsd.port.mk>
--- 6,105 ----
  # $FreeBSD: ports/databases/sqlite/Makefile,v 1.14 2003/03/23 07:15:51 nork Exp $
  #
  
+ # By default, this port depends on TCL for building docs. If you want to build
+ # without TCL (and thus get no docs), define NOPORTDOCS.
+ # If you want to build the TCL wrapper, you have to choose between
+ # SQLITE_WITH_TCL83 and SQLITE_WITH_TCL84.
+ 
  PORTNAME=	sqlite
! PORTVERSION=	2.8.3
  PORTREVISION=	0
  CATEGORIES=	databases
  MASTER_SITES=	http://www.hwaci.com/sw/sqlite/
  DISTNAME=	${PORTNAME}-${PORTVERSION}
  
! MAINTAINER=	gh@ghaering.de
  COMMENT=	An SQL database engine in a C library, including a Tcl wrapper
  
! # Defaults, for building the docs:
! TCL_V=		8.3
! TCL_SHORT_V=	83
! 
! .if defined(SQLITE_WITH_TCL83)
! CATEGORIES+=	tcl83
! TCL_V=		8.3
! TCL_SHORT_V=	83
! WITH_TCL=	YES
! .endif
! 
! .if defined(SQLITE_WITH_TCL84)
! TCL_V=		8.4
! TCL_SHORT_V=	84
! WITH_TCL=	YES
! .endif
! 
! .if defined(WITH_TCL)
! LIB_DEPENDS=	tcl${TCL_SHORT_V}:${PORTSDIR}/lang/tcl${TCL_SHORT_V}
! PLIST_SUB+=	WITH_TCL=""
! .else
! PLIST_SUB+=	WITH_TCL="@comment "
! .endif
! 
! .if !defined(NOPORTDOCS)
! BUILD_DEPENDS=	tclsh${TCL_V}:${PORTSDIR}/lang/tcl${TCL_SHORT_V}
! MAKE_ARGS+=	TCLSH=tclsh${TCL_V}
! MAKE_ENV+=	TCL_VER=${TCL_V}
! .endif
  
  USE_GMAKE=	YES
+ USE_LIBTOOL=	YES
  GNU_CONFIGURE=	YES
  USE_REINPLACE=	YES
  CONFIGURE_ARGS=	--prefix=${PREFIX} --with-hints=freebsd.hints
! ALL_TARGET=	all
! .if defined(WITH_TCL)
! ALL_TARGET+=	libtclsqlite.la
! .endif
! 
  INSTALLS_SHLIB=	YES
  
  WRKSRC=		${WRKDIR}/${PORTNAME}
  
  DOCFILES=	arch.html arch.png c_interface.html changes.html \
! 		conflict.html datatypes.html download.html faq.html \
! 		fileformat.html formatchng.html index.html lang.html \
! 		lemon.html mingw.html nulls.html omitted.html \
! 		opcode.html quickstart.html report1.txt speed.html \
! 		sqlite.html tclsqlite.html vdbe.html
  
  DOCSDIR=	${PREFIX}/share/doc/${PORTNAME}
+ EXAMPLESDIR=	${PREFIX}/share/examples/${PORTNAME}
  
  post-patch:
  	${REINPLACE_CMD} -e "s/tclsh \$$(TOP)/\$$(TCLSH) \$$(TOP)/g" ${WRKSRC}/Makefile.in
! 	${ECHO} "config_TARGET_TCL_INC=\"-I${PREFIX}/include/tcl${TCL_V}\"" >${WRKSRC}/freebsd.hints
! 	${ECHO} "config_TARGET_TCL_LIBS=\"-L${PREFIX}/lib -ltcl${TCL_SHORT_V}\"" >>${WRKSRC}/freebsd.hints
  	#${ECHO} "config_TARGET_CFLAGS=\"-DTHREADSAFE=1 -pthread\"" >>${WRKSRC}/freebsd.hints
  
  post-build:
  	# Build the docs
! .if !defined(NOPORTDOCS)
! 	cd ${WRKSRC} && ${GMAKE} ${MAKE_ARGS} doc
! .endif
  
  post-install:
+ .if defined(WITH_TCL)
+ 	cd ${WRKSRC} && ${GMAKE} install-tcl
  	${INSTALL_DATA} ${FILESDIR}/pkgIndex.tcl ${PREFIX}/lib/sqlite/
+ .endif
  .if !defined(NOPORTDOCS)
  	@${MKDIR} ${DOCSDIR}
  .for file in ${DOCFILES}
  	@${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR}
  .endfor
+ 	@${MKDIR} ${EXAMPLESDIR}
+ 	@${INSTALL_DATA} ${FILESDIR}/example.tcl ${EXAMPLESDIR}
+ 
  .endif
  
  .include <bsd.port.mk>
diff -N -r -C 3 ../sqlite/distinfo ./distinfo
*** ../sqlite/distinfo	Sun Mar 23 08:15:51 2003
--- ./distinfo	Sun Jun  8 13:36:08 2003
***************
*** 1 ****
! MD5 (sqlite-2.8.0.tar.gz) = 56d5c7d1efde7f239b29ee151712c0b2
--- 1 ----
! MD5 (sqlite-2.8.3.tar.gz) = b038f5812157359c8e87487a017fa3d8
diff -N -r -C 3 ../sqlite/files/patch-ltmain.sh ./files/patch-ltmain.sh
*** ../sqlite/files/patch-ltmain.sh	Fri Sep 20 09:43:55 2002
--- ./files/patch-ltmain.sh	Thu Jan  1 01:00:00 1970
***************
*** 1,11 ****
- --- ltmain.sh.orig	Fri Sep 28 10:34:45 2001
- +++ ltmain.sh	Fri Sep 20 15:00:05 2002
- @@ -852,7 +852,7 @@
-      perm_rpath=
-      temp_rpath=
-      thread_safe=no
- -    vinfo=
- +    vinfo=2:0:0
-  
-      # We need to know -static, to get the right output filenames.
-      for arg
--- 0 ----
diff -N -r -C 3 ../sqlite/files/patch-makefile ./files/patch-makefile
*** ../sqlite/files/patch-makefile	Mon Sep  2 15:21:36 2002
--- ./files/patch-makefile	Sun Jun  8 18:55:15 2003
***************
*** 1,34 ****
! diff -r -C 3 ../sqlite.orig/Makefile.in ./Makefile.in
! *** ../sqlite.orig/Makefile.in	Sat Aug 31 18:29:58 2002
! --- ./Makefile.in	Mon Sep  2 00:51:27 2002
  ***************
! *** 310,322 ****
!   	mkdir -p doc
!   	mv $(DOC) doc
    
! ! install:	sqlite libsqlite.la sqlite.h
    	$(INSTALL) -d $(exec_prefix)/lib
!   	$(LIBTOOL) $(INSTALL) libsqlite.la $(exec_prefix)/lib
    	$(INSTALL) -d $(exec_prefix)/bin
!   	$(LIBTOOL) $(INSTALL) sqlite $(exec_prefix)/bin
    	$(INSTALL) -d $(prefix)/include
    	$(INSTALL) -m 0644 sqlite.h $(prefix)/include
    
    clean:	
!   	rm -f *.lo *.la *.o sqlite libsqlite.la sqlite.h
! --- 310,324 ----
!   	mkdir -p doc
!   	mv $(DOC) doc
    
! ! install:	sqlite libsqlite.la sqlite.h libtclsqlite.la
    	$(INSTALL) -d $(exec_prefix)/lib
!   	$(LIBTOOL) $(INSTALL) libsqlite.la $(exec_prefix)/lib
    	$(INSTALL) -d $(exec_prefix)/bin
!   	$(LIBTOOL) $(INSTALL) sqlite $(exec_prefix)/bin
    	$(INSTALL) -d $(prefix)/include
    	$(INSTALL) -m 0644 sqlite.h $(prefix)/include
! + 	mkdir -p $(prefix)/lib/sqlite
! + 	$(LIBTOOL) $(INSTALL) libtclsqlite.la $(prefix)/lib/sqlite
    
    clean:	
!   	rm -f *.lo *.la *.o sqlite libsqlite.la sqlite.h
--- 1,206 ----
! *** ../../tmp/sqlite/Makefile.in	Sat May 17 04:26:29 2003
! --- Makefile.in	Sun Jun  8 18:54:50 2003
  ***************
! *** 33,39 ****
!   prefix = @prefix@
!   exec_prefix = @exec_prefix@
!   INSTALL = @INSTALL@
! ! LIBTOOL = ./libtool
    
!   # Compiler options needed for programs that use the TCL library.
!   #
! --- 33,39 ----
!   prefix = @prefix@
!   exec_prefix = @exec_prefix@
!   INSTALL = @INSTALL@
! ! LIBTOOL = @prefix@/bin/libtool
!   
!   # Compiler options needed for programs that use the TCL library.
!   #
! ***************
! *** 166,172 ****
!             | awk '{print $$5,$$6}' >last_change
!   
!   libsqlite.la:	$(LIBOBJ)
! ! 	$(LIBTOOL) $(TCC) -o libsqlite.la $(LIBOBJ) -rpath $(exec_prefix)/lib
!   
!   libtclsqlite.la:	tclsqlite.lo libsqlite.la
!   	$(LIBTOOL) $(TCC) -o libtclsqlite.la tclsqlite.lo \
! --- 166,172 ----
!             | awk '{print $$5,$$6}' >last_change
!   
!   libsqlite.la:	$(LIBOBJ)
! ! 	$(LIBTOOL) $(TCC) -o libsqlite.la $(LIBOBJ) -rpath $(exec_prefix)/lib -version-info 2:0:0
!   
!   libtclsqlite.la:	tclsqlite.lo libsqlite.la
!   	$(LIBTOOL) $(TCC) -o libtclsqlite.la tclsqlite.lo \
! ***************
! *** 338,404 ****
!   	./testfixture $(TOP)/test/quick.test
!   
!   index.html:	$(TOP)/www/index.tcl last_change
! ! 	tclsh $(TOP)/www/index.tcl `cat $(TOP)/VERSION` >index.html
!   
!   sqlite.html:	$(TOP)/www/sqlite.tcl
! ! 	tclsh $(TOP)/www/sqlite.tcl >sqlite.html
!   
!   c_interface.html:	$(TOP)/www/c_interface.tcl
! ! 	tclsh $(TOP)/www/c_interface.tcl >c_interface.html
!   
!   changes.html:	$(TOP)/www/changes.tcl
! ! 	tclsh $(TOP)/www/changes.tcl >changes.html
!   
!   lang.html:	$(TOP)/www/lang.tcl
! ! 	tclsh $(TOP)/www/lang.tcl >lang.html
!   
!   vdbe.html:	$(TOP)/www/vdbe.tcl
! ! 	tclsh $(TOP)/www/vdbe.tcl >vdbe.html
!   
!   arch.html:	$(TOP)/www/arch.tcl
! ! 	tclsh $(TOP)/www/arch.tcl >arch.html
!   
!   arch.png:	$(TOP)/www/arch.png
!   	cp $(TOP)/www/arch.png .
!   
!   opcode.html:	$(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c
! ! 	tclsh $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c >opcode.html
!   
!   mingw.html:	$(TOP)/www/mingw.tcl
! ! 	tclsh $(TOP)/www/mingw.tcl >mingw.html
!   
!   tclsqlite.html:	$(TOP)/www/tclsqlite.tcl
! ! 	tclsh $(TOP)/www/tclsqlite.tcl >tclsqlite.html
!   
!   speed.html:	$(TOP)/www/speed.tcl
! ! 	tclsh $(TOP)/www/speed.tcl >speed.html
!   
!   faq.html:	$(TOP)/www/faq.tcl
! ! 	tclsh $(TOP)/www/faq.tcl >faq.html
!   
!   formatchng.html:	$(TOP)/www/formatchng.tcl
! ! 	tclsh $(TOP)/www/formatchng.tcl >formatchng.html
!   
!   conflict.html:	$(TOP)/www/conflict.tcl
! ! 	tclsh $(TOP)/www/conflict.tcl >conflict.html
!   
!   download.html:	$(TOP)/www/download.tcl
! ! 	tclsh $(TOP)/www/download.tcl >download.html
!   
!   omitted.html:	$(TOP)/www/omitted.tcl
! ! 	tclsh $(TOP)/www/omitted.tcl >omitted.html
!   
!   datatypes.html:	$(TOP)/www/datatypes.tcl
! ! 	tclsh $(TOP)/www/datatypes.tcl >datatypes.html
!   
!   quickstart.html:	$(TOP)/www/quickstart.tcl
! ! 	tclsh $(TOP)/www/quickstart.tcl >quickstart.html
!   
!   fileformat.html:	$(TOP)/www/fileformat.tcl
! ! 	tclsh $(TOP)/www/fileformat.tcl >fileformat.html
!   
!   nulls.html:	$(TOP)/www/nulls.tcl
! ! 	tclsh $(TOP)/www/nulls.tcl >nulls.html
!   
!   
!   # Files to be published on the website.
! --- 338,404 ----
!   	./testfixture $(TOP)/test/quick.test
!   
!   index.html:	$(TOP)/www/index.tcl last_change
! ! 	$(TCLSH) $(TOP)/www/index.tcl `cat $(TOP)/VERSION` >index.html
!   
!   sqlite.html:	$(TOP)/www/sqlite.tcl
! ! 	$(TCLSH) $(TOP)/www/sqlite.tcl >sqlite.html
!   
!   c_interface.html:	$(TOP)/www/c_interface.tcl
! ! 	$(TCLSH) $(TOP)/www/c_interface.tcl >c_interface.html
!   
!   changes.html:	$(TOP)/www/changes.tcl
! ! 	$(TCLSH) $(TOP)/www/changes.tcl >changes.html
!   
!   lang.html:	$(TOP)/www/lang.tcl
! ! 	$(TCLSH) $(TOP)/www/lang.tcl >lang.html
!   
!   vdbe.html:	$(TOP)/www/vdbe.tcl
! ! 	$(TCLSH) $(TOP)/www/vdbe.tcl >vdbe.html
!   
!   arch.html:	$(TOP)/www/arch.tcl
! ! 	$(TCLSH) $(TOP)/www/arch.tcl >arch.html
!   
!   arch.png:	$(TOP)/www/arch.png
!   	cp $(TOP)/www/arch.png .
!   
!   opcode.html:	$(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c
! ! 	$(TCLSH) $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c >opcode.html
!   
!   mingw.html:	$(TOP)/www/mingw.tcl
! ! 	$(TCLSH) $(TOP)/www/mingw.tcl >mingw.html
!   
!   tclsqlite.html:	$(TOP)/www/tclsqlite.tcl
! ! 	$(TCLSH) $(TOP)/www/tclsqlite.tcl >tclsqlite.html
!   
!   speed.html:	$(TOP)/www/speed.tcl
! ! 	$(TCLSH) $(TOP)/www/speed.tcl >speed.html
!   
!   faq.html:	$(TOP)/www/faq.tcl
! ! 	$(TCLSH) $(TOP)/www/faq.tcl >faq.html
!   
!   formatchng.html:	$(TOP)/www/formatchng.tcl
! ! 	$(TCLSH) $(TOP)/www/formatchng.tcl >formatchng.html
!   
!   conflict.html:	$(TOP)/www/conflict.tcl
! ! 	$(TCLSH) $(TOP)/www/conflict.tcl >conflict.html
!   
!   download.html:	$(TOP)/www/download.tcl
! ! 	$(TCLSH) $(TOP)/www/download.tcl >download.html
!   
!   omitted.html:	$(TOP)/www/omitted.tcl
! ! 	$(TCLSH) $(TOP)/www/omitted.tcl >omitted.html
!   
!   datatypes.html:	$(TOP)/www/datatypes.tcl
! ! 	$(TCLSH) $(TOP)/www/datatypes.tcl >datatypes.html
!   
!   quickstart.html:	$(TOP)/www/quickstart.tcl
! ! 	$(TCLSH) $(TOP)/www/quickstart.tcl >quickstart.html
!   
!   fileformat.html:	$(TOP)/www/fileformat.tcl
! ! 	$(TCLSH) $(TOP)/www/fileformat.tcl >fileformat.html
!   
!   nulls.html:	$(TOP)/www/nulls.tcl
! ! 	$(TCLSH) $(TOP)/www/nulls.tcl >nulls.html
!   
!   
!   # Files to be published on the website.
! ***************
! *** 432,444 ****
!   
!   install:	sqlite libsqlite.la sqlite.h
    	$(INSTALL) -d $(exec_prefix)/lib
! ! 	$(LIBTOOL) $(INSTALL) libsqlite.la $(exec_prefix)/lib
    	$(INSTALL) -d $(exec_prefix)/bin
! ! 	$(LIBTOOL) $(INSTALL) sqlite $(exec_prefix)/bin
    	$(INSTALL) -d $(prefix)/include
    	$(INSTALL) -m 0644 sqlite.h $(prefix)/include
+ ! 	$(INSTALL) -d $(exec_prefix)/lib/pkgconfig; \
+ ! 	$(INSTALL) -m 0644 sqlite.pc $(exec_prefix)/lib/pkgconfig; \
    
    clean:	
!   	rm -f *.lo *.la *.o sqlite libsqlite.la sqlite.h opcodes.*
! --- 432,448 ----
    
!   install:	sqlite libsqlite.la sqlite.h
    	$(INSTALL) -d $(exec_prefix)/lib
! ! 	$(INSTALL) .libs/libsqlite.a $(prefix)/lib
! ! 	$(INSTALL) .libs/libsqlite.so $(prefix)/lib
! ! 	$(INSTALL) .libs/libsqlite.so.2 $(prefix)/lib
    	$(INSTALL) -d $(exec_prefix)/bin
! ! 	$(INSTALL) .libs/sqlite $(exec_prefix)/bin
    	$(INSTALL) -d $(prefix)/include
    	$(INSTALL) -m 0644 sqlite.h $(prefix)/include
! ! 
! ! install-tcl:	libtclsqlite.la
! ! 	$(INSTALL) -d $(prefix)/lib/sqlite
! ! 	$(INSTALL) .libs/libtclsqlite.so $(prefix)/lib/sqlite
    
    clean:	
!   	rm -f *.lo *.la *.o sqlite libsqlite.la sqlite.h opcodes.*
diff -N -r -C 3 ../sqlite/files/pkgIndex.tcl ./files/pkgIndex.tcl
*** ../sqlite/files/pkgIndex.tcl	Mon Sep  2 04:58:53 2002
--- ./files/pkgIndex.tcl	Sun Jun  8 18:45:16 2003
***************
*** 1 ****
! package ifneeded sqlite 0.0 [list load [file join $dir libtclsqlite.so.0] sqlite]
--- 1 ----
! package ifneeded sqlite 0.0 [list load [file join $dir libtclsqlite.so] sqlite]
diff -N -r -C 3 ../sqlite/pkg-plist ./pkg-plist
*** ../sqlite/pkg-plist	Fri Sep 20 09:43:55 2002
--- ./pkg-plist	Sun Jun  8 16:37:42 2003
***************
*** 1,31 ****
  bin/sqlite
  include/sqlite.h
  lib/libsqlite.a
- lib/libsqlite.la
  lib/libsqlite.so
  lib/libsqlite.so.2
! lib/sqlite/libtclsqlite.a
! lib/sqlite/libtclsqlite.la
! lib/sqlite/libtclsqlite.so
! lib/sqlite/libtclsqlite.so.2
! lib/sqlite/pkgIndex.tcl
! @dirrm lib/sqlite
  %%PORTDOCS%%share/doc/sqlite/arch.html
  %%PORTDOCS%%share/doc/sqlite/arch.png
  %%PORTDOCS%%share/doc/sqlite/c_interface.html
  %%PORTDOCS%%share/doc/sqlite/changes.html
! %%PORTDOCS%%share/doc/sqlite/crosscompile.html
  %%PORTDOCS%%share/doc/sqlite/download.html
- %%PORTDOCS%%share/doc/sqlite/example.tcl
  %%PORTDOCS%%share/doc/sqlite/faq.html
  %%PORTDOCS%%share/doc/sqlite/index.html
  %%PORTDOCS%%share/doc/sqlite/lang.html
  %%PORTDOCS%%share/doc/sqlite/lemon.html
  %%PORTDOCS%%share/doc/sqlite/mingw.html
  %%PORTDOCS%%share/doc/sqlite/opcode.html
  %%PORTDOCS%%share/doc/sqlite/report1.txt
  %%PORTDOCS%%share/doc/sqlite/speed.html
  %%PORTDOCS%%share/doc/sqlite/sqlite.html
  %%PORTDOCS%%share/doc/sqlite/tclsqlite.html
  %%PORTDOCS%%share/doc/sqlite/vdbe.html
  %%PORTDOCS%%@dirrm share/doc/sqlite
--- 1,34 ----
  bin/sqlite
  include/sqlite.h
  lib/libsqlite.a
  lib/libsqlite.so
  lib/libsqlite.so.2
! %%WITH_TCL%%lib/sqlite/libtclsqlite.so
! %%WITH_TCL%%lib/sqlite/pkgIndex.tcl
! %%WITH_TCL%%@dirrm lib/sqlite
  %%PORTDOCS%%share/doc/sqlite/arch.html
  %%PORTDOCS%%share/doc/sqlite/arch.png
  %%PORTDOCS%%share/doc/sqlite/c_interface.html
  %%PORTDOCS%%share/doc/sqlite/changes.html
! %%PORTDOCS%%share/doc/sqlite/conflict.html
! %%PORTDOCS%%share/doc/sqlite/datatypes.html
  %%PORTDOCS%%share/doc/sqlite/download.html
  %%PORTDOCS%%share/doc/sqlite/faq.html
+ %%PORTDOCS%%share/doc/sqlite/fileformat.html
+ %%PORTDOCS%%share/doc/sqlite/formatchng.html
  %%PORTDOCS%%share/doc/sqlite/index.html
  %%PORTDOCS%%share/doc/sqlite/lang.html
  %%PORTDOCS%%share/doc/sqlite/lemon.html
  %%PORTDOCS%%share/doc/sqlite/mingw.html
+ %%PORTDOCS%%share/doc/sqlite/nulls.html
+ %%PORTDOCS%%share/doc/sqlite/omitted.html
  %%PORTDOCS%%share/doc/sqlite/opcode.html
+ %%PORTDOCS%%share/doc/sqlite/quickstart.html
  %%PORTDOCS%%share/doc/sqlite/report1.txt
  %%PORTDOCS%%share/doc/sqlite/speed.html
  %%PORTDOCS%%share/doc/sqlite/sqlite.html
  %%PORTDOCS%%share/doc/sqlite/tclsqlite.html
  %%PORTDOCS%%share/doc/sqlite/vdbe.html
  %%PORTDOCS%%@dirrm share/doc/sqlite
+ %%PORTDOCS%%share/examples/sqlite/example.tcl
+ %%PORTDOCS%%@dirrm share/examples/sqlite
>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030611002108.GA1009>