forked from Lainports/freebsd-ports
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
44 lines
1 KiB
Makefile
44 lines
1 KiB
Makefile
# Created by: Alex Deiter <Alex.Deiter@Gmail.COM>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= appkonference
|
|
PORTVERSION= 2.7
|
|
PORTREVISION= 3
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= High-performance Asterisk voice/video conferencing plugin
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
ONLY_FOR_ARCHS= amd64 armv6 armv7 i386 powerpc
|
|
ONLY_FOR_ARCHS_REASON= not yet ported to this architecture
|
|
|
|
BUILD_DEPENDS= asterisk:net/asterisk13
|
|
RUN_DEPENDS= asterisk:net/asterisk13
|
|
|
|
USES= compiler:features gmake
|
|
USE_CSTD= gnu89
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}/konference
|
|
MAKE_ARGS= ASTERISK_SRC_VERSION=1300
|
|
|
|
PLIST_FILES= lib/asterisk/modules/app_konference.so
|
|
|
|
OPTIONS_DEFINE= OPTIMIZED_CFLAGS
|
|
OPTIONS_DEFAULT= OPTIMIZED_CFLAGS
|
|
|
|
OPTIMIZED_CFLAGS_CFLAGS= -O3 -ffast-math
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} && ${CHOSEN_COMPILER_TYPE} == gcc
|
|
CFLAGS+= -funroll-all-loops -fsingle-precision-constant
|
|
.endif
|
|
|
|
.if ${CHOSEN_COMPILER_TYPE} == clang
|
|
CFLAGS+= -fblocks
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|