Index: head/databases/libmemcached/Makefile =================================================================== --- head/databases/libmemcached/Makefile (revision 556894) +++ head/databases/libmemcached/Makefile (revision 556895) @@ -1,59 +1,59 @@ # $FreeBSD$ PORTNAME= libmemcached PORTVERSION= 1.0.18 PORTREVISION= 7 CATEGORIES= databases MASTER_SITES= http://launchpad.net/${PORTNAME}/1.0/${PORTVERSION}/+download/ MAINTAINER= m.tsatsenko@gmail.com COMMENT= C and C++ client library to the memcached server LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS?= libevent.so:devel/libevent +LIB_DEPENDS= libevent.so:devel/libevent TEST_DEPENDS= memcached:databases/memcached USES= autoreconf gmake libtool localbase pathfix pkgconfig USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-memcached \ --without-sphinx-build \ --enable-libmemcachedprotocol TEST_TARGET= check LIBS+= -lexecinfo CXXFLAGS+= -D__STDC_CONSTANT_MACROS -pthread OPTIONS_DEFINE= DEBUG MEMASLAP SASL OPTIONS_DEFAULT= MEMASLAP SASL MURMUR FNV64 OPTIONS_GROUP= HASH OPTIONS_GROUP_HASH= FNV64 HSIEH MURMUR MEMASLAP_DESC= Load generation and benchmark tool FNV64_DESC= Enable fnv64 hashing HSIEH_DESC= Enable hsieh hashing MURMUR_DESC= Enable murmur hashing DEBUG_CONFIGURE_ENABLE= debug MEMASLAP_CONFIGURE_ENABLE= memaslap FNV64_CONFIGURE_ENABLE= fnv64_hash HSIEH_CONFIGURE_ENABLE= hsieh_hash MURMUR_CONFIGURE_ENABLE= murmur_hash SASL_CONFIGURE_ENABLE= sasl SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 PATHFIX_MAKEFILEIN= include.am post-patch: @${REINPLACE_CMD} -e '/^LDFLAGS *=/ s/$$/ $${LTLIBSASL2}/' \ ${WRKSRC}/Makefile.in @${REINPLACE_CMD} '/MAKE.*man/d' ${WRKSRC}/man/include.am post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.* .include Index: head/databases/libmemcached/pkg-descr =================================================================== --- head/databases/libmemcached/pkg-descr (revision 556894) +++ head/databases/libmemcached/pkg-descr (revision 556895) @@ -1,23 +1,23 @@ libmemcached is a C and C++ client library to the memcached server (http://danga.com/memcached). It has been designed to be light on memory usage, thread safe, and provide full access to server side methods. A few notes on its design: # Synchronous and Asynchronous support. # TCP and Unix Socket protocols. # A half dozen or so different hash algorithms. # Implementations of the new cas, replace, and append operators. # Man pages written up on entire API. # Implements both modulo and consistent hashing solutions. It also implements several command line tools: memcat - Copy the value of a key to standard output memflush - Flush the contents of your servers. memrm - Remove a key(s) from the serrver. memcp - Copy files to a memached server. memstat - Dump the stats of your servers to standard output memslap - Generate testing loads on a memcached cluster -WWW: http://libmemcached.org +WWW: https://libmemcached.org/