diff options
author | bapt <bapt@FreeBSD.org> | 2013-04-29 05:02:39 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-04-29 05:02:39 +0800 |
commit | 63cff4fb52ecbe8ce9260e04e0049980d8cb41d5 (patch) | |
tree | 933fd11da647dda8c169bc24693094174bdc0355 /security/metasploit | |
parent | 65f6091f0d07908b50e6042a48cdadec0073a2ac (diff) | |
download | freebsd-ports-graphics-63cff4fb52ecbe8ce9260e04e0049980d8cb41d5.tar.gz freebsd-ports-graphics-63cff4fb52ecbe8ce9260e04e0049980d8cb41d5.tar.zst freebsd-ports-graphics-63cff4fb52ecbe8ce9260e04e0049980d8cb41d5.zip |
Convert security to new options framework
Diffstat (limited to 'security/metasploit')
-rw-r--r-- | security/metasploit/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/metasploit/Makefile b/security/metasploit/Makefile index 0c6cfa6a7b6..ba8e0393f69 100644 --- a/security/metasploit/Makefile +++ b/security/metasploit/Makefile @@ -17,7 +17,7 @@ WRKSRC= ${WRKDIR}/msf3 SCRIPTS= msfcli msfconsole msfd msfelfscan msfencode msfmachscan \ msfopcode msfpayload msfpescan msfweb -OPTIONS= SVN "Use subversion" off +OPTIONS_DEFINE= SVN NO_BUILD= yes USE_RUBY= yes @@ -37,7 +37,7 @@ RUN_DEPENDS+= rubygem-actionpack>0:${PORTSDIR}/www/rubygem-actionpack \ rubygem-activesupport>0:${PORTSDIR}/devel/rubygem-activesupport .endif -.if defined(WITH_SVN) +.if ${PORT_OPTIONS:MSVN} RUN_DEPENDS+= svn:${PORTSDIR}/devel/subversion .endif |