pkgsrc/devel/memcached/Makefile
mspo ffc8f99e53 1.4.8:
Feature and bugfix release. New Touch commands, counters, and a change to connection limit functionality.
*Touch Commands
*Binary Touch/GAT commands were backported from 1.6.
*New GATK/GATKQ commands were added for completeness.
*Finally, an Ascii protocol touch command was also added.
*Fast Connection Limit Handling
*Internal Hash Table
*New Stats: expired_unfetched, evicted_unfetched

1.4.9:
Small bugfix release. Mainly fixing a critical issue where using -c to increase the connection limit was broken in 1.4.8. If you are on 1.4.8, an upgrade is highly recommended.

1.4.10:
This release is focused on thread scalability and performance improvements. This release should be able to feed data back faster than any network card can support as of this writing.

1.4.11:
Memcached 1.4.11. Fixes race conditions and crashes introduced in 1.4.10. Adds the ability to rebalance and reassign slab memory.
*Slab Reassign
*Slab Automove
*New Stats: slab_reassign_running, slabs_moved

1.4.12:
Fix a small number of bugs, mostly in building on different platforms.

1.4.13:
Really tiny release with some important build fixes which were accidentally omitted from 1.4.12.
2012-02-25 20:52:53 +00:00

38 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.26 2012/02/25 20:52:53 mspo Exp $
DISTNAME= memcached-1.4.13
CATEGORIES= devel
MASTER_SITES= http://memcached.googlecode.com/files/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.memcached.org/
COMMENT= High-performance distributed memory object caching system
LICENSE= 2-clause-bsd
PKG_DESTDIR_SUPPORT= user-destdir
USE_TOOLS+= perl
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-libevent=${BUILDLINK_PREFIX.libevent}
REPLACE_PERL= scripts/memcached-tool
RCD_SCRIPTS= memcached
INSTALLATION_DIRS= share/doc/${PKGBASE} share/examples/rc.d
.include "../../mk/bsd.prefs.mk"
MEMCACHED_USER?= memcached
MEMCACHED_GROUP?= memcached
PKG_GROUPS= ${MEMCACHED_GROUP}
PKG_USERS= ${MEMCACHED_USER}:${MEMCACHED_GROUP}
PKG_GROUPS_VARS+= MEMCACHED_GROUP
PKG_USERS_VARS+= MEMCACHED_USER
FILES_SUBST+= MEMCACHED_USER=${MEMCACHED_USER}
post-install:
${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
${INSTALL_SCRIPT} ${WRKSRC}/scripts/memcached-tool ${DESTDIR}${PREFIX}/bin
.include "../../devel/libevent/buildlink3.mk"
BUILDLINK_API_DEPENDS.libevent+= libevent>=1.0
.include "../../mk/bsd.pkg.mk"