f877198bb9
- Recode support - Isupport (005 numeric) - Passive DCC support. - Many memleak fixes. - Network specific ignoring. - Updated internal error handling. - Complete 64bit support. - Revised default aliases. - Updated paste detection and settings. - Tons of bugfixes. - Other changes The 'pre-install' hack from the pr is no longer needed after a fix from jlam. Don't delete the patch-ae, which was removed in the pr. Recode support won't work at the moment on NetBSD. Bump the version for irssi-icb, due too the upgrade of irssi.
37 lines
927 B
Makefile
37 lines
927 B
Makefile
# $NetBSD: Makefile,v 1.43 2006/01/17 21:45:52 veego Exp $
|
|
|
|
DISTNAME= ${IRSSI_DISTNAME}
|
|
CATEGORIES= chat
|
|
MASTER_SITES= http://www.irssi.org/files/
|
|
EXTRACT_SUFX= ${IRSSI_EXTRACT_SUFX}
|
|
|
|
MAINTAINER= mutru@iki.fi
|
|
HOMEPAGE= http://www.irssi.org/
|
|
COMMENT= Secure and modular IRC client with text mode user interface
|
|
|
|
.include "Makefile.common"
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
|
|
CONFIGURE_ARGS+= --with-terminfo \
|
|
--with-proxy \
|
|
--without-ncurses \
|
|
--sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
|
|
# Avoid an ICE in gcc2 on sparc64
|
|
CONFIGURE_ENV+= F77=${FALSE:Q}
|
|
|
|
EGDIR= ${PREFIX}/share/examples/irssi
|
|
CONF_FILES= ${EGDIR}/irssi.conf ${PKG_SYSCONFDIR}/irssi.conf
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/config.h ${IRSSI_CONFIG_H}
|
|
${INSTALL_DATA} ${WRKSRC}/irssi-config ${IRSSI_CONFIG}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|