4035a4e70a
Changes: - Fix a use after free issue when receiving IRCv3 CAP information from the server (GL#34) - Fix a crash during startup when windows weren’t fully initialised yet (#1114, bdo#935813) Reassurance: - Most servers do not send duplicate CAP.
42 lines
1 KiB
Makefile
42 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.94 2019/08/31 10:04:26 nia Exp $
|
|
|
|
DISTNAME= ${IRSSI_DISTNAME}
|
|
CATEGORIES= chat
|
|
EXTRACT_SUFX= ${IRSSI_EXTRACT_SUFX}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.irssi.org/
|
|
COMMENT= Secure and modular IRC client with text mode user interface
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "Makefile.common"
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
TEST_TARGET= check
|
|
|
|
CONFIGURE_ARGS+= --with-proxy \
|
|
--sysconfdir=${PKG_SYSCONFDIR}
|
|
|
|
EGDIR= ${PREFIX}/share/examples/irssi
|
|
CONF_FILES= ${EGDIR}/irssi.conf ${PKG_SYSCONFDIR}/irssi.conf
|
|
|
|
OPSYSVARS+= MODULEEXT
|
|
MODULEEXT.Darwin= bundle
|
|
MODULEEXT.*= so
|
|
PLIST_SUBST+= MODULEEXT=${MODULEEXT}
|
|
|
|
INSTALL_MAKE_FLAGS+= sysconfdir=${EGDIR}
|
|
|
|
.include "options.mk"
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/irssi-config ${DESTDIR}${IRSSI_CONFIG}
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/curses.buildlink3.mk"
|
|
.include "../../mk/terminfo.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|