summaryrefslogtreecommitdiff
path: root/databases/sqlite2
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2001-02-22 17:03:20 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2001-02-22 17:03:20 +0000
commita1d5ba54333ef290171daba3d1882f906e4b4975 (patch)
tree9f97005e38e25cf7c0d9b9a344df5640ceda6257 /databases/sqlite2
parentKorean CMap is updated to ak12. (diff)
add sqlite
SQL library that uses GDBM as its underlying file storage mechanism
Notes
Notes: svn path=/head/; revision=38613
Diffstat (limited to 'databases/sqlite2')
-rw-r--r--databases/sqlite2/Makefile33
-rw-r--r--databases/sqlite2/distinfo1
-rw-r--r--databases/sqlite2/pkg-comment1
-rw-r--r--databases/sqlite2/pkg-descr8
-rw-r--r--databases/sqlite2/pkg-plist3
5 files changed, 46 insertions, 0 deletions
diff --git a/databases/sqlite2/Makefile b/databases/sqlite2/Makefile
new file mode 100644
index 000000000000..e1636860c6cd
--- /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 000000000000..379f6b458fa9
--- /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 000000000000..750bd919d8c7
--- /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 000000000000..9637e448f5bb
--- /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 000000000000..79c89c5c0bb0
--- /dev/null
+++ b/databases/sqlite2/pkg-plist
@@ -0,0 +1,3 @@
+bin/sqlite
+lib/libsqlite.a
+include/sqlite.h