dc05c5894e
Features: * Make /reset an alias for /set -default. * Make /unset an alias for /set -clear. * Allow ctrl+home / ctrl+end to go to the beginning / end of scrollback. * Accept WHOX reply (354 numeric) as a /who reply. * Show numerics directed at channels in the channel window. * The time duration parser is more strict now. Bugfixes: * Fix out of bounds access in event_wallops(). * Build fix for OS X. * Fix the autolog_ignore_targets logic to work correctly with manually opened log files (see bug #673).
41 lines
1,010 B
Makefile
41 lines
1,010 B
Makefile
# $NetBSD: Makefile,v 1.53 2009/07/30 21:58:15 adrianp Exp $
|
|
|
|
DISTNAME= ${IRSSI_DISTNAME}
|
|
CATEGORIES= chat
|
|
MASTER_SITES= http://www.irssi.org/files/
|
|
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
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "Makefile.common"
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
|
|
CONFIGURE_ARGS+= --with-terminfo \
|
|
--with-proxy \
|
|
--without-ncurses \
|
|
--sysconfdir=${PKG_SYSCONFDIR}
|
|
|
|
# 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
|
|
|
|
INSTALL_MAKE_FLAGS+= sysconfdir=${EGDIR}
|
|
|
|
.include "options.mk"
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/irssi-config ${DESTDIR}${IRSSI_CONFIG}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|