summaryrefslogtreecommitdiff
path: root/databases/sqlite34
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2005-01-21 15:36:45 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2005-01-21 15:36:45 +0000
commit7011c19a8c96a2f8fb7c04d61cb28cdc507584a6 (patch)
tree22c0efaf2b6bb5b461389f9bac9542c7e3a5909a /databases/sqlite34
parenta33896596d7008d70bca9b6ce72347e2d7b6fd9a (diff)
Diffstat (limited to 'databases/sqlite34')
-rw-r--r--databases/sqlite34/Makefile100
-rw-r--r--databases/sqlite34/distinfo2
-rw-r--r--databases/sqlite34/files/example.tcl14
-rw-r--r--databases/sqlite34/files/patch-Makefile.in18
-rw-r--r--databases/sqlite34/files/pkgIndex.tcl1
-rw-r--r--databases/sqlite34/pkg-descr7
-rw-r--r--databases/sqlite34/pkg-plist51
7 files changed, 0 insertions, 193 deletions
diff --git a/databases/sqlite34/Makefile b/databases/sqlite34/Makefile
deleted file mode 100644
index 5e887bc8ddba..000000000000
--- a/databases/sqlite34/Makefile
+++ /dev/null
@@ -1,100 +0,0 @@
-# ex:ts=8
-# New ports collection makefile for: sqlite
-# Date created: Feb 21, 2001
-# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-# 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 define SQLITE_WITH_TCL84.
-
-PORTNAME= sqlite
-PORTVERSION= 3.0.8
-PORTREVISION= 2
-CATEGORIES= databases
-MASTER_SITES= http://www.sqlite.org/
-DISTNAME= ${PORTNAME}-${PORTVERSION}
-
-MAINTAINER= green@FreeBSD.org
-COMMENT= An SQL database engine in a C library w/ Tcl wrapper (beta)
-
-DOCSDIR= ${PREFIX}/share/doc/sqlite3
-EXAMPLESDIR= ${PREFIX}/share/examples/sqlite3
-LATEST_LINK= ${PKGNAMEPREFIX}${PORTNAME}3
-
-# Defaults, for building the docs:
-TCL_V= 8.4
-TCL_SHORT_V= 84
-
-.if defined(SQLITE_WITH_TCL84)
-CATEGORIES+= tcl84
-TCL_V= 8.4
-TCL_SHORT_V= 84
-WITH_TCL= YES
-.endif
-
-.if defined(WITH_TCL)
-ALL_TARGET+= libtclsqlite.la
-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_GNOME= pkgconfig
-USE_LIBTOOL_VER= 13
-GNU_CONFIGURE= YES
-USE_REINPLACE= YES
-CONFIGURE_ARGS= --prefix=${PREFIX} --with-hints=freebsd.hints
-CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
-ALL_TARGET= all
-
-INSTALLS_SHLIB= YES
-
-WRKSRC= ${WRKDIR}/${PORTNAME}
-
-.include <bsd.port.pre.mk>
-
-DOCFILES!= ${AWK} 'BEGIN {FS="/"}; /^%%PORTDOCS%%%%DOCSDIR%%/{print $$2}' pkg-plist
-
-post-patch:
- @${REINPLACE_CMD} -e "s/tclsh \$$(TOP)/\$$(TCLSH) \$$(TOP)/g" \
- -e "s|\./libtool|${LIBTOOL}|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)
- @${MKDIR} ${PREFIX}/lib/sqlite
- cd ${WRKSRC} && ${LIBTOOL} --mode=install ${INSTALL_DATA} \
- libtclsqlite3.la ${PREFIX}/lib/sqlite/
- @${RM} ${PREFIX}/lib/sqlite/libtclsqlite3.la
- ${INSTALL_DATA} ${FILESDIR}/pkgIndex.tcl ${PREFIX}/lib/sqlite/
- ${INSTALL_PROGRAM} ${WRKSRC}/.libs/tclsqlite3 ${PREFIX}/bin
-.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.post.mk>
diff --git a/databases/sqlite34/distinfo b/databases/sqlite34/distinfo
deleted file mode 100644
index b6dc05bf64ce..000000000000
--- a/databases/sqlite34/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (sqlite-3.0.8.tar.gz) = b7dff1ec9bf4d08928c039b278630ba7
-SIZE (sqlite-3.0.8.tar.gz) = 1288859
diff --git a/databases/sqlite34/files/example.tcl b/databases/sqlite34/files/example.tcl
deleted file mode 100644
index 765c3f9ba715..000000000000
--- a/databases/sqlite34/files/example.tcl
+++ /dev/null
@@ -1,14 +0,0 @@
-package require sqlite
-
-if {$argc!=2} {
- puts stderr "Usage: %s DATABASE SQL-STATEMENT"
- exit 1
-}
-sqlite db [lindex $argv 0]
-db eval [lindex $argv 1] x {
- foreach v $x(*) {
- puts "$v = $x($v)"
- }
- puts ""
-}
-db close
diff --git a/databases/sqlite34/files/patch-Makefile.in b/databases/sqlite34/files/patch-Makefile.in
deleted file mode 100644
index 12010f1afd01..000000000000
--- a/databases/sqlite34/files/patch-Makefile.in
+++ /dev/null
@@ -1,18 +0,0 @@
---- Makefile.in.orig Thu Oct 7 00:03:05 2004
-+++ Makefile.in Thu Dec 23 17:17:22 2004
-@@ -543,12 +543,13 @@
- install: sqlite3 libsqlite3.la sqlite3.h
- $(INSTALL) -d $(DESTDIR)$(libdir)
- $(LTINSTALL) libsqlite3.la $(DESTDIR)$(libdir)
-+ rm $(DESTDIR)$(exec_prefix)/lib/libsqlite3.la
- $(INSTALL) -d $(DESTDIR)$(exec_prefix)/bin
- $(LTINSTALL) sqlite3 $(DESTDIR)$(exec_prefix)/bin
- $(INSTALL) -d $(DESTDIR)$(prefix)/include
- $(INSTALL) -m 0644 sqlite3.h $(DESTDIR)$(prefix)/include
-- $(INSTALL) -d $(DESTDIR)$(libdir)/pkgconfig;
-- $(INSTALL) -m 0644 sqlite3.pc $(DESTDIR)$(libdir)/pkgconfig;
-+ $(INSTALL) -d $(DESTDIR)$(exec_prefix)/libdata/pkgconfig;
-+ $(INSTALL) -m 0644 sqlite3.pc $(DESTDIR)$(exec_prefix)/libdata/pkgconfig;
-
- clean:
- rm -f *.lo *.la *.o sqlite3@TARGET_EXEEXT@ libsqlite3.la
diff --git a/databases/sqlite34/files/pkgIndex.tcl b/databases/sqlite34/files/pkgIndex.tcl
deleted file mode 100644
index d8b6bbc30048..000000000000
--- a/databases/sqlite34/files/pkgIndex.tcl
+++ /dev/null
@@ -1 +0,0 @@
-package ifneeded sqlite 0.0 [list load [file join $dir libtclsqlite3.so] sqlite]
diff --git a/databases/sqlite34/pkg-descr b/databases/sqlite34/pkg-descr
deleted file mode 100644
index 3cdcbd6b2daf..000000000000
--- a/databases/sqlite34/pkg-descr
+++ /dev/null
@@ -1,7 +0,0 @@
-SQLite is an SQL database engine in a C library. Programs that link the SQLite
-library can have SQL database access without running a separate RDBMS process.
-The distribution comes with a standalone command-line access program (sqlite)
-that can be used to administer an SQLite database and which serves as an
-example of how to use the SQLite library.
-
-WWW: http://www.sqlite.org/
diff --git a/databases/sqlite34/pkg-plist b/databases/sqlite34/pkg-plist
deleted file mode 100644
index 7d8f2ea654a4..000000000000
--- a/databases/sqlite34/pkg-plist
+++ /dev/null
@@ -1,51 +0,0 @@
-bin/sqlite3
-%%WITH_TCL%%bin/tclsqlite3
-include/sqlite3.h
-lib/libsqlite3.a
-lib/libsqlite3.so
-lib/libsqlite3.so.8
-libdata/pkgconfig/sqlite3.pc
-%%WITH_TCL%%lib/sqlite/libtclsqlite3.so.8
-%%WITH_TCL%%lib/sqlite/libtclsqlite3.so
-%%WITH_TCL%%lib/sqlite/libtclsqlite3.a
-%%WITH_TCL%%lib/sqlite/pkgIndex.tcl
-%%WITH_TCL%%@dirrm lib/sqlite
-%%PORTDOCS%%%%DOCSDIR%%/affinity.html
-%%PORTDOCS%%%%DOCSDIR%%/arch.html
-%%PORTDOCS%%%%DOCSDIR%%/arch2.gif
-%%PORTDOCS%%%%DOCSDIR%%/c_interface.html
-%%PORTDOCS%%%%DOCSDIR%%/capi3.html
-%%PORTDOCS%%%%DOCSDIR%%/capi3ref.html
-%%PORTDOCS%%%%DOCSDIR%%/changes.html
-%%PORTDOCS%%%%DOCSDIR%%/conflict.html
-%%PORTDOCS%%%%DOCSDIR%%/copyright-release.html
-%%PORTDOCS%%%%DOCSDIR%%/copyright-release.pdf
-%%PORTDOCS%%%%DOCSDIR%%/copyright.html
-%%PORTDOCS%%%%DOCSDIR%%/datatype3.html
-%%PORTDOCS%%%%DOCSDIR%%/datatypes.html
-%%PORTDOCS%%%%DOCSDIR%%/docs.html
-%%PORTDOCS%%%%DOCSDIR%%/download.html
-%%PORTDOCS%%%%DOCSDIR%%/faq.html
-%%PORTDOCS%%%%DOCSDIR%%/fileformat.html
-%%PORTDOCS%%%%DOCSDIR%%/formatchng.html
-%%PORTDOCS%%%%DOCSDIR%%/index.html
-%%PORTDOCS%%%%DOCSDIR%%/lang.html
-%%PORTDOCS%%%%DOCSDIR%%/lemon.html
-%%PORTDOCS%%%%DOCSDIR%%/lockingv3.html
-%%PORTDOCS%%%%DOCSDIR%%/mingw.html
-%%PORTDOCS%%%%DOCSDIR%%/nulls.html
-%%PORTDOCS%%%%DOCSDIR%%/oldnews.html
-%%PORTDOCS%%%%DOCSDIR%%/omitted.html
-%%PORTDOCS%%%%DOCSDIR%%/opcode.html
-%%PORTDOCS%%%%DOCSDIR%%/quickstart.html
-%%PORTDOCS%%%%DOCSDIR%%/report1.txt
-%%PORTDOCS%%%%DOCSDIR%%/speed.html
-%%PORTDOCS%%%%DOCSDIR%%/sqlite.gif
-%%PORTDOCS%%%%DOCSDIR%%/sqlite.html
-%%PORTDOCS%%%%DOCSDIR%%/support.html
-%%PORTDOCS%%%%DOCSDIR%%/tclsqlite.html
-%%PORTDOCS%%%%DOCSDIR%%/vdbe.html
-%%PORTDOCS%%%%DOCSDIR%%/version3.html
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-%%PORTDOCS%%%%EXAMPLESDIR%%/example.tcl
-%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%