764618cd60
- Set window binds for channel items as sticky when re-creating window binds as part of /layout save. This addresses the problem of previously saved channel window items forgetting their windows upon reconnection, which resulted in them being opened in new windows. - Ensure that expando_cumode_space() doesn't free unallocated memory when no prefix exists by conditionally allocating and marking to-be-freed the cumode string inside of expando_cumode().
59 lines
1.2 KiB
Makefile
59 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.51 2011/12/01 17:51:10 sthen Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= modular IRC client with many features (ipv6,socks,proxy)
|
|
|
|
DISTNAME= irssi-0.8.15
|
|
REVISION= 2
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://www.irssi.org/
|
|
|
|
MAINTAINER= Wiktor Izdebski <vicviq@gmail.com>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}files/
|
|
|
|
WANTLIB= c crypto m ncurses perl ssl util pcre glib-2.0 gmodule-2.0
|
|
|
|
MODULES= devel/gettext
|
|
|
|
LIB_DEPENDS= devel/glib2
|
|
|
|
USE_LIBTOOL= Yes
|
|
LIBTOOL_FLAGS+= --tag=disable-static
|
|
CONFIGURE_STYLE=gnu
|
|
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}
|
|
CONFIGURE_ARGS+=--with-pic \
|
|
--with-proxy \
|
|
--with-perl=yes \
|
|
--with-perl-lib=${PREFIX}/libdata/perl5/site_perl
|
|
|
|
FLAVORS= socks
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Msocks}
|
|
CONFIGURE_ARGS+= --with-socks
|
|
BUILD_DEPENDS+= security/dante
|
|
.endif
|
|
|
|
MAKE_FLAGS= scriptdir="${SYSCONFDIR}/irssi/scripts" \
|
|
themedir="${SYSCONFDIR}/irssi/themes"
|
|
FAKE_FLAGS= confdir="${PREFIX}/share/examples/irssi" \
|
|
scriptdir="${PREFIX}/share/examples/irssi/scripts" \
|
|
themedir="${PREFIX}/share/examples/irssi/themes"
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/docs/irssi.1
|
|
|
|
post-install:
|
|
@rm -rf ${PREFIX}/include
|
|
|
|
.include <bsd.port.mk>
|