e182b729a8
- major crash fixes: "If you have stability issues with any previous release, please upgrade to this one." - minor bugfixes, updates - ipv6 support - "noreply" mode for many commands - out of memory errors more clear - added eviction/OOM tracking per slab class
27 lines
577 B
Makefile
27 lines
577 B
Makefile
# $OpenBSD: Makefile,v 1.7 2008/11/06 13:06:56 sthen Exp $
|
|
|
|
COMMENT= distributed memory object caching system
|
|
|
|
DISTNAME= memcached-1.2.6
|
|
CATEGORIES= misc
|
|
|
|
HOMEPAGE= http://www.danga.com/memcached/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c event
|
|
|
|
MASTER_SITES= ${HOMEPAGE}/dist/
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --with-libevent=/usr
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/memcached
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.txt ${PREFIX}/share/doc/memcached
|
|
|
|
.include <bsd.port.mk>
|