b50a4b0708
- Mk/bsd.database.mk rewrite, new default to db5. - db6 is eligible by default only if installed on the system. - Bump PORTREVISION of all ports that directly depend on BerkeleyDB or where USE_BDB is found in the port's directory - Patch a few ports such that they will pick up or work with newer versions. - Add UPDATING entry - Drive-by format fix for pks - Drop BerkeleyDB option from mail/popular for now, requires more work. - Exp-run logs linked from the PR below. - Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes for new Berkeley DB, but are untested. NOTE: please read UPDATING and the Wiki page before proceeding! Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup PR: 192690 Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports)
37 lines
832 B
Makefile
37 lines
832 B
Makefile
# Created by: Mikhail T. <m.tsatsenko@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= memcacheq
|
|
PORTVERSION= 0.2.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \
|
|
${MASTER_SITE_GENTOO}
|
|
MASTER_SITE_SUBDIR= distfiles
|
|
|
|
MAINTAINER= m.tsatsenko@gmail.com
|
|
COMMENT= Simple queue service over Memcache
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2
|
|
|
|
USE_CSTD= gnu89
|
|
CFLAGS+= -I"${BDB_INCLUDE_DIR}"
|
|
LDFLAGS+= -l"${BDB_LIB_NAME}" -L"${LOCALBASE}/lib"
|
|
|
|
USE_RC_SUBR= memcacheq
|
|
USE_BDB= 5
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS= --with-libevent=${LOCALBASE} --with-bdb=${LOCALBASE} --enable-threads
|
|
|
|
PORTDOCS= README
|
|
|
|
MCQDIR?= /var/db/memcacheq
|
|
PLIST_SUB= MCQDIR=${MCQDIR}
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|