View | Details | Raw Unified | Return to bug 222021 | Differences between
and this patch

Collapse All | Expand All

(-)databases/sqlite3/Makefile (-18 / +11 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	sqlite3
4
PORTNAME=	sqlite3
5
DISTVERSION=	3.28.0
5
DISTVERSION=	3.28.0
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
MASTER_SITES=	https://www.sqlite.org/2019/ http://www2.sqlite.org/2019/ http://www3.sqlite.org/2019/
8
MASTER_SITES=	https://www.sqlite.org/2019/ http://www2.sqlite.org/2019/ http://www3.sqlite.org/2019/
8
DISTNAME=	sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00
9
DISTNAME=	sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00
Lines 12-18 Link Here
12
13
13
LICENSE=	PD
14
LICENSE=	PD
14
15
15
USES=		libtool ncurses pathfix
16
USES=		libtool pathfix
16
USE_LDCONFIG=	yes
17
USE_LDCONFIG=	yes
17
18
18
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
Lines 26-33 Link Here
26
			LIKENOTBLOB STSHELL FTS3_TOKEN UNKNOWN_SQL SORT_REF \
27
			LIKENOTBLOB STSHELL FTS3_TOKEN UNKNOWN_SQL SORT_REF \
27
			NORMALIZE
28
			NORMALIZE
28
OPTIONS_SINGLE=		RAMT
29
OPTIONS_SINGLE=		RAMT
29
OPTIONS_RADIO=		STAT
30
OPTIONS_RADIO=		STAT RL
30
OPTIONS_GROUP=		OPT_EXT OPT_FUNC UNICODE RTREEG RL
31
OPTIONS_GROUP=		OPT_EXT OPT_FUNC UNICODE RTREEG
31
32
32
OPTIONS_GROUP_OPT_EXT=	JSON1 SESSION
33
OPTIONS_GROUP_OPT_EXT=	JSON1 SESSION
33
OPTIONS_GROUP_OPT_FUNC=	OFFSET SER1 SOUNDEX
34
OPTIONS_GROUP_OPT_FUNC=	OFFSET SER1 SOUNDEX
Lines 124-140 Link Here
124
GEOPOLY_DESC=		Uses the GeoJSON notation (RFC-7946)
125
GEOPOLY_DESC=		Uses the GeoJSON notation (RFC-7946)
125
GEOPOLY_IMPLIES=	RTREE
126
GEOPOLY_IMPLIES=	RTREE
126
127
127
OPTIONS_GROUP_RL=	READLINES READLINEP EDITLINE
128
OPTIONS_RADIO_RL=	LIBEDIT READLINE
128
RL_DESC=		Which command line editing library to use:
129
RL_DESC=		Command line editing library (may be off)
129
READLINES_DESC=		the libreadline from system
130
READLINEP_DESC=		the GNU libreadline from ports
131
EDITLINE_DESC=		the BSD libedit from ports
132
READLINES_PREVENTS=	READLINEP EDITLINE
133
READLINEP_PREVENTS=	READLINES EDITLINE
134
EDITLINE_PREVENTS=	READLINES READLINEP
135
130
136
OPTIONS_DEFAULT=	FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
131
OPTIONS_DEFAULT=	FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
137
			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL READLINES \
132
			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL LIBEDIT \
138
			FTS3_TOKEN FTS5
133
			FTS3_TOKEN FTS5
139
# SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al.
134
# SECURE_DELETE, UNLOCK_NOTIFY, DBSTAT (since 41.0) used by www/firefox et al.
140
# RTREE used by graphics/mapnik, databases/spatialite
135
# RTREE used by graphics/mapnik, databases/spatialite
Lines 196-207 Link Here
196
UNICODE61_CPPFLAGS=	""
191
UNICODE61_CPPFLAGS=	""
197
UNICODE61_CPPFLAGS_OFF=	-DSQLITE_DISABLE_FTS3_UNICODE=1
192
UNICODE61_CPPFLAGS_OFF=	-DSQLITE_DISABLE_FTS3_UNICODE=1
198
193
199
READLINES_CONFIGURE_ON=	--enable-readline
194
LIBEDIT_CONFIGURE_ENABLE=	editline
200
READLINES_USES=	readline
195
LIBEDIT_USES=	libedit ncurses
201
READLINEP_CONFIGURE_ON=	--enable-readline
196
READLINE_CONFIGURE_ENABLE=	readline
202
READLINEP_USES=	readline:port
197
READLINE_USES=	readline ncurses
203
EDITLINE_CONFIGURE_ENABLE=	editline
204
EDITLINE_USES=	libedit
205
198
206
JSON1_CONFIGURE_ENABLE=	json1
199
JSON1_CONFIGURE_ENABLE=	json1
207
200

Return to bug 222021