svn commit: r348949 - in head/lang/mono: . files
Tijl Coosemans
tijl at FreeBSD.org
Mon Mar 24 12:18:05 UTC 2014
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 at 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
More information about the svn-ports-head
mailing list