- Update to 3.3.8
This commit is contained in:
parent
b6b52a0fdc
commit
cdc80713fc
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=177725
4 changed files with 36 additions and 36 deletions
|
@ -7,7 +7,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= sqlite
|
||||
PORTVERSION= 3.3.7
|
||||
PORTVERSION= 3.3.8
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.sqlite.org/
|
||||
|
||||
|
@ -26,10 +26,10 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|||
DOCSDIR= ${PREFIX}/share/doc/sqlite3
|
||||
EXAMPLESDIR= ${PREFIX}/share/examples/sqlite3
|
||||
|
||||
OPTIONS= TCLWRAPPER "TCL wrapper for SQLITE" off \
|
||||
THREADS "Enable threads support" off \
|
||||
DEBUG "Enable debugging & verbose explain" off \
|
||||
DOCS "Building docs (depends on TCL)" on
|
||||
OPTIONS= DEBUG "Enable debugging & verbose explain" off \
|
||||
DOCS "Building docs (depends on TCL)" on \
|
||||
TCLWRAPPER "TCL wrapper for SQLITE" off \
|
||||
THREADS "Enable threads support" off
|
||||
|
||||
# Defaults, for building the docs:
|
||||
TCL_V?= 8.4
|
||||
|
@ -38,6 +38,16 @@ MAKE_ENV+= TCL_VER=${TCL_V}
|
|||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if defined(WITH_DEBUG)
|
||||
CONFIGURE_ARGS+= --enable-debug
|
||||
.endif
|
||||
|
||||
.if !defined(NOPORTDOCS) && !defined(WITHOUT_DOCS)
|
||||
BUILD_DEPENDS+= tclsh${TCL_V}:${PORTSDIR}/lang/tcl${TCL_V:S/.//}
|
||||
ALL_TARGET+= all doc
|
||||
PORTDOCS= *
|
||||
.endif
|
||||
|
||||
.if defined(WITH_TCLWRAPPER)
|
||||
CATEGORIES+= lang tcl${TCL_V:S/.//}
|
||||
LIB_DEPENDS+= tcl${TCL_V:S/.//}:${PORTSDIR}/lang/tcl${TCL_V:S/.//}
|
||||
|
@ -52,16 +62,6 @@ PLIST_SUB+= WITH_TCLWRAPPER="@comment "
|
|||
CONFIGURE_ARGS+= --enable-threadsafe
|
||||
.endif
|
||||
|
||||
.if defined(WITH_DEBUG)
|
||||
CONFIGURE_ARGS+= --enable-debug
|
||||
.endif
|
||||
|
||||
.if !defined(NOPORTDOCS) && !defined(WITHOUT_DOCS)
|
||||
BUILD_DEPENDS+= tclsh${TCL_V}:${PORTSDIR}/lang/tcl${TCL_V:S/.//}
|
||||
ALL_TARGET= all doc
|
||||
PORTDOCS= *
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
.if defined(WITH_THREADS)
|
||||
@${REINPLACE_CMD} -e "s|-lpthread|${PTHREAD_LIBS}|g" \
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (sqlite-3.3.7.tar.gz) = a48deb5e6b0cee59c889f87eee886741
|
||||
SHA256 (sqlite-3.3.7.tar.gz) = d6b436add0bb124814973395a5b696f71c784585f27e6f13edf0b443ce8bf71f
|
||||
SIZE (sqlite-3.3.7.tar.gz) = 1722449
|
||||
MD5 (sqlite-3.3.8.tar.gz) = 2b2b0f967b6c5df1a5d495067c092d11
|
||||
SHA256 (sqlite-3.3.8.tar.gz) = 25ad20114cbf9821249b9e383f2af5ca447ea5382149519c0a84bf9fb37f0f0a
|
||||
SIZE (sqlite-3.3.8.tar.gz) = 1921871
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= sqlite
|
||||
PORTVERSION= 3.3.7
|
||||
PORTVERSION= 3.3.8
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.sqlite.org/
|
||||
|
||||
|
@ -26,10 +26,10 @@ CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|||
DOCSDIR= ${PREFIX}/share/doc/sqlite3
|
||||
EXAMPLESDIR= ${PREFIX}/share/examples/sqlite3
|
||||
|
||||
OPTIONS= TCLWRAPPER "TCL wrapper for SQLITE" off \
|
||||
THREADS "Enable threads support" off \
|
||||
DEBUG "Enable debugging & verbose explain" off \
|
||||
DOCS "Building docs (depends on TCL)" on
|
||||
OPTIONS= DEBUG "Enable debugging & verbose explain" off \
|
||||
DOCS "Building docs (depends on TCL)" on \
|
||||
TCLWRAPPER "TCL wrapper for SQLITE" off \
|
||||
THREADS "Enable threads support" off
|
||||
|
||||
# Defaults, for building the docs:
|
||||
TCL_V?= 8.4
|
||||
|
@ -38,6 +38,16 @@ MAKE_ENV+= TCL_VER=${TCL_V}
|
|||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if defined(WITH_DEBUG)
|
||||
CONFIGURE_ARGS+= --enable-debug
|
||||
.endif
|
||||
|
||||
.if !defined(NOPORTDOCS) && !defined(WITHOUT_DOCS)
|
||||
BUILD_DEPENDS+= tclsh${TCL_V}:${PORTSDIR}/lang/tcl${TCL_V:S/.//}
|
||||
ALL_TARGET+= all doc
|
||||
PORTDOCS= *
|
||||
.endif
|
||||
|
||||
.if defined(WITH_TCLWRAPPER)
|
||||
CATEGORIES+= lang tcl${TCL_V:S/.//}
|
||||
LIB_DEPENDS+= tcl${TCL_V:S/.//}:${PORTSDIR}/lang/tcl${TCL_V:S/.//}
|
||||
|
@ -52,16 +62,6 @@ PLIST_SUB+= WITH_TCLWRAPPER="@comment "
|
|||
CONFIGURE_ARGS+= --enable-threadsafe
|
||||
.endif
|
||||
|
||||
.if defined(WITH_DEBUG)
|
||||
CONFIGURE_ARGS+= --enable-debug
|
||||
.endif
|
||||
|
||||
.if !defined(NOPORTDOCS) && !defined(WITHOUT_DOCS)
|
||||
BUILD_DEPENDS+= tclsh${TCL_V}:${PORTSDIR}/lang/tcl${TCL_V:S/.//}
|
||||
ALL_TARGET= all doc
|
||||
PORTDOCS= *
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
.if defined(WITH_THREADS)
|
||||
@${REINPLACE_CMD} -e "s|-lpthread|${PTHREAD_LIBS}|g" \
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (sqlite-3.3.7.tar.gz) = a48deb5e6b0cee59c889f87eee886741
|
||||
SHA256 (sqlite-3.3.7.tar.gz) = d6b436add0bb124814973395a5b696f71c784585f27e6f13edf0b443ce8bf71f
|
||||
SIZE (sqlite-3.3.7.tar.gz) = 1722449
|
||||
MD5 (sqlite-3.3.8.tar.gz) = 2b2b0f967b6c5df1a5d495067c092d11
|
||||
SHA256 (sqlite-3.3.8.tar.gz) = 25ad20114cbf9821249b9e383f2af5ca447ea5382149519c0a84bf9fb37f0f0a
|
||||
SIZE (sqlite-3.3.8.tar.gz) = 1921871
|
||||
|
|
Loading…
Reference in a new issue