mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
28 lines
674 B
Makefile
28 lines
674 B
Makefile
# Created by: Martin Matuska <martin@matuska.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mysqltcl
|
|
PORTVERSION= 3.052
|
|
CATEGORIES= databases tcl
|
|
MASTER_SITES= http://www.xdobry.de/mysqltcl/
|
|
|
|
MAINTAINER= tcltk@FreeBSD.org
|
|
COMMENT= TCL module for accessing MySQL databases based on msqltcl
|
|
|
|
USES= tcl
|
|
USE_LDCONFIG= yes
|
|
USE_MYSQL= yes
|
|
|
|
PLIST_FILES= lib/${PORTNAME}-${PORTVERSION}/libmysqltcl${PORTVERSION}.so \
|
|
lib/${PORTNAME}-${PORTVERSION}/pkgIndex.tcl \
|
|
man/mann/mysqltcl.n.gz
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+=--with-tcl=${TCL_LIBDIR} \
|
|
--with-mysql-include=${LOCALBASE}/include/mysql \
|
|
--with-mysql-lib=${LOCALBASE}/lib/mysql \
|
|
--exec-prefix=${PREFIX}
|
|
|
|
.include <bsd.port.mk>
|