595addc9c5
reading the 20040314 entry in /usr/ports/CHANGES regarding importing of ports into the tree that require the use of GNU autotools. Thanks awfully
36 lines
897 B
Makefile
36 lines
897 B
Makefile
# New ports collection makefile for: memcached
|
|
# Date created: July 21, 2003
|
|
# Whom: Sean Chittenden <seanc@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= memcached
|
|
PORTVERSION= 1.1.10
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.danga.com/memcached/dist/
|
|
|
|
MAINTAINER= seanc@FreeBSD.org
|
|
COMMENT= High-performance distributed memory object cache system
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libevent.a:${PORTSDIR}/devel/libevent
|
|
|
|
USE_AUTOMAKE_VER= 14
|
|
WANT_AUTOCONF_VER= 253
|
|
GNU_CONFIGURE= YES
|
|
|
|
CONFIGURE_ARGS+= --with-libevent=${LOCALBASE} --program-prefix=
|
|
|
|
MAN1= memcached.1
|
|
|
|
DOCS_LIST= memory_management.txt protocol.txt
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${MAN1:S!^!${WRKSRC}/doc/!} ${MAN1PREFIX}/man/man1
|
|
.ifndef(NOPORTDOCS)
|
|
@${ECHO_MSG} "===> Installing documentation for ${PKGNAME}"
|
|
${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${DOCS_LIST:S!^!${WRKSRC}/doc/!} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|