2006-11-24 17:53:03 -05:00
|
|
|
# $OpenBSD: Makefile,v 1.23 2006/11/24 22:53:03 espie Exp $
|
2004-11-06 19:10:17 -05:00
|
|
|
|
2006-11-24 17:53:03 -05:00
|
|
|
COMMENT-main= "Embedded SQL implementation"
|
2005-04-28 18:58:28 -04:00
|
|
|
COMMENT-tcl= "TCL bindings for Sqlite3"
|
2006-09-19 07:26:38 -04:00
|
|
|
V= 3.3.7
|
2005-06-13 20:12:58 -04:00
|
|
|
DISTNAME= sqlite-${V}
|
2006-11-24 17:53:03 -05:00
|
|
|
PKGNAME-main= sqlite3-${V}p0
|
2006-09-19 07:26:38 -04:00
|
|
|
PKGNAME-tcl= sqlite3-tcl-${V}
|
2004-11-06 19:10:17 -05:00
|
|
|
CATEGORIES= databases
|
2006-10-28 07:19:20 -04:00
|
|
|
SHARED_LIBS += sqlite3 8.7 # .8.6
|
|
|
|
SHARED_LIBS += tclsqlite3 8.7 # .8.6
|
2005-12-26 16:32:00 -05:00
|
|
|
|
2004-11-06 19:10:17 -05:00
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
|
2005-06-13 20:12:58 -04:00
|
|
|
HOMEPAGE= http://www.sqlite.org/
|
|
|
|
|
|
|
|
# PD
|
2004-11-06 19:10:17 -05:00
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
|
2005-04-28 18:58:28 -04:00
|
|
|
BUILD_DEPENDS= :pkgconfig-*:devel/pkgconfig
|
2004-11-06 19:10:17 -05:00
|
|
|
|
2005-06-13 20:12:58 -04:00
|
|
|
WANTLIB= c ncurses readline
|
|
|
|
|
2005-12-26 16:32:00 -05:00
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
|
2005-04-28 18:58:28 -04:00
|
|
|
CONFIGURE_STYLE=gnu
|
2005-06-13 20:12:58 -04:00
|
|
|
CONFIGURE_ARGS+=${CONFIGURE_SHARED}
|
2004-11-06 19:10:17 -05:00
|
|
|
|
2006-03-21 20:36:11 -05:00
|
|
|
# XXX gcc bug? some regress tests crash w/-O2 but not -Os
|
2005-10-20 00:42:56 -04:00
|
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
|
|
CFLAGS+=-Os
|
|
|
|
.endif
|
|
|
|
|
2005-04-28 18:58:28 -04:00
|
|
|
PSEUDO_FLAVORS= no_tcl
|
|
|
|
.if ${MACHINE_ARCH} != "m88k" && ${MACHINE_ARCH} != "vax"
|
|
|
|
FLAVOR?=
|
|
|
|
.else
|
|
|
|
FLAVOR= no_tcl
|
|
|
|
.endif
|
2004-11-06 19:10:17 -05:00
|
|
|
|
2006-11-24 17:53:03 -05:00
|
|
|
MULTI_PACKAGES=-main
|
2005-04-28 18:58:28 -04:00
|
|
|
.if !${FLAVOR:L:Mno_tcl}
|
|
|
|
MULTI_PACKAGES+=-tcl
|
|
|
|
.endif
|
2004-11-06 19:10:17 -05:00
|
|
|
|
2006-11-24 17:53:03 -05:00
|
|
|
LIB_DEPENDS-tcl=sqlite3.>=8.6::databases/sqlite3 \
|
2006-08-01 18:19:46 -04:00
|
|
|
tcl84.>=1.0:tcl-8.4.*:lang/tcl/8.4
|
2006-11-24 17:53:03 -05:00
|
|
|
|
|
|
|
.if ${MULTI_PACKAGES:M-tcl}
|
2005-04-28 18:58:28 -04:00
|
|
|
CONFIGURE_ARGS+=--with-tcl=${LOCALBASE}/lib/tcl8.4
|
|
|
|
REGRESS_TARGET= test
|
|
|
|
|
|
|
|
pre-configure:
|
|
|
|
@perl -pi -e s,'tclsh','tclsh8.4',g ${WRKSRC}/Makefile.in
|
|
|
|
# XXX libtool issue
|
|
|
|
pre-install:
|
2006-09-19 07:26:38 -04:00
|
|
|
@cp -p ${WRKSRC}/.libs/libtclsqlite3.so.$(LIBtclsqlite3_VERSION) ${WRKSRC}/.libs/libtclsqlite3.so
|
2006-11-24 17:53:03 -05:00
|
|
|
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+=--disable-tcl
|
|
|
|
NO_REGRESS= Yes
|
2005-04-28 18:58:28 -04:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|