ea8c8ec7da
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
41 lines
834 B
Makefile
41 lines
834 B
Makefile
# Created by: Mark Felder <feld@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= titus
|
|
PORTVERSION= 0.3
|
|
PORTREVISION= 5
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= feld@FreeBSD.org
|
|
COMMENT= TLS/SSL proxy server
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= compiler:c++11-lang ssl
|
|
USE_RC_SUBR= titus
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= AGWA
|
|
|
|
USERS= titus titus-keys
|
|
GROUPS= nogroup
|
|
|
|
MAKE_ENV+= MANDIR=${MANPREFIX}/man
|
|
CFLAGS+= -I${OPENSSLINC}
|
|
LDFLAGS+= -L${OPENSSLLIB}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${SSL_DEFAULT} == base
|
|
BROKEN_FreeBSD_12= member access into incomplete type 'dh_st'
|
|
BROKEN_FreeBSD_13= member access into incomplete type 'dh_st'
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's|/var/lib/titus/empty|/var/empty|' ${WRKSRC}/titus.conf.example
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/titus.conf.example ${STAGEDIR}${PREFIX}/etc/titus.conf.sample
|
|
|
|
.include <bsd.port.post.mk>
|