View | Details | Raw Unified | Return to bug 232248
Collapse All | Expand All

(-)databases/sqlite3/Makefile (-2 / +17 lines)
Lines 2-8 Link Here
2
# $FreeBSD: head/databases/sqlite3/Makefile 480212 2018-09-20 21:05:36Z swills $
2
# $FreeBSD: head/databases/sqlite3/Makefile 480212 2018-09-20 21:05:36Z swills $
3
3
4
PORTNAME=	sqlite3
4
PORTNAME=	sqlite3
5
DISTVERSION=	3.25.1
5
DISTVERSION=	3.25.2
6
CATEGORIES=	databases
6
CATEGORIES=	databases
7
MASTER_SITES=	https://www.sqlite.org/2018/ http://www2.sqlite.org/2018/ http://www3.sqlite.org/2018/
7
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
8
DISTNAME=	sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00
Lines 12-20 Link Here
12
12
13
LICENSE=	PD
13
LICENSE=	PD
14
14
15
FLAVORS=	default icu
16
FLAVOR?=	${FLAVORS:[1]}
17
default_CONFLICTS_INSTALL=	${PORTNAME}${icu_PKGNAMESUFFIX}
18
icu_CONFLICTS_INSTALL=	${PORTNAME}
19
icu_PKGNAMESUFFIX=	-icu
20
icu_BUILD_DEPENDS=	${ICU_BUILD_DEPENDS}
21
icu_LIB_DEPENDS=	${ICU_LIB_DEPENDS}
22
.if ${FLAVOR:U} == icu
23
COMMENT+=	(${FLAVOR} flavor)
24
CPPFLAGS+=	${ICU_CPPFLAGS}
25
LIBS+=	${ICU_LIBS}
26
OPTIONS_EXCLUDE=	ICU
27
.endif
28
15
USES=		libtool ncurses pathfix
29
USES=		libtool ncurses pathfix
16
GNU_CONFIGURE=	yes
17
USE_LDCONFIG=	yes
30
USE_LDCONFIG=	yes
31
32
GNU_CONFIGURE=	yes
18
INSTALL_TARGET=	install-strip
33
INSTALL_TARGET=	install-strip
19
34
20
MAKE_JOBS_UNSAFE=	yes
35
MAKE_JOBS_UNSAFE=	yes
(-)databases/sqlite3/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1537452866
1
TIMESTAMP = 1539523929
2
SHA256 (sqlite-autoconf-3250100.tar.gz) = 96ed46bd87f093073ca8afd613020def847009b611c89f397bc24bd932ec6fd1
2
SHA256 (sqlite-autoconf-3250200.tar.gz) = da9a1484423d524d3ac793af518cdf870c8255d209e369bd6a193e9f9d0e3181
3
SIZE (sqlite-autoconf-3250100.tar.gz) = 2763831
3
SIZE (sqlite-autoconf-3250200.tar.gz) = 2763876
(-)databases/sqlite3/files/patch-configure (-11 lines)
Lines 1-11 Link Here
1
--- configure.orig	2018-09-18 20:36:42 UTC
2
+++ configure
3
@@ -13638,7 +13638,7 @@ if test "${enable_session+set}" = set; t
4
 fi
5
 
6
 if test x"$enable_session" = "xyes"; then
7
-  BUILD_CFLAGS="$BUILD_CFLAGS-DSQLITE_ENABLE_SESSION -DSQLITE_ENABLE_PREUPDATE_HOOK"
8
+  BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_ENABLE_SESSION -DSQLITE_ENABLE_PREUPDATE_HOOK"
9
 fi
10
 #-----------------------------------------------------------------------
11
 

Return to bug 232248