freebsd-ports/www/websh/Makefile
Mark Linimon 48420a5ebd Switch autoconf dependencies from 2.53 or 2.59 to 2.61.
PR:		ports/116639
Submitted by:	aDe
2007-09-30 04:47:36 +00:00

97 lines
2.8 KiB
Makefile

# New ports collection makefile for: websh
# Date created: January 31, 2007
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
#
# $FreeBSD$
#
PORTNAME= websh
PORTVERSION= 3.6.0b4
PORTREVISION= 1
CATEGORIES= www tcl84
MASTER_SITES= ${MASTER_SITE_APACHE}
MASTER_SITE_SUBDIR=tcl/${PORTNAME}/source
EXTRACT_SUFX= -src.tar.gz
MAINTAINER= mi@aldan.algebra.com
COMMENT= Embeds a TCL8 interpreter in the Apache server
OPTIONS= WSMDEBUG "memory(n) and checkmem(n) commands in web-scripts" on
OPTIONS+= WSSTATIC "Link the objects into the module statically" off
TCL_DVER= ${TCL_VER:S/.//}
USE_TCL= yes
USE_AUTOTOOLS= autoconf:261
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src/unix
CONFIGURE_ARGS+=--with-tclinclude=${TCL_INCLUDEDIR} \
--with-tcl=${TCL_LIBDIR}
USE_GMAKE= yes
INSTALLS_SHLIB= yes
SUB_FILES= httpd.conf pkgIndex.tcl pkg-message
SUB_LIST+= TCL_DVER=${TCL_DVER} WS_VER=${PORTVERSION:R}
SUB_LIST+= APACHEETCDIR=${APACHEETCDIR} APACHEMODDIR=${APACHEMODDIR}
USE_APACHE= 1.3+
CONFIGURE_ARGS+=--with-httpdinclude=`apxs -q includedir`
CPPFLAGS+= -I ${LOCALBASE}/include/apr-1
.if !defined(NO_WERROR) && ${CC} == "cc" || ${CC:T:Mgcc*} != ""
CPPFLAGS+= -Wall -Werror
.endif
post-patch:
${REINPLACE_CMD} -e 's,/usr/local/websh,${PREFIX},' \
${WRKSRC:H:H}/doc/mod_websh/conf/websh.conf
for p in ${WRKSRC:H:H}/doc/mod_websh/htdocs/*.html ; do \
${SED} -e 's,\.html,.whtml,g' < $$p > \
`${DIRNAME} $$p`/`${BASENAME} $$p .html`.whtml; \
done
${REINPLACE_CMD} -e 's,\.html,.whtml,g' ${WRKSRC:H:H}/doc/mod_websh/htdocs/*.ws3
post-configure:
# "STUBS" are for wimps:
${REINPLACE_CMD} -e 's,tclstub,tcl,' ${WRKSRC}/Makefile
post-build test:
${SETENV} LANG=C ${GMAKE} -C ${WRKSRC} test | ${AWK} '\
/Failed/ && $$NF {failed=1} \
END {exit failed} \
{print}'
do-install:
${MKDIR} ${PREFIX}/lib/${PORTNAME}
${INSTALL_DATA} ${WRKSRC:H:H}/doc/mod_websh/conf/*.ws3 \
${WRKDIR}/pkgIndex.tcl ${PREFIX}/lib/${PORTNAME}/
${INSTALL_DATA} ${WRKSRC:H:H}/doc/mod_websh/conf/websh.conf \
${PREFIX}/etc/websh.conf.dist
${INSTALL_DATA} ${WRKSRC}/mod_websh${PORTVERSION}.so \
${PREFIX}/${APACHEMODDIR}/mod_websh.so
${INSTALL_DATA} ${WRKSRC}/libwebsh${TCL_DVER}.so.1 ${PREFIX}/lib
${LN} -sf ${PREFIX}/lib/libwebsh${TCL_DVER}.so.1 \
${PREFIX}/lib/libwebsh${TCL_DVER}.so
.if !defined(NOPORTDOCS)
${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC:H:H}/doc/mod_websh/htdocs/*.ws3 \
${WRKSRC:H:H}/doc/mod_websh/htdocs/*.whtml \
${WRKDIR}/httpd.conf ${EXAMPLESDIR}/
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC:H:H}/doc/html/* ${DOCSDIR}
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.pre.mk>
.if defined(WITH_WSMDEBUG)
CFLAGS+= -DTCL_MEM_DEBUG
.endif
.if defined(WITHOUT_WSSTATIC)
EXTRA_PATCHES= ${FILESDIR}/shared-patch
.endif
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
.include <bsd.port.post.mk>