bd6bda39a9
ok martynas@, merdely@, also tested by eric@
69 lines
1.5 KiB
Makefile
69 lines
1.5 KiB
Makefile
# $OpenBSD: Makefile,v 1.32 2007/09/15 18:51:35 steven Exp $
|
|
|
|
COMMENT-main= embedded SQL implementation
|
|
COMMENT-tcl= TCL bindings for Sqlite3
|
|
V= 3.4.2
|
|
DISTNAME= sqlite-${V}
|
|
PKGNAME-main= sqlite3-${V}
|
|
PKGNAME-tcl= sqlite3-tcl-${V}
|
|
CATEGORIES= databases
|
|
SHARED_LIBS += sqlite3 9.0 # .8.6
|
|
SHARED_LIBS += tclsqlite3 9.0 # .8.6
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
HOMEPAGE= http://www.sqlite.org/
|
|
|
|
# PD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB-main= c ncurses readline
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS+=${CONFIGURE_SHARED}
|
|
|
|
# XXX gcc bug? some regress tests crash w/-O2 but not -Os
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
CFLAGS+=-Os
|
|
.endif
|
|
|
|
PSEUDO_FLAVORS= no_tcl
|
|
.if ${MACHINE_ARCH} != "m88k" && ${MACHINE_ARCH} != "vax"
|
|
FLAVOR?=
|
|
.else
|
|
FLAVOR= no_tcl
|
|
.endif
|
|
|
|
MULTI_PACKAGES=-main
|
|
.if !${FLAVOR:L:Mno_tcl}
|
|
MULTI_PACKAGES+=-tcl
|
|
.endif
|
|
|
|
LIB_DEPENDS-tcl=sqlite3.>=9.0::databases/sqlite3 \
|
|
tcl84.>=1.0:tcl-8.4.*:lang/tcl/8.4
|
|
|
|
.if ${MULTI_PACKAGES:M-tcl}
|
|
CONFIGURE_ARGS+=--with-tcl=${LOCALBASE}/lib/tcl8.4
|
|
# Can't pass all its regress tests, because tcl doesn't handle NaN
|
|
# (strtod doesn't work in an IEEE way)
|
|
|
|
REGRESS_TARGET= test
|
|
|
|
pre-configure:
|
|
@perl -pi -e s,'tclsh','tclsh8.4',g ${WRKSRC}/Makefile.in
|
|
# XXX libtool issue
|
|
pre-install:
|
|
@cp -p ${WRKSRC}/.libs/libtclsqlite3.so.$(LIBtclsqlite3_VERSION) ${WRKSRC}/.libs/libtclsqlite3.so
|
|
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-tcl
|
|
NO_REGRESS= Yes
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|