From 421fdbd458a94c9af983273f7ee42d99120d59d9 Mon Sep 17 00:00:00 2001 From: bapt Date: Mon, 17 Dec 2012 02:15:13 +0000 Subject: Convert miwi's ports to new Options framework While here fix some consistency in PEAR options name bumped revision of net/icpld and net/ipsumdump because IPV6 is now on Approved by: miwi (maintainer) --- irc/irssi-devel/Makefile | 44 +++++++++++++++++++------------------------- 1 file changed, 19 insertions(+), 25 deletions(-) (limited to 'irc/irssi-devel') diff --git a/irc/irssi-devel/Makefile b/irc/irssi-devel/Makefile index 1345e6313707..5be70a13e947 100644 --- a/irc/irssi-devel/Makefile +++ b/irc/irssi-devel/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: irssi-devel -# Date created: 03 Mar 2005 -# Whom: Vsevolod Stakhov -# +# Created by: Vsevolod Stakhov # $FreeBSD$ -# PORTNAME= irssi PORTVERSION= 20120624 @@ -26,28 +22,24 @@ MAKE_JOBS_SAFE= yes MAN1= irssi.1 -OPTIONS= PERL "Enable Perl support" on \ - PROXY "Enable proxy support" off \ - SOCKS "Enable socks proxy support" off \ - IPV6 "Enable IPv6" on \ - BOT "Enable bot" off +OPTIONS_DEFINE= PERL PROXY SOCKS IPV6 BOT SSL +SOCKS_DESC= Socks proxy support +BOT_DESC= Bot support +OPTIONS_DEFAULT= PERL IPV6 SSL WRKSRC= ${WRKDIR}/${PORTNAME}-0.8.15-svn -# USE_OPENSSL must be defined before bsd.port.pre.mk so use old schema -# for WITH_SSL option +.include -.if defined(WITHOUT_SSL) -CONFIGURE_ARGS+= --disable-ssl -.else +# Process options. + +.if ${PORT_OPTIONS:MSSL} USE_OPENSSL= yes +.else +CONFIGURE_ARGS+= --disable-ssl .endif -.include - -# Process options. - -.if !defined(WITHOUT_PERL) +.if ${PORT_OPTIONS:MPERL} USE_PERL5= yes CONFIGURE_ARGS+= --with-perl-lib=site PLIST_SUB+= WITH_PERL="" @@ -56,23 +48,25 @@ CONFIGURE_ARGS+= --without-perl PLIST_SUB+= WITH_PERL="@comment " .endif -.if defined(WITH_PROXY) +.if ${PORT_OPTIONS:MPROXY} CONFIGURE_ARGS+= --with-proxy PLIST_SUB+= WITH_PROXY="" .else PLIST_SUB+= WITH_PROXY="@comment " .endif -.if defined(WITH_SOCKS) +.if ${PORT_OPTIONS:MSOCKS} CONFIGURE_ARGS+= --with-socks .endif -.if !defined(WITHOUT_IPV6) +.if ${PORT_OPTIONS:MIPV6} CONFIGURE_ARGS+= --enable-ipv6 CATEGORIES+= ipv6 +.else +CONFIGURE_ARGS+= --disable-ipv6 .endif -.if defined(WITH_BOT) +.if ${PORT_OPTIONS:MBOT} CONFIGURE_ARGS+= --with-bot PLIST_SUB+= WITH_BOT="" .else @@ -93,4 +87,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/irssi.conf.sample ${PREFIX}/etc/irssi.conf ; \ fi -.include +.include -- cgit