1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00
freebsd-ports/databases/libmemcached/Makefile
Muhammad Moinur Rahman bbab7f59e9 */*: Sunset 12.4-RELEASE/12-STABLE from ports tree
- Remove all references to defunct ARCH arm
- Remove all references to defunct ARCH sparc64
- Remove x11-drivers/xf86-video-sunffb which requires defunct sparc64
  ARCH
- Remove sysutils/afbinit requires defunct sparc64 ARCH
- Remove all references to bktr driver
- Remove all references to defunct FreeBSD_12
- Remove all references to OSVERSION/OSREL corresponding to 12
- Remove conditionals in Mk/Uses/cabal.mk
- Remove sparc reference from Mk/Uses/qt-dist.mk
- Remove BROKEN_sparc64/NOT_FOR_ARCH=sparc64
- Remove BROKEN_FreeBSD_12* from:
- Remove OpenSSL patches from:
- Remove conditional flags for OSVERSION >= 1300000 to fixed flags.
  Also move conditional flags for non sparc64/arm ARCH to fixed flags.

Reviewed by:	brooks, jbeich, rene, salvadore
Differential Revision: https://reviews.freebsd.org/D42068
2023-12-31 01:37:05 +01:00

49 lines
1.4 KiB
Makefile

PORTNAME= libmemcached
PORTVERSION= 1.1.4
PORTREVISION= 1
CATEGORIES= databases
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= C/C++ client library and tools for the memcached server
WWW= https://awesomized.github.io/libmemcached/ \
https://github.com/awesomized/libmemcached
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libevent.so:devel/libevent
TEST_DEPENDS= memcached:databases/memcached \
onetbb>=0:devel/onetbb
USES= bison compiler:c++11-lang pathfix pkgconfig ssl
CMAKE_OFF= BUILD_DOCSONLY BUILD_DOCS_MANGZ BUILD_DOCS_HTML BUILD_TESTING ENABLE_DTRACE
CMAKE_ON= BUILD_SHARED_LIBS ENABLE_MEMASLAP ENABLE_OPENSSL_CRYPTO
CMAKE_TESTING_ON= BUILD_TESTING
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= awesomized
OPTIONS_DEFINE= DOCS MANPAGES SASL
OPTIONS_GROUP= HASH
OPTIONS_GROUP_HASH= FNV64 HSIEH MURMUR
OPTIONS_DEFAULT=FNV64 HSIEH MURMUR SASL
OPTIONS_SUB= yes
FNV64_DESC= Enable fnv64 hashing
HSIEH_DESC= Enable hsieh hashing
MEMASLAP_DESC= Load generation and benchmark tool
MURMUR_DESC= Enable murmur hashing
FNV64_CMAKE_BOOL= ENABLE_HASH_FNV64
HSIEH_CMAKE_BOOL= ENABLE_HASH_HSIEH
MANPAGES_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=0,1:textproc/py-sphinx@${PY_FLAVOR}
MANPAGES_CMAKE_BOOL= BUILD_DOCS BUILD_DOCS_MAN
MANPAGES_USES= cmake:noninja,testing python:env
MANPAGES_USES_OFF= cmake:testing
MURMUR_CMAKE_BOOL= ENABLE_HASH_MURMUR
SASL_CMAKE_BOOL= ENABLE_SASL
SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2
.include <bsd.port.mk>