Thu Apr 27 00:57:03 2017 UTC ()
GC inet6 option, had no effect since irssi 1.0.0 when it was removed
along with the macros disabling ipv6 code.


(maya)
diff -r1.16 -r1.17 pkgsrc/chat/irssi/options.mk

cvs diff -r1.16 -r1.17 pkgsrc/chat/irssi/options.mk (expand / switch to unified diff)

--- pkgsrc/chat/irssi/options.mk 2017/04/15 06:32:33 1.16
+++ pkgsrc/chat/irssi/options.mk 2017/04/27 00:57:03 1.17
@@ -1,35 +1,29 @@ @@ -1,35 +1,29 @@
1# $NetBSD: options.mk,v 1.16 2017/04/15 06:32:33 maya Exp $ 1# $NetBSD: options.mk,v 1.17 2017/04/27 00:57:03 maya Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.irssi 3PKG_OPTIONS_VAR= PKG_OPTIONS.irssi
4PKG_SUPPORTED_OPTIONS= inet6 ssl perl 4PKG_SUPPORTED_OPTIONS= ssl perl
5PKG_SUGGESTED_OPTIONS= inet6 ssl perl 5PKG_SUGGESTED_OPTIONS= ssl perl
6 6
7.include "../../mk/bsd.options.mk" 7.include "../../mk/bsd.options.mk"
8 8
9.if !empty(PKG_OPTIONS:Mperl) 9.if !empty(PKG_OPTIONS:Mperl)
10USE_TOOLS+= perl:run 10USE_TOOLS+= perl:run
11PERL5_PACKLIST= auto/Irssi/.packlist 11PERL5_PACKLIST= auto/Irssi/.packlist
12PERL5_PACKLIST+= auto/Irssi/Irc/.packlist 12PERL5_PACKLIST+= auto/Irssi/Irc/.packlist
13PERL5_PACKLIST+= auto/Irssi/UI/.packlist 13PERL5_PACKLIST+= auto/Irssi/UI/.packlist
14PERL5_PACKLIST+= auto/Irssi/TextUI/.packlist 14PERL5_PACKLIST+= auto/Irssi/TextUI/.packlist
15.include "../../lang/perl5/packlist.mk" 15.include "../../lang/perl5/packlist.mk"
16.include "../../lang/perl5/buildlink3.mk" 16.include "../../lang/perl5/buildlink3.mk"
17# actually we don't need --with-perl here, irssi is compiled with it by default 17# actually we don't need --with-perl here, irssi is compiled with it by default
18# but who knows what may happen in future versions 18# but who knows what may happen in future versions
19CONFIGURE_ARGS+= --with-perl 19CONFIGURE_ARGS+= --with-perl
20CONFIGURE_ARGS+= --with-perl-lib=vendor 20CONFIGURE_ARGS+= --with-perl-lib=vendor
21.else 21.else
22CONFIGURE_ARGS+= --with-perl=no 22CONFIGURE_ARGS+= --with-perl=no
23.endif 23.endif
24 24
25.if !empty(PKG_OPTIONS:Minet6) 
26CONFIGURE_ARGS+= --enable-ipv6 
27.else 
28CONFIGURE_ARGS+= --disable-ipv6 
29.endif 
30 
31.if !empty(PKG_OPTIONS:Mssl) 25.if !empty(PKG_OPTIONS:Mssl)
32.include "../../security/openssl/buildlink3.mk" 26.include "../../security/openssl/buildlink3.mk"
33.else 27.else
34CONFIGURE_ARGS+= --disable-ssl 28CONFIGURE_ARGS+= --disable-ssl
35.endif 29.endif