Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 Feb 2013 13:30:17 +0000 (UTC)
From:      "Vanilla I. Shu" <vanilla@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r311374 - in head/devel: . avro
Message-ID:  <201302011330.r11DUH5P023354@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: vanilla
Date: Fri Feb  1 13:30:16 2013
New Revision: 311374
URL: http://svnweb.freebsd.org/changeset/ports/311374

Log:
  Add avro 1.7.3, data serialization system.
  
  PR:		ports/175566
  Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>

Added:
  head/devel/avro/
  head/devel/avro/Makefile   (contents, props changed)
  head/devel/avro/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri Feb  1 12:54:00 2013	(r311373)
+++ head/devel/Makefile	Fri Feb  1 13:30:16 2013	(r311374)
@@ -104,6 +104,7 @@
     SUBDIR += avr-libc
     SUBDIR += avra
     SUBDIR += avrdude
+    SUBDIR += avro
     SUBDIR += avro-c
     SUBDIR += avro-cpp
     SUBDIR += baz

Added: head/devel/avro/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/avro/Makefile	Fri Feb  1 13:30:16 2013	(r311374)
@@ -0,0 +1,39 @@
+# Created by: Gvozdikov Veniamin <g.veniamin@googlemail.com>
+# $FreeBSD$
+
+PORTNAME=	avro
+PORTVERSION=	1.7.3
+CATEGORIES=	devel
+MASTER_SITES=	# none
+DISTFILES=	# none
+EXTRACT_ONLY=	# none
+
+MAINTAINER=	g.veniamin@googlemail.com
+COMMENT=	Data serialization system
+
+NO_BUILD=	yes
+
+OPTIONS_DEFINE=	C CPP PYTHON
+C_DESC=		Install ANSI C library
+CPP_DESC=	Install C++ library
+PYTHON_DESC=	Install Python library
+
+OPTIONS_DEFAULT=C CPP PYTHON
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MC}
+LIB_DEPENDS+=	avro:${PORTSDIR}/devel/avro-c
+.endif
+
+.if ${PORT_OPTIONS:MCPP}
+LIB_DEPENDS+=	avrocpp:${PORTSDIR}/devel/avro-cpp
+.endif
+
+.if ${PORT_OPTIONS:MPYTHON}
+BUILD_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}avro:${PORTSDIR}/devel/py-avro
+.endif
+
+do-install:	# empty
+
+.include <bsd.port.mk>

Added: head/devel/avro/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/avro/pkg-descr	Fri Feb  1 13:30:16 2013	(r311374)
@@ -0,0 +1,13 @@
+Avro is a data serialization system.
+
+Avro provides:
+* Rich data structures.
+* A compact, fast, binary data format.
+* A container file, to store persistent data.
+* Remote procedure call (RPC).
+* Simple integration with dynamic languages. Code generation is not
+required to read or write data files nor to use or implement RPC
+protocols. Code generation as an optional optimization, only worth
+implementing for statically typed languages.
+
+WWW: http://avro.apache.org/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302011330.r11DUH5P023354>