diff options
Diffstat (limited to 'databases/sqlite34/Makefile')
-rw-r--r-- | databases/sqlite34/Makefile | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/databases/sqlite34/Makefile b/databases/sqlite34/Makefile index 7f6e70e872cb..5dfa3d44b75e 100644 --- a/databases/sqlite34/Makefile +++ b/databases/sqlite34/Makefile @@ -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" \ |