Date: Tue, 16 Jun 2015 12:56:27 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r389839 - head/irc/hexchat Message-ID: <201506161256.t5GCuR7h055615@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Tue Jun 16 12:56:27 2015 New Revision: 389839 URL: https://svnweb.freebsd.org/changeset/ports/389839 Log: - Fix build on pre-10.x by requiring newer OpenSSL version from ports - Fix build with NLS disabled by adding gettext-tools dependency MFH: 2015Q2 Modified: head/irc/hexchat/Makefile Modified: head/irc/hexchat/Makefile ============================================================================== --- head/irc/hexchat/Makefile Tue Jun 16 12:50:21 2015 (r389838) +++ head/irc/hexchat/Makefile Tue Jun 16 12:56:27 2015 (r389839) @@ -20,6 +20,7 @@ CONFIGURE_ARGS+=--enable-openssl --enabl --with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig INSTALLS_ICONS= yes INSTALL_TARGET= install-strip +USE_OPENSSL= yes CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib -lX11 @@ -51,6 +52,7 @@ DOAT_CONFIGURE_ENABLE= doat FISHLIM_CONFIGURE_ENABLE= fishlim NLS_CONFIGURE_ENABLE= nls NLS_USES= gettext +NLS_USES_OFF= gettext-tools # doesn't build otherwise NOTIFY_RUN_DEPENDS= notify-send:${PORTSDIR}/devel/libnotify NOTIFY_CONFIGURE_ENABLE= libnotify PERL_CONFIGURE_ENABLE= perl @@ -61,6 +63,12 @@ TEXTFE_CONFIGURE_ENABLE= textfe .include <bsd.port.options.mk> +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +WITH_OPENSSL_PORT= yes +.endif + +.include <bsd.port.pre.mk> + .if ${PORT_OPTIONS:MCA_BUNDLE} CA_BUNDLE= "${LOCALBASE}/share/certs/ca-root-nss.crt" .else @@ -91,4 +99,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/*.md ${STAGEDIR}${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506161256.t5GCuR7h055615>