diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2015-10-20 14:47:12 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2015-10-20 14:47:12 +0000 |
commit | 89226726da7540c762ffb63d6efb4a194a19030e (patch) | |
tree | 405c181b876f07b52700e82f1ad6bdd917cf0607 /databases/sqlite3/Makefile | |
parent | b625a1346aa9099b4172f3633f67f4890316aed7 (diff) | |
download | ports-89226726da7540c762ffb63d6efb4a194a19030e.tar.gz ports-89226726da7540c762ffb63d6efb4a194a19030e.zip |
Notes
Diffstat (limited to 'databases/sqlite3/Makefile')
-rw-r--r-- | databases/sqlite3/Makefile | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index 38e324e51255..b621a16324bf 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= sqlite3 -PORTVERSION= 3.8.11.1 -PORTREVISION= 1 +PORTVERSION= 3.9.1 CATEGORIES= databases MASTER_SITES= https://www.sqlite.org/2015/ http://www2.sqlite.org/2015/ http://www3.sqlite.org/2015/ -DISTNAME= sqlite-autoconf-${PORTVERSION:S|8.|8|:S|.|0|g} +DISTNAME= sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00 MAINTAINER= pavelivolkov@gmail.com COMMENT= SQL database engine in a C library @@ -16,7 +15,7 @@ LICENSE_NAME= Public Domain LICENSE_TEXT= Description of the license can be obtained from the following URL: http://www.sqlite.org/copyright.html LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -CONFLICTS= sqlite34-[0-9]* sqlcipher-[0-9]* +CONFLICTS= sqlcipher-[0-9]* USES= libtool ncurses pathfix USE_LDCONFIG= yes @@ -29,12 +28,11 @@ MAKE_JOBS_UNSAFE= yes # Compilation Options For SQLite http://www.sqlite.org/compile.html OPTIONS_DEFINE= FTS4 UPD_DEL_LIMIT URI URI_AUTHORITY SOUNDEX METADATA \ DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY THREADS \ - EXTENSION READLINE ARMOR STMT DBSTAT + EXTENSION READLINE ARMOR STMT DBSTAT FTS5 JSON1 RBU OPTIONS_SINGLE= RAMT OPTIONS_RADIO= STAT OPTIONS_GROUP= UNICODE RTREEG -FTS4_DESC= Enable FTS3/4 (Full Text Search) module UPD_DEL_LIMIT_DESC= ORDER BY and LIMIT on UPDATE and DELETE URI_DESC= Enable use the URI filename URI_AUTHORITY_DESC= Allow convert URL into a UNC @@ -49,6 +47,18 @@ EXTENSION_DESC= Allow loadable extensions # http://www.sqlite.org/compile.html#enable_api_armor ARMOR_DESC= Detect misuse of the API +# http://www.sqlite.org/fts3.html +FTS4_DESC= Enable FTS3/4 (Full Text Search) module + +# http://www.sqlite.org/fts5.html +FTS5_DESC= Enable version 5 full-text search engine + +# http://www.sqlite.org/json1.html +JSON1_DESC= Enable the JSON1 extension + +# http://www.sqlite.org/rbu.html +RBU_DESC= Enable the Resumable Bulk Update + # http://www.sqlite.org/c3ref/stmt_scanstatus.html STMT_DESC= Prepared Statement Scan Status @@ -143,6 +153,12 @@ UNICODE61_CPPFLAGS_OFF= -DSQLITE_DISABLE_FTS3_UNICODE=1 READLINE_CONFIGURE_ENABLE= readline READLINE_USES= readline +FTS5_CONFIGURE_ENABLE= fts5 + +JSON1_CONFIGURE_ENABLE= json1 + +RBU_CPPFLAGS= -DSQLITE_ENABLE_RBU=1 + .include <bsd.port.options.mk> post-configure: |