pkgsrc/devel/memcached/Makefile
grant 68ded8dc86 update to 1.1.12.
changes since 1.1.11:

2005-04-04
        * patch from Don MacAskill <don@smugmug.com> 'flush_all' doesn't
        seem to work properly.  Basically, if you try to add a key which
        is present, but expired, the store fails but the old key is no
        longer expired.

2005-01-14
        * Date: Thu, 18 Nov 2004 15:25:59 -0600
          From: David Phillips <electrum@gmail.com>
        Here is a patch to configure.ac and Makefile.am to put the man page in
        the correct location.  Trying to install the man page from a
        subdirectory results in the subdirectory being used in the install
        path (it tries to install to doc/memcached.1).  This is the correct
        thing to  do:

        - create a Makefile.am in the doc directory that installs the man page
          with man_MANS
        - modify Makefile.am in the base directory to reference the doc
          directory using SUBDIRS
        - modify the AC_CONFIG_FILES macro in configure.ac to output the
          Makefile in doc

2005-01-14
        * pidfile saving support from Lisa Seelye <lisa@gentoo.org>, sent
          Jan 13, 2005

2005-01-14
        * don't delete libevent events that haven't been added (the deltimer)
          patch from Ted Schundler <tschundler@gmail.com>

2004-12-10
        * document -M and -r in manpage (Doug Porter <dsp@dsp.name>)

2004-07-22
        * fix buffer overflow in items.c with 250 byte keys along with
          other info on the same line going into a 256 byte char[].
          thanks to Andrei Nigmatulin <anight@monamour.ru>

2004-06-15
        * immediate deletes weren't being unlinked a few seconds,
          preventing "add" commands to the same key in that time period.
          thanks to Michael Alan Dorman <mdorman@debian.org> for the
          bug report and demo script.
2006-02-23 03:50:23 +00:00

24 lines
712 B
Makefile

# $NetBSD: Makefile,v 1.5 2006/02/23 03:50:23 grant Exp $
#
DISTNAME= memcached-1.1.12
CATEGORIES= devel
MASTER_SITES= http://www.danga.com/memcached/dist/
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://www.danga.com/memcached/
COMMENT= High-performance distributed memory object caching system
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-libevent=${BUILDLINK_PREFIX.libevent}
INSTALLATION_DIRS= bin share/doc/${PKGBASE} man/man1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/memcached ${PREFIX}/sbin
${INSTALL_DATA} ${WRKSRC}/doc/memcached.1 ${PREFIX}/man/man1
${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${PREFIX}/share/doc/${PKGBASE}
.include "../../devel/libevent/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"