mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
4773f23658
Approved by: portmgr (blanket)
71 lines
1.8 KiB
Makefile
71 lines
1.8 KiB
Makefile
PORTNAME= ScrollZ
|
|
PORTVERSION= 2.3.1
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= ${PORTNAME}-
|
|
CATEGORIES= irc
|
|
|
|
# Fix build with clang
|
|
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
|
|
PATCHFILES= c0dfa140341cf9a848a6e5f926392623d03d2c28.patch:-p1
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Enhanced ircII client that supports scripts, colors, and more
|
|
WWW= https://www.scrollz.info/
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
USES= gmake iconv ncurses
|
|
USE_GITHUB= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
|
|
|
|
DATADIR= ${PREFIX}/share/${PORTNAME:tl}
|
|
|
|
PLIST_SUB= SCROLLZ_VER="${PORTVERSION}"
|
|
|
|
OPTIONS_DEFINE= IPV6 REGEX UTF8
|
|
OPTIONS_DEFAULT= OPENSSL REGEX UTF8
|
|
OPTIONS_RADIO= SSL
|
|
OPTIONS_RADIO_SSL= GNUTLS OPENSSL
|
|
|
|
GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls
|
|
GNUTLS_USES= pkgconfig
|
|
GNUTLS_CONFIGURE_ON= --with-ssl
|
|
IPV6_CONFIGURE_ENABLE= ipv6
|
|
OPENSSL_USES= ssl
|
|
OPENSSL_CONFIGURE_ON= --with-openssl=${OPENSSLBASE}
|
|
REGEX_CONFIGURE_ENABLE= regexp
|
|
UTF8_CONFIGURE_ENABLE= utf8
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400079 || ( ${OSVERSION} >= 1302505 && ${OSVERSION} < 1400000 ))
|
|
CFLAGS+= -Wno-error=int-conversion
|
|
.if ${OSVERSION} >= 1400091 || ( ${OSVERSION} >= 1302507 && ${OSVERSION} < 1400000 )
|
|
CFLAGS+= -Wno-error=incompatible-function-pointer-types
|
|
.endif
|
|
.endif
|
|
|
|
.if !empty(ICONV_LIB)
|
|
CONFIGURE_ENV+=ac_cv_func_iconv_open=yes
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's/-liconv/${ICONV_LIB}/' ${WRKSRC}/configure
|
|
|
|
pre-build:
|
|
.if !defined(BATCH)
|
|
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${CC} ${CFLAGS} -o SZdist \
|
|
SZdist.c)
|
|
@(cd ${WRKSRC} && ./SZdist)
|
|
.endif
|
|
|
|
post-install:
|
|
.for i in scrollz-${PORTVERSION} wservz
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${i}
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|