pkgsrc/chat/irssi/options.mk
jlam 7fbb8d9527 Bump the PKGREVISIONs of all (638) packages that hardcode the locations
of Perl files to deal with the perl-5.8.7 update that moved all
pkgsrc-installed Perl files into the "vendor" directories.
2005-08-06 06:19:03 +00:00

31 lines
927 B
Makefile

# $NetBSD: options.mk,v 1.3 2005/08/06 06:19:04 jlam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.irssi
PKG_SUPPORTED_OPTIONS= inet6 irssi-perl ssl
PKG_OPTIONS_LEGACY_VARS+= IRSSI_USE_PERL:irssi-perl IRSSI_USE_SSL:ssl
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mirssi-perl)
PERL5_PACKLIST= auto/Irssi/.packlist
PERL5_PACKLIST+= auto/Irssi/Irc/.packlist
PERL5_PACKLIST+= auto/Irssi/UI/.packlist
PERL5_PACKLIST+= auto/Irssi/TextUI/.packlist
.include "../../lang/perl5/buildlink3.mk"
# actually we don't need --with-perl here, irssi is compiled with it by default
# but who knows what may happen in future versions
CONFIGURE_ARGS+= --with-perl
CONFIGURE_ARGS+= --with-perl-lib=vendor
.else
CONFIGURE_ARGS+= --with-perl=no
.endif
.if !empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --enable-ipv6
.endif
.if !empty(PKG_OPTIONS:Mssl)
.include "../../security/openssl/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-ssl
.endif