blob: 5f5880079457a745df9846f7b8b2710f0fb80a40 (
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
|
# New ports collection makefile for: tclsasl
# Date created: Wed Apr 26 12:42:16 MSD 2006
# Whom: Denis Shaposhnikov <dsh@vlink.ru>
#
# $FreeBSD$
#
PORTNAME= tclsasl
PORTVERSION= 1.0
CATEGORIES= security tcl84
MASTER_SITES= http://beepcore-tcl.sourceforge.net/
EXTRACT_SUFX= .tgz
MAINTAINER= dsh@vlink.ru
COMMENT= A Tcl interface to the Cyrus SASLv2 library
LIB_DEPENDS= sasl2.2:${PORTSDIR}/security/cyrus-sasl2
# USE_TCL hack
BUILD_DEPENDS= ${RUN_DEPENDS}
GNU_CONFIGURE= yes
USE_TCL= yes
INSTALLS_SHLIB= yes
CONFIGURE_ARGS= --with-tcl=${TCL_LIBDIR} \
--with-tclinclude=${TCL_INCLUDEDIR} \
--with-cyrus-sasl=${LOCALBASE}
CONFIGURE_ENV= INSTALL="${INSTALL_DATA}"
PORTDOCS= tclsasl.html
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/doc/tclsasl.html ${DOCSDIR}
.endif
.include <bsd.port.mk>
|