diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-02-22 17:03:20 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-02-22 17:03:20 +0000 |
commit | 36c4f98449cf37a408af3adfc20d57850aa5c5e2 (patch) | |
tree | 58e15757259b27146fb5ff521537640051ae5f1a /databases/sqlite2 | |
parent | c78c5344d77a2de4c9f0eed85036e112c0d921d1 (diff) | |
download | FreeBSD-ports-36c4f98449cf37a408af3adfc20d57850aa5c5e2.zip FreeBSD-ports-36c4f98449cf37a408af3adfc20d57850aa5c5e2.tar.gz |
add sqlite
SQL library that uses GDBM as its underlying file storage mechanism
Diffstat (limited to 'databases/sqlite2')
-rw-r--r-- | databases/sqlite2/Makefile | 33 | ||||
-rw-r--r-- | databases/sqlite2/distinfo | 1 | ||||
-rw-r--r-- | databases/sqlite2/pkg-comment | 1 | ||||
-rw-r--r-- | databases/sqlite2/pkg-descr | 8 | ||||
-rw-r--r-- | databases/sqlite2/pkg-plist | 3 |
5 files changed, 46 insertions, 0 deletions
diff --git a/databases/sqlite2/Makefile b/databases/sqlite2/Makefile new file mode 100644 index 0000000..e163686 --- /dev/null +++ b/databases/sqlite2/Makefile @@ -0,0 +1,33 @@ +# ex:ts=8 +# New ports collection makefile for: sqlite +# Date created: Feb 21, 2001 +# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= sqlite +PORTVERSION= 1.0.23 +CATEGORIES= databases +MASTER_SITES= http://www.hwaci.com/sw/sqlite/ +DISTNAME= ${PORTNAME} + +MAINTAINER= ijliao@FreeBSD.org + +LIB_DEPENDS= gdbm.2:${PORTSDIR}/databases/gdbm + +GNU_CONFIGURE= yes +CONFIGURE_SCRIPT= ../sqlite/configure +CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" CFLAGS="-L${LOCALBASE}/lib" + +WRKSRC= ${WRKDIR}/bld + +post-extract: + @${MKDIR} ${WRKSRC} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/sqlite ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/libsqlite.a ${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/sqlite.h ${PREFIX}/include + +.include <bsd.port.mk> diff --git a/databases/sqlite2/distinfo b/databases/sqlite2/distinfo new file mode 100644 index 0000000..379f6b4 --- /dev/null +++ b/databases/sqlite2/distinfo @@ -0,0 +1 @@ +MD5 (sqlite.tar.gz) = 6b41974ba4b2179259b45b92f6946ac6 diff --git a/databases/sqlite2/pkg-comment b/databases/sqlite2/pkg-comment new file mode 100644 index 0000000..750bd91 --- /dev/null +++ b/databases/sqlite2/pkg-comment @@ -0,0 +1 @@ +SQL library that uses GDBM as its underlying file storage mechanism diff --git a/databases/sqlite2/pkg-descr b/databases/sqlite2/pkg-descr new file mode 100644 index 0000000..9637e44 --- /dev/null +++ b/databases/sqlite2/pkg-descr @@ -0,0 +1,8 @@ +SQLite is an SQL database library that uses GDBM as its underlying +file storage mechanism. 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.hwaci.com/sw/sqlite/ diff --git a/databases/sqlite2/pkg-plist b/databases/sqlite2/pkg-plist new file mode 100644 index 0000000..79c89c5 --- /dev/null +++ b/databases/sqlite2/pkg-plist @@ -0,0 +1,3 @@ +bin/sqlite +lib/libsqlite.a +include/sqlite.h |