From owner-svn-ports-head@FreeBSD.ORG Fri Jan 31 10:54:37 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 3A3BA26C; Fri, 31 Jan 2014 10:54:37 +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 0BBD61366; Fri, 31 Jan 2014 10:54:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0VAsaLi061054; Fri, 31 Jan 2014 10:54:36 GMT (envelope-from romain@svn.freebsd.org) Received: (from romain@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0VAsa5A061052; Fri, 31 Jan 2014 10:54:36 GMT (envelope-from romain@svn.freebsd.org) Message-Id: <201401311054.s0VAsa5A061052@svn.freebsd.org> From: Romain Tartière Date: Fri, 31 Jan 2014 10:54:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341977 - in head/devel/dbus-sharp: . 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: Fri, 31 Jan 2014 10:54:37 -0000 Author: romain Date: Fri Jan 31 10:54:36 2014 New Revision: 341977 URL: http://svnweb.freebsd.org/changeset/ports/341977 QAT: https://qat.redports.org/buildarchive/r341977/ Log: Fix for FreeBSD 10.0. While here, cleannup port. Deleted: head/devel/dbus-sharp/files/ Modified: head/devel/dbus-sharp/Makefile head/devel/dbus-sharp/pkg-descr Modified: head/devel/dbus-sharp/Makefile ============================================================================== --- head/devel/dbus-sharp/Makefile Fri Jan 31 10:20:31 2014 (r341976) +++ head/devel/dbus-sharp/Makefile Fri Jan 31 10:54:36 2014 (r341977) @@ -3,6 +3,7 @@ PORTNAME= dbus-sharp PORTVERSION= 0.7.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel gnome MASTER_SITES= http://cloud.github.com/downloads/mono/${PORTNAME}/ @@ -10,13 +11,27 @@ MASTER_SITES= http://cloud.github.com/do MAINTAINER= mono@FreeBSD.org COMMENT= Mono interface to the D-BUS messaging system +LICENSE= MIT + BUILD_DEPENDS= mono:${PORTSDIR}/lang/mono RUN_DEPENDS= mono:${PORTSDIR}/lang/mono GNU_CONFIGURE= yes -USE_GMAKE= yes -USES= pathfix pkgconfig +USES= gmake pathfix pkgconfig + +.include + +post-patch: +.if ${OSVERSION} < 1000044 +# libc.so is a symlink to the right libc.so.X + ${REINPLACE_CMD} -e 's|libc.so.6|libc.so|' \ + ${WRKSRC}/src/dbus-sharp.dll.config +.else +# libc.so is an LD script not usable by dllmap, so we have to set a proper +# version number. + ${REINPLACE_CMD} -e 's|libc.so.6|libc.so.7|' \ + ${WRKSRC}/src/dbus-sharp.dll.config +.endif -NO_STAGE= yes .include "${.CURDIR}/../../lang/mono/bsd.mono.mk" -.include +.include Modified: head/devel/dbus-sharp/pkg-descr ============================================================================== --- head/devel/dbus-sharp/pkg-descr Fri Jan 31 10:20:31 2014 (r341976) +++ head/devel/dbus-sharp/pkg-descr Fri Jan 31 10:54:36 2014 (r341977) @@ -2,4 +2,4 @@ This is a fork of ndesk-dbus, which is a referred to as "managed D-Bus" to avoid confusion with existing bindings (which wrap libdbus). -WWW: http://mono.github.com/dbus-sharp/ +WWW: http://mono.github.com/dbus-sharp/