blob: c6e4f7a09a0cdb8e38526c9e791b4dd6a806d994 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# New ports collection makefile for: libmemcache
# Date created: November 29, 2004
# Whom: Sean Chittenden <seanc@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= libmemcache
PORTVERSION= 1.4.0.rc2
CATEGORIES= databases
MASTER_SITES= http://people.FreeBSD.org/~seanc/libmemcache/
MAINTAINER= seanc@FreeBSD.org
COMMENT= The C library for accessing a memcache cluster
USE_BZIP2= yes
INSTALLS_SHLIB= yes
GNU_CONFIGURE= yes
OPTIONS= DEBUG "Build with debugging turned on" off
.include <bsd.port.pre.mk>
.if defined(WITH_DEBUG)
CONFIGURE_ARGS+=--enable-debug
.endif
.include <bsd.port.post.mk>
|