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

2
devel/msgpack/DESCR Normal file
View File

@@ -0,0 +1,2 @@
MessagePack is an efficient object serialization library, which are very compact
and fast data format, with rich data structures compatible with JSON.

28
devel/msgpack/Makefile Normal file
View File

@@ -0,0 +1,28 @@
# $NetBSD: Makefile,v 1.4 2012/10/31 11:17:30 asau Exp $
#
DISTNAME= msgpack-0.5.7
CATEGORIES= devel
MASTER_SITES= http://msgpack.org/releases/cpp/
MAINTAINER= obache@NetBSD.org
HOMEPAGE= http://msgpack.org/
COMMENT= Binary-based efficient object serialization library
LICENSE= apache-2.0
GNU_CONFIGURE= yes
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
GCC_REQD= 4.1
.include "../../mk/bsd.prefs.mk"
.if ${MACHINE_ARCH} == "i386"
CFLAGS+= -march=i686
CXXFLAGS+= -march=i686
.endif
.include "options.mk"
.include "../../mk/bsd.pkg.mk"

43
devel/msgpack/PLIST Normal file
View File

@@ -0,0 +1,43 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2011/04/06 13:01:30 obache Exp $
include/msgpack.h
include/msgpack.hpp
include/msgpack/object.h
include/msgpack/object.hpp
include/msgpack/pack.h
include/msgpack/pack.hpp
include/msgpack/pack_define.h
include/msgpack/pack_template.h
include/msgpack/sbuffer.h
include/msgpack/sbuffer.hpp
include/msgpack/sysdep.h
include/msgpack/type.hpp
include/msgpack/type/bool.hpp
include/msgpack/type/define.hpp
include/msgpack/type/deque.hpp
include/msgpack/type/fixint.hpp
include/msgpack/type/float.hpp
include/msgpack/type/int.hpp
include/msgpack/type/list.hpp
include/msgpack/type/map.hpp
include/msgpack/type/nil.hpp
include/msgpack/type/pair.hpp
include/msgpack/type/raw.hpp
include/msgpack/type/set.hpp
include/msgpack/type/string.hpp
include/msgpack/type/tr1/unordered_map.hpp
include/msgpack/type/tr1/unordered_set.hpp
include/msgpack/type/tuple.hpp
include/msgpack/type/vector.hpp
include/msgpack/unpack.h
include/msgpack/unpack.hpp
include/msgpack/unpack_define.h
include/msgpack/unpack_template.h
include/msgpack/version.h
include/msgpack/vrefbuffer.h
include/msgpack/vrefbuffer.hpp
include/msgpack/zbuffer.h
include/msgpack/zbuffer.hpp
include/msgpack/zone.h
include/msgpack/zone.hpp
lib/libmsgpack.la
lib/libmsgpackc.la

View File

@@ -0,0 +1,13 @@
# $NetBSD: buildlink3.mk,v 1.1.1.1 2011/04/06 13:01:30 obache Exp $
#
BUILDLINK_TREE+= msgpack
.if !defined(MSGPACK_BUILDLINK3_MK)
MSGPACK_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.msgpack+= msgpack>=0.5.5
BUILDLINK_PKGSRCDIR.msgpack?= ../../devel/msgpack
.endif # MSGPACK_BUILDLINK3_MK
BUILDLINK_TREE+= -msgpack

5
devel/msgpack/distinfo Normal file
View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.3 2011/09/04 02:57:11 obache Exp $
SHA1 (msgpack-0.5.7.tar.gz) = 1b04e1b5d47c534cef8d2fbd7718a1e4ffaae4c5
RMD160 (msgpack-0.5.7.tar.gz) = 525ffd5a8035f093f5fa41e478377cf1a2bf7707
Size (msgpack-0.5.7.tar.gz) = 409209 bytes

13
devel/msgpack/options.mk Normal file
View File

@@ -0,0 +1,13 @@
# $NetBSD: options.mk,v 1.1.1.1 2011/04/06 13:01:30 obache Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.msgpack
PKG_SUPPORTED_OPTIONS= tests
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mtests)
BUILDLINK_DEPMETHOD.googletest+= build
.include "../../devel/googletest/buildlink3.mk"
TEST_TARGET= check
.endif