From owner-svn-ports-head@FreeBSD.ORG Mon Mar 24 12:18:04 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E1631D6C; Mon, 24 Mar 2014 12:18:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B4A87BFB; Mon, 24 Mar 2014 12:18:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2OCI4Nt070871; Mon, 24 Mar 2014 12:18:04 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2OCI4oC070867; Mon, 24 Mar 2014 12:18:04 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201403241218.s2OCI4oC070867@svn.freebsd.org> From: Tijl Coosemans Date: Mon, 24 Mar 2014 12:18:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348949 - in head/lang/mono: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Mar 2014 12:18:05 -0000 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