Date: Mon, 24 Mar 2014 12:18:04 +0000 (UTC) From: Tijl Coosemans <tijl@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348949 - in head/lang/mono: . files Message-ID: <201403241218.s2OCI4oC070867@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tijl Date: Mon Mar 24 12:18:04 2014 New Revision: 348949 URL: http://svnweb.freebsd.org/changeset/ports/348949 QAT: https://qat.redports.org/buildarchive/r348949/ Log: - Remove indefinite article from COMMENT. - USES=tar:bzip2. - USES=iconv and prefer nl_langinfo over locale_charset. [1] Reported by: antoine [1] Added: head/lang/mono/files/patch-eglib-src-gunicode.c (contents, props changed) Modified: head/lang/mono/Makefile Modified: head/lang/mono/Makefile ============================================================================== --- head/lang/mono/Makefile Mon Mar 24 12:05:23 2014 (r348948) +++ head/lang/mono/Makefile Mon Mar 24 12:18:04 2014 (r348949) @@ -3,18 +3,17 @@ PORTNAME= mono PORTVERSION= 3.2.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= http://download.mono-project.com/sources/${PORTNAME}/ MAINTAINER= mono@FreeBSD.org -COMMENT= An open source implementation of .NET Development Framework +COMMENT= Open source implementation of .NET Development Framework BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser \ bash:${PORTSDIR}/shells/bash -USE_BZIP2= yes -USES= bison gettext gmake pathfix perl5 +USES= bison gettext gmake iconv pathfix perl5 tar:bzip2 USE_GNOME= glib20 USE_PERL5= build GNU_CONFIGURE= yes Added: head/lang/mono/files/patch-eglib-src-gunicode.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/mono/files/patch-eglib-src-gunicode.c Mon Mar 24 12:18:04 2014 (r348949) @@ -0,0 +1,16 @@ +--- eglib/src/gunicode.c.orig ++++ eglib/src/gunicode.c +@@ -219,10 +219,10 @@ + is_utf8 = FALSE; + #else + /* These shouldn't be heap allocated */ +-#if HAVE_LOCALCHARSET_H +- my_charset = locale_charset (); +-#elif defined(HAVE_LANGINFO_H) ++#if defined(HAVE_LANGINFO_H) + my_charset = nl_langinfo (CODESET); ++#elif defined(HAVE_LOCALCHARSET_H) ++ my_charset = locale_charset (); + #else + my_charset = "UTF-8"; + #endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403241218.s2OCI4oC070867>