Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
This is a fork of ndesk-dbus, which is a C# implementation of D-Bus. It's often
referred to as "managed D-Bus" to avoid confusion with existing bindings (which
wrap libdbus).

View File

@@ -0,0 +1,21 @@
# $NetBSD: Makefile,v 1.3 2013/06/17 12:44:55 wiz Exp $
#
DISTNAME= dbus-sharp-0.7.0
PKGREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= http://cloud.github.com/downloads/mono/dbus-sharp/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://mono.github.com/dbus-sharp/
COMMENT= D-Bus for .NET
LICENSE= mit
GNU_CONFIGURE= yes
USE_TOOLS+= gmake pkg-config
USE_LANGUAGES= # none
PKGCONFIG_OVERRIDE+= dbus-sharp-1.0.pc.in
.include "../../lang/mono2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,6 @@
@comment $NetBSD: PLIST,v 1.1 2013/06/10 11:59:38 obache Exp $
lib/mono/dbus-sharp-1.0/dbus-sharp.dll
lib/mono/gac/dbus-sharp/1.0.0.0__5675b0c3093115b5/dbus-sharp.dll
lib/mono/gac/dbus-sharp/1.0.0.0__5675b0c3093115b5/dbus-sharp.dll.config
lib/mono/gac/dbus-sharp/1.0.0.0__5675b0c3093115b5/dbus-sharp.dll.mdb
lib/pkgconfig/dbus-sharp-1.0.pc

View File

@@ -0,0 +1,15 @@
# $NetBSD: buildlink3.mk,v 1.2 2013/06/17 12:44:55 wiz Exp $
BUILDLINK_TREE+= dbus-sharp
.if !defined(DBUS_SHARP_BUILDLINK3_MK)
DBUS_SHARP_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.dbus-sharp+= dbus-sharp>=0.7.0
BUILDLINK_ABI_DEPENDS.dbus-sharp?= dbus-sharp>=0.7.0nb2
BUILDLINK_PKGSRCDIR.dbus-sharp?= ../../sysutils/dbus-sharp
.include "../../lang/mono2/buildlink3.mk"
.endif # DBUS_SHARP_BUILDLINK3_MK
BUILDLINK_TREE+= -dbus-sharp

View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.2 2013/06/11 02:29:40 obache Exp $
SHA1 (dbus-sharp-0.7.0.tar.gz) = 7e7b05aadb6a289cd862dc630a36d9b87b5b84cb
RMD160 (dbus-sharp-0.7.0.tar.gz) = 6f24068ea649d86282cabf11b633074165c2ed9f
Size (dbus-sharp-0.7.0.tar.gz) = 127651 bytes
SHA1 (patch-src_Unix.cs) = e7b6bf7f684066d12ad46cc9b1e9c59d7cec7548
SHA1 (patch-src_dbus-sharp.dll.config) = f8d14833fd8d2d37ce822b724279c4b396387b9e

View File

@@ -0,0 +1,16 @@
$NetBSD: patch-src_Unix.cs,v 1.1 2013/06/11 02:29:40 obache Exp $
* Reverse the way the dllmap for libsocket is handled, by using libc
https://github.com/mono/dbus-sharp/commit/1561585d601058392d5864e3add2bac3c67e14a7
--- src/Unix.cs.orig 2010-09-14 09:17:50.000000000 +0000
+++ src/Unix.cs
@@ -197,7 +197,7 @@ namespace DBus.Unix
// Solaris provides socket functionality in libsocket rather than libc.
// We use a dllmap in the .config to deal with this.
- internal const string LIBSOCKET = "libsocket";
+ internal const string LIBSOCKET = "libc";
public const short AF_UNIX = 1;
// FIXME: SOCK_STREAM is 2 on Solaris

View File

@@ -0,0 +1,22 @@
$NetBSD: patch-src_dbus-sharp.dll.config,v 1.1 2013/06/11 02:29:40 obache Exp $
* Reverse the way the dllmap for libsocket is handled, by using libc
https://github.com/mono/dbus-sharp/commit/1561585d601058392d5864e3add2bac3c67e14a7
--- src/dbus-sharp.dll.config.orig 2010-09-14 09:17:50.000000000 +0000
+++ src/dbus-sharp.dll.config
@@ -1,3 +1,13 @@
<configuration>
- <dllmap dll="libsocket" os="!solaris" target="libc.so.6"/>
+ <dllmap dll="libc">
+ <dllentry os="solaris" dll="libsocket.so.1" name="socket" target="socket"/>
+ <dllentry os="solaris" dll="libsocket.so.1" name="connect" target="connect"/>
+ <dllentry os="solaris" dll="libsocket.so.1" name="bind" target="bind"/>
+ <dllentry os="solaris" dll="libsocket.so.1" name="listen" target="listen"/>
+ <dllentry os="solaris" dll="libsocket.so.1" name="accept" target="accept"/>
+ <dllentry os="solaris" dll="libsocket.so.1" name="getsockopt" target="getsockopt"/>
+ <dllentry os="solaris" dll="libsocket.so.1" name="setsockopt" target="setsockopt"/>
+ <dllentry os="solaris" dll="libsocket.so.1" name="resvmsg" target="resvmsg"/>
+ <dllentry os="solaris" dll="libsocket.so.1" name="sendmsg" target="sendmsg"/>
+ </dllmap>
</configuration>