0c612c4aa3
Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.2.2:/Changelog PR: 207547 Submitted by: riggs, ebirth@b0ss.net (libressl fix) Exp-run by: antoine (3 tries)
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
# Created by: Roger Hardiman <roger@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= openh323
|
|
PORTVERSION= 1.19.0.1
|
|
PORTREVISION= 10
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF
|
|
DISTNAME= ${PORTNAME}-v${PORTVERSION:S/./_/g}-src
|
|
EXTRACT_SUFX= -tar.gz
|
|
DIST_SUBDIR= openh323
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= H323 Video Conferencing library
|
|
|
|
BROKEN_powerpc64= Does not build
|
|
|
|
LIB_DEPENDS= libpt_r.so:devel/pwlib
|
|
|
|
CONFLICTS= h323plus-1.*
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}_v${PORTVERSION:S/./_/g}
|
|
|
|
USES= bison gmake
|
|
USE_GCC= yes
|
|
USE_AUTOTOOLS= autoconf
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
ALL_TARGET= optshared
|
|
CONFIGURE_ENV+= BUILDTIME="YES"
|
|
CPPFLAGS+= -I${LOCALBASE}/include -I${WRKSRC}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
MAKE_ENV= BUILDTIME="YES"
|
|
|
|
OPTIONS_DEFINE= FFMPEG SPEEX
|
|
FFMPEG_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg
|
|
FFMPEG_CONFIGURE_ON= --enable-rfc2190avcodec=${LOCALBASE}/include/ffmpeg
|
|
|
|
SPEEX_LIB_DEPENDS= libspeex.so:audio/speex
|
|
SPEEX_CONFIGURE_ON= --enable-localspeex=no
|
|
SPEEX_CONFIGURE_OFF= --enable-localspeex=yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if (${ARCH} == "amd64") || (${ARCH} == "ia64") || (${ARCH} == "powerpc") || (${ARCH} == "sparc64")
|
|
CFLAGS+= -fPIC
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
|
|
${WRKSRC}/configure.ac
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/pwlib/codecs/audio/*.so
|
|
|
|
.include <bsd.port.post.mk>
|