Lines 6-17
Link Here
|
6 |
# |
6 |
# |
7 |
|
7 |
|
8 |
PORTNAME= sqlite3 |
8 |
PORTNAME= sqlite3 |
9 |
PORTVERSION= 3.7.2 |
9 |
PORTVERSION= 3.7.3 |
10 |
CATEGORIES= databases |
10 |
CATEGORIES= databases |
11 |
MASTER_SITES= http://www.sqlite.org/ http://www2.sqlite.org/ |
11 |
MASTER_SITES= http://www.sqlite.org/ http://www2.sqlite.org/ |
12 |
DISTNAME= sqlite-${PORTVERSION} |
12 |
DISTNAME= sqlite-${PORTVERSION} |
13 |
|
13 |
|
14 |
MAINTAINER= pol@opk.ru |
14 |
MAINTAINER= pavelivolkov@googlemail.com |
15 |
COMMENT= An SQL database engine in a C library |
15 |
COMMENT= An SQL database engine in a C library |
16 |
|
16 |
|
17 |
LICENSE= unknown |
17 |
LICENSE= unknown |
Lines 30-41
Link Here
|
30 |
TCLLIBDIR="${PREFIX}/lib/${PORTNAME}" \ |
30 |
TCLLIBDIR="${PREFIX}/lib/${PORTNAME}" \ |
31 |
ac_cv_search_pthread_create="" |
31 |
ac_cv_search_pthread_create="" |
32 |
|
32 |
|
|
|
33 |
# Use an in-ram database for temporary tables (never,no,yes,always), |
34 |
# which is equivalent of SQLITE_TEMP_STORE=[0,1,2,3] |
35 |
RAMTABLE?= yes |
36 |
|
33 |
# Compilation Options For SQLite http://www.sqlite.org/compile.html |
37 |
# Compilation Options For SQLite http://www.sqlite.org/compile.html |
34 |
OPTIONS= \ |
38 |
OPTIONS= \ |
35 |
FTS3 "Enable FTS3 (Full Text Search) module" on \ |
39 |
FTS3 "Enable FTS3 (Full Text Search) module" on \ |
36 |
ICU "Enable built with \"ICU\"" off \ |
40 |
ICU "Enable built with \"ICU\"" off \ |
37 |
RTREE "Enable R*Tree module" off \ |
41 |
RTREE "Enable R*Tree module" off \ |
38 |
RAMTABLE "Store temporary tables in RAM" off \ |
42 |
RAMTABLE "Store temporary tables in RAM = ${RAMTABLE}" off \ |
39 |
UPD_DEL_LIMIT "ORDER BY and LIMIT on UPDATE and DELETE" off \ |
43 |
UPD_DEL_LIMIT "ORDER BY and LIMIT on UPDATE and DELETE" off \ |
40 |
SOUNDEX "Enables the soundex() SQL function" off \ |
44 |
SOUNDEX "Enables the soundex() SQL function" off \ |
41 |
METADATA "Enable column metadata" on \ |
45 |
METADATA "Enable column metadata" on \ |
Lines 107-113
Link Here
|
107 |
.endif |
111 |
.endif |
108 |
|
112 |
|
109 |
.if defined(WITH_RAMTABLE) |
113 |
.if defined(WITH_RAMTABLE) |
110 |
CONFIGURE_ARGS+= --enable-tempstore=yes |
114 |
CONFIGURE_ARGS+= --enable-tempstore=${RAMTABLE} |
111 |
.endif |
115 |
.endif |
112 |
|
116 |
|
113 |
.if defined(WITH_SECURE_DELETE) |
117 |
.if defined(WITH_SECURE_DELETE) |
Lines 162-177
Link Here
|
162 |
@${INSTALL_MAN} ${WRKSRC}/sqlite3.1 ${MANPREFIX}/man/man1 |
166 |
@${INSTALL_MAN} ${WRKSRC}/sqlite3.1 ${MANPREFIX}/man/man1 |
163 |
.endif |
167 |
.endif |
164 |
.ifndef NOPORTDOCS |
168 |
.ifndef NOPORTDOCS |
165 |
.ifdef WITH_FTS3 |
|
|
166 |
@${MKDIR} ${DOCSDIR} |
169 |
@${MKDIR} ${DOCSDIR} |
|
|
170 |
.ifdef WITH_FTS3 |
167 |
@${INSTALL_DATA} ${WRKSRC}/ext/fts3/README.syntax ${WRKSRC}/ext/fts3/README.tokenizers ${DOCSDIR} |
171 |
@${INSTALL_DATA} ${WRKSRC}/ext/fts3/README.syntax ${WRKSRC}/ext/fts3/README.tokenizers ${DOCSDIR} |
168 |
.endif |
172 |
.endif |
169 |
.ifdef WITH_RTREE |
173 |
.ifdef WITH_RTREE |
170 |
@${MKDIR} ${DOCSDIR} |
|
|
171 |
@${INSTALL_DATA} ${WRKSRC}/ext/rtree/README ${DOCSDIR} |
174 |
@${INSTALL_DATA} ${WRKSRC}/ext/rtree/README ${DOCSDIR} |
172 |
.endif |
175 |
.endif |
173 |
.ifdef WITH_ICU |
176 |
.ifdef WITH_ICU |
174 |
@${MKDIR} ${DOCSDIR} |
|
|
175 |
@${INSTALL_DATA} ${WRKSRC}/ext/icu/README.txt ${DOCSDIR} |
177 |
@${INSTALL_DATA} ${WRKSRC}/ext/icu/README.txt ${DOCSDIR} |
176 |
.endif |
178 |
.endif |
177 |
.endif |
179 |
.endif |