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

Collapse All | Expand All

(-)databases/sqlite3/Makefile (+15 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	sqlite3
4
PORTNAME=	sqlite3
5
DISTVERSION=	3.25.1
5
DISTVERSION=	3.25.1
6
PORTREVISION=	1
6
CATEGORIES=	databases
7
CATEGORIES=	databases
7
MASTER_SITES=	https://www.sqlite.org/2018/ http://www2.sqlite.org/2018/ http://www3.sqlite.org/2018/
8
MASTER_SITES=	https://www.sqlite.org/2018/ http://www2.sqlite.org/2018/ http://www3.sqlite.org/2018/
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-17 Link Here
12
13
13
LICENSE=	PD
14
LICENSE=	PD
14
15
16
FLAVORS=	default icu mini
17
FLAVOR?=	${FLAVORS:[1]}
18
icu_PKGNAMESUFFIX=	-icu
19
mini_PKGNAMESUFFIX=	-mini
20
15
USES=		libtool ncurses pathfix
21
USES=		libtool ncurses pathfix
16
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
17
USE_LDCONFIG=	yes
23
USE_LDCONFIG=	yes
Lines 131-136 Link Here
131
READLINEP_PREVENTS=	READLINES EDITLINE
137
READLINEP_PREVENTS=	READLINES EDITLINE
132
EDITLINE_PREVENTS=	READLINES READLINEP
138
EDITLINE_PREVENTS=	READLINES READLINEP
133
139
140
.if ${FLAVOR:U} == mini
141
OPTIONS_DEFAULT=	THREADS TS1
142
.else
134
OPTIONS_DEFAULT=	FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
143
OPTIONS_DEFAULT=	FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS \
135
			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL READLINES \
144
			EXTENSION TS1 UNICODE61 RTREE DBSTAT STSHELL READLINES \
136
			FTS3_TOKEN FTS5
145
			FTS3_TOKEN FTS5
Lines 139-144 Link Here
139
# FTS3_TOKEN used by audio/clementine-player, mail/thunderbird, www/seamonkey
148
# FTS3_TOKEN used by audio/clementine-player, mail/thunderbird, www/seamonkey
140
# FTS5 used by sysutils/tracker
149
# FTS5 used by sysutils/tracker
141
150
151
.if ${FLAVOR:U} == icu
152
OPTIONS_DEFAULT+=	ICU
153
# for use p5-DBD-SQLite with ICU support
154
.endif
155
.endif
156
142
PLIST_FILES=	bin/sqlite3 include/sqlite3.h include/sqlite3ext.h \
157
PLIST_FILES=	bin/sqlite3 include/sqlite3.h include/sqlite3ext.h \
143
		lib/libsqlite3.a lib/libsqlite3.so lib/libsqlite3.so.0 \
158
		lib/libsqlite3.a lib/libsqlite3.so lib/libsqlite3.so.0 \
144
		lib/libsqlite3.so.0.8.6 libdata/pkgconfig/sqlite3.pc \
159
		lib/libsqlite3.so.0.8.6 libdata/pkgconfig/sqlite3.pc \

Return to bug 231770