mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
8b4093cba5
The only reason to use post-stage is because the port needs to do "things" at a later time, like some plist manipulation. While there, fold post-install in do-install targets when they are defined. PR: 214780 Submitted by: mat Exp-run by: antoine Sponsored by: Absolight
29 lines
672 B
Makefile
29 lines
672 B
Makefile
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bctoolbox
|
|
PORTVERSION= 0.2.0
|
|
CATEGORIES= net
|
|
MASTER_SITES= SAVANNAH/linphone/bctoolbox
|
|
|
|
MAINTAINER= tijl@FreeBSD.org
|
|
COMMENT= Belledonne Communications utility library
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= mbedtls>=2.3.0_2:security/mbedtls
|
|
LIB_DEPENDS= libmbedtls.so.10:security/mbedtls
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-strict
|
|
CPPFLAGS+= -DHAVE_ARC4RANDOM -DHAVE_DTLS_SRTP
|
|
INSTALL_TARGET= install-strip
|
|
USES= libtool pathfix pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
post-install:
|
|
${RM} ${STAGEDIR}${PREFIX}/libdata/pkgconfig/bctoolbox-tester.pc
|
|
|
|
.include <bsd.port.mk>
|