Date: Thu, 10 Apr 2014 13:58:17 +0000 (UTC) From: Steven Kreuzer <skreuzer@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r350808 - in head/devel: . libzookeeper Message-ID: <201404101358.s3ADwHiJ058324@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: skreuzer Date: Thu Apr 10 13:58:16 2014 New Revision: 350808 URL: http://svnweb.freebsd.org/changeset/ports/350808 QAT: https://qat.redports.org/buildarchive/r350808/ Log: Development files for the C ZooKeeper binding WWW: http://zookeeper.apache.org/ Added: head/devel/libzookeeper/ head/devel/libzookeeper/Makefile (contents, props changed) head/devel/libzookeeper/distinfo (contents, props changed) head/devel/libzookeeper/pkg-descr (contents, props changed) head/devel/libzookeeper/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Apr 10 13:35:53 2014 (r350807) +++ head/devel/Makefile Thu Apr 10 13:58:16 2014 (r350808) @@ -1147,6 +1147,7 @@ SUBDIR += libxalloc SUBDIR += libxs SUBDIR += libytnef + SUBDIR += libzookeeper SUBDIR += libzrtpcpp SUBDIR += libzvbi SUBDIR += lightning Added: head/devel/libzookeeper/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libzookeeper/Makefile Thu Apr 10 13:58:16 2014 (r350808) @@ -0,0 +1,32 @@ +# Created by: skreuzer@FreeBSD.org +# $FreeBSD$ + +PORTNAME= zookeeper +PORTVERSION= 3.4.6 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_APACHE} +MASTER_SITE_SUBDIR= ${PORTNAME}/current +PKGNAMEPREFIX= lib + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= C client interface to Zookeeper server + +LICENSE= APACHE20 + +LIB_DEPENDS= libcppunit.so:${PORTSDIR}/devel/cppunit + +USES= gmake +GNU_CONFIGURE= yes +USE_LDCONFIG=> yes + +WRKSRC= ${WRKDIR}/${DISTNAME}/src/c + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/* + (cd ${STAGEDIR}${PREFIX}/lib; \ + ${STRIP_CMD} libzookeeper_mt.so.2; \ + ${LN} -nsf ${PREFIX}/lib/libzookeeper_mt.so.2 libzookeeper_mt.so; \ + ${STRIP_CMD} libzookeeper_st.so.2; \ + ${LN} -nsf ${PREFIX}/lib/libzookeeper_st.so.2 libzookeeper_st.so ) + +.include <bsd.port.mk> Added: head/devel/libzookeeper/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libzookeeper/distinfo Thu Apr 10 13:58:16 2014 (r350808) @@ -0,0 +1,2 @@ +SHA256 (zookeeper-3.4.6.tar.gz) = 01b3938547cd620dc4c93efe07c0360411f4a66962a70500b163b59014046994 +SIZE (zookeeper-3.4.6.tar.gz) = 17699306 Added: head/devel/libzookeeper/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libzookeeper/pkg-descr Thu Apr 10 13:58:16 2014 (r350808) @@ -0,0 +1,5 @@ +Development files for the C ZooKeeper binding which is a is a centralized, +reliable, service for maintaining configuration information, naming, providing +distributed synchronization, and group services. + +WWW: http://zookeeper.apache.org/ Added: head/devel/libzookeeper/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libzookeeper/pkg-plist Thu Apr 10 13:58:16 2014 (r350808) @@ -0,0 +1,19 @@ +bin/load_gen +bin/cli_mt +bin/cli_st +lib/libzookeeper_mt.a +lib/libzookeeper_st.a +lib/libzookeeper_mt.la +lib/libzookeeper_mt.so +lib/libzookeeper_mt.so.2 +lib/libzookeeper_st.la +lib/libzookeeper_st.so +lib/libzookeeper_st.so.2 +include/zookeeper/proto.h +include/zookeeper/recordio.h +include/zookeeper/zookeeper.h +include/zookeeper/zookeeper.jute.h +include/zookeeper/zookeeper_log.h +include/zookeeper/zookeeper_version.h +@dirrm include/zookeeper +@dirrmtry include
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404101358.s3ADwHiJ058324>