forked from Lainports/freebsd-ports
PKG_CHECK_MODULES is defined in pkgconf, so add "USES= pkgconfig" PR: 239254 Submitted by: Sergey Akhmatov <sergey@akhmatov.ru>
34 lines
859 B
Makefile
34 lines
859 B
Makefile
# Created by: skreuzer@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zookeeper
|
|
PORTVERSION= 3.5.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= APACHE/${PORTNAME}/current
|
|
PKGNAMEPREFIX= lib
|
|
DISTNAME= apache-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= C client interface to Zookeeper server
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
ONLY_FOR_ARCHS_REASON= uses x86 assembly
|
|
|
|
LIB_DEPENDS= libcppunit.so:devel/cppunit
|
|
|
|
USES= autoreconf libtool pkgconfig
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/zookeeper-client/zookeeper-client-c
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/* ${STAGEDIR}${PREFIX}/lib/*.so
|
|
${LN} -sf libzookeeper_mt.so.2 ${STAGEDIR}${PREFIX}/lib/libzookeeper_mt.so
|
|
${LN} -sf libzookeeper_st.so.2 ${STAGEDIR}${PREFIX}/lib/libzookeeper_st.so
|
|
|
|
.include <bsd.port.mk>
|