summaryrefslogtreecommitdiff
path: root/databases/sqlite2/Makefile
blob: 75376991d0022d9730c3966365ba67578a04486f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ex:ts=8
# New ports collection makefile for:	sqlite
# Date created:			Feb 21, 2001
# Whom:				Ying-Chieh Liao <ijliao@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	sqlite
PORTVERSION=	2.7.4
PORTREVISION=	0
CATEGORIES=	databases
MASTER_SITES=	http://www.hwaci.com/sw/sqlite/
DISTNAME=	${PORTNAME}-${PORTVERSION}

MAINTAINER=	gerhard.haering@gmx.de
COMMENT=	An SQL database engine in a C library, including a Tcl wrapper

LIB_DEPENDS=	tcl${TCL_VER:S/.//}:${PORTSDIR}/lang/tcl${TCL_VER:S/.//}

USE_GMAKE=	YES
GNU_CONFIGURE=	YES
USE_REINPLACE=	YES
CONFIGURE_ARGS=	--prefix=${PREFIX} --with-hints=freebsd.hints
ALL_TARGET=	all libtclsqlite.la
INSTALLS_SHLIB=	YES

WRKSRC=		${WRKDIR}/${PORTNAME}
MAKE_ARGS+=	TCLSH=tclsh${TCL_VER}
MAKE_ENV+=	TCL_VER=${TCL_VER}
TCL_VER?=	8.3

DOCFILES=	arch.html arch.png c_interface.html changes.html \
		crosscompile.html download.html faq.html index.html \
		lang.html lemon.html mingw.html opcode.html report1.txt \
		speed.html sqlite.html tclsqlite.html vdbe.html

DOCSDIR=	${PREFIX}/share/doc/${PORTNAME}

post-patch:
	${REINPLACE_CMD} -e "s/tclsh \$$(TOP)/\$$(TCLSH) \$$(TOP)/g" ${WRKSRC}/Makefile.in
	${ECHO} "config_TARGET_TCL_INC=\"-I${PREFIX}/include/tcl${TCL_VER}\"" >${WRKSRC}/freebsd.hints
	${ECHO} "config_TARGET_TCL_LIBS=\"-L${PREFIX}/lib -ltcl${TCL_VER:S/.//}\"" >>${WRKSRC}/freebsd.hints
	#${ECHO} "config_TARGET_CFLAGS=\"-DTHREADSAFE=1 -pthread\"" >>${WRKSRC}/freebsd.hints

post-build:
	# Build the docs
	cd ${WRKSRC} && ${MAKE} ${MAKE_ARGS} doc

post-install:
	${INSTALL_DATA} ${FILESDIR}/pkgIndex.tcl ${PREFIX}/lib/sqlite/
.if !defined(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}
	@${INSTALL_DATA} ${FILESDIR}/example.tcl ${DOCSDIR}
.for file in ${DOCFILES}
	@${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.mk>