eecd790411
- Update to 0.4.16 - Organise pkg-plist alphabetically audio/rem: - Update to 0.4.7 - Organise pkg-plist alphabetically audio/baresip: - Update to 0.4.19 - Remove CELT option (no longer supported upstream - replaced by OPUS) - Add EXAMPLES option to install new ${WRKSRC}/docs/examples - Update minimum required versions of audio/re and audio/rem [1] Changes this release: https://github.com/alfredh/baresip/blob/v0.4.19/docs/ChangeLog [1] https://github.com/alfredh/baresip/blob/v0.4.19/docs/README#L324 This upate also allows baresip to build successfully once multimedia/ffmpeg is updated to 3.0.x. Note that multimedia/ffmpeg is currently still on the 2.8.x branch, however this patch is backwards compatible with ffmpeg 2.8.x. Reported by: antoine (via exp-run) Reviewed by: mat (mentor) Approved by: crees (maintainer), adamw (mentor) Differential Revision: https://reviews.freebsd.org/D6822
27 lines
673 B
Makefile
27 lines
673 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= re
|
|
PORTVERSION= 0.4.16
|
|
CATEGORIES= audio devel
|
|
MASTER_SITES= http://www.creytiv.com/pub/
|
|
|
|
MAINTAINER= crees@FreeBSD.org
|
|
COMMENT= Library for real-time comms with async IO support
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/docs/COPYING
|
|
|
|
USES= gmake
|
|
USE_LDCONFIG= yes
|
|
USE_OPENSSL= yes
|
|
|
|
PORTDATA= re.mk
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/include/${PORTNAME} ${STAGEDIR}${DATADIR}
|
|
(cd ${WRKSRC}/include && \
|
|
${COPYTREE_SHARE} \*.h ${STAGEDIR}${PREFIX}/include/${PORTNAME})
|
|
${INSTALL_DATA} ${WRKSRC}/mk/${PORTNAME}.mk ${STAGEDIR}${DATADIR}
|
|
${INSTALL_LIB} ${WRKSRC}/lib${PORTNAME}.[sa]* ${STAGEDIR}${PREFIX}/lib
|
|
|
|
.include <bsd.port.mk>
|