Date: Tue, 26 Feb 2019 08:47:42 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r493950 - head/devel/erlang-exmpp Message-ID: <201902260847.x1Q8lgeK077225@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Tue Feb 26 08:47:42 2019 New Revision: 493950 URL: https://svnweb.freebsd.org/changeset/ports/493950 Log: devel/erlang-exmpp: Use gsed during the build Parts of erlang-exmpp's build use base sed with expressions that don't actually work correctly in our sed as of yet. In this case, the replacement of \xa9 with a © entity. The former should be interpreted as the character \xa9 (copyright symbol), but sed does not currently interpret it as such (or \r, \n, \t). Switch to textproc/gsed for now, which does the right thing. PR: 233424 Submitted by: kevans Approved by: erlang (maintainer timeout, 3 months) Modified: head/devel/erlang-exmpp/Makefile Modified: head/devel/erlang-exmpp/Makefile ============================================================================== --- head/devel/erlang-exmpp/Makefile Tue Feb 26 08:46:12 2019 (r493949) +++ head/devel/erlang-exmpp/Makefile Tue Feb 26 08:47:42 2019 (r493950) @@ -4,7 +4,7 @@ PORTNAME= exmpp PORTVERSION= 0.9.9 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel net-im PKGNAMEPREFIX= erlang- @@ -15,7 +15,8 @@ BROKEN_SSL= openssl111 LICENSE= EPL -BUILD_DEPENDS= erlc:lang/erlang +BUILD_DEPENDS= erlc:lang/erlang \ + gsed:textproc/gsed RUN_DEPENDS= erl:lang/erlang LIB_DEPENDS= libexpat.so:textproc/expat2 \ libxml2.so:textproc/libxml2 @@ -33,6 +34,7 @@ CONFIGURE_ARGS+=--enable-static=yes \ --disable-warnings \ --disable-examples \ --enable-escaping-using-cdata +CONFIGURE_ENV= ac_cv_path_SED=${LOCALBASE}/bin/gsed GNU_CONFIGURE_PREFIX= "${PREFIX}/lib/erlang/lib" PLIST_SUB= VERSION=${PORTVERSION} USES= autoreconf cpe libtool pkgconfig ssl
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902260847.x1Q8lgeK077225>