diff options
Diffstat (limited to 'www/dillo-i18n/Makefile')
-rw-r--r-- | www/dillo-i18n/Makefile | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/www/dillo-i18n/Makefile b/www/dillo-i18n/Makefile index 284d69b69a7a..4224716da5be 100644 --- a/www/dillo-i18n/Makefile +++ b/www/dillo-i18n/Makefile @@ -4,9 +4,12 @@ # # $FreeBSD$ # +# Tunables: +# WITH_DILLO_SSL: enable experimental SSL support +# PORTNAME= dillo -PORTVERSION= 0.8.2 +PORTVERSION= 0.8.3 CATEGORIES= www MASTER_SITES= http://www.dillo.org/download/ @@ -24,7 +27,14 @@ USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --enable-ipv6 +CONFIGURE_ARGS= --enable-ipv6 --libdir=${PREFIX}/libexec + +.if defined(WITH_DILLO_SSL) +CONFIGURE_ARGS+= --enable-ssl +USE_OPENSSL= yes +.else +CONFIGURE_ARGS+= --disable-ssl +.endif post-patch: @${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g ; \ @@ -32,4 +42,13 @@ post-patch: @${REINPLACE_CMD} -e 's|dillorc|dillorc.sample|g' ${WRKSRC}/Makefile.in @${CP} ${WRKSRC}/dillorc ${WRKSRC}/dillorc.sample +pre-configure: +.if !defined(WITH_DILLO_SSL) + @${ECHO_CMD} "" + @${ECHO_CMD} " You can enable dillo's experimental SSL support by specifing" + @${ECHO_CMD} " WITH_DILLO_SSL=yes in your make environment or on the" + @${ECHO_CMD} " commandline." + @${ECHO_CMD} "" +.endif + .include <bsd.port.mk> |