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
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ctrlproxy
|
|
PORTVERSION= 3.0.8
|
|
PORTREVISION= 9
|
|
CATEGORIES= irc
|
|
MASTER_SITES= http://launchpadlibrarian.net/50016234/ \
|
|
LOCAL/ashish/
|
|
|
|
MAINTAINER= ashish@FreeBSD.org
|
|
COMMENT= Flexible IRC proxy
|
|
|
|
LIB_DEPENDS= libgnutls.so:security/gnutls
|
|
|
|
USES= compiler:c11 gmake gnome localbase:ldflags pathfix pkgconfig
|
|
USE_GNOME= glib20
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
PATHFIX_MAKEFILEIN= Makefile
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ctrlproxy
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ctrlproxy-admin
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/linestack-cmd
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/ctrlproxyd
|
|
${INSTALL_MAN} ${WRKSRC}/doc/ctrlproxy.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/ctrlproxy_config.5 ${STAGEDIR}${MANPREFIX}/man/man5
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/help.txt ${STAGEDIR}${DATADIR}/help.txt
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for file in AUTHORS HACKING NEWS README
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/doc/user-guide.html ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|