Date: Mon, 11 Mar 2013 04:04:11 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r313854 - head/security/ophcrack Message-ID: <201303110404.r2B44BQM075622@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Mon Mar 11 04:04:11 2013 New Revision: 313854 URL: http://svnweb.freebsd.org/changeset/ports/313854 Log: - Update to version 3.4.1, which adds the support of the Vista special XL tables and fixes some bugs with Vista eight XL tables on Windows - Convert to OptionsNG, retire DEBUG option (mostly useful for developers) - Augment LICENSE knob and trim Makefile header while I'm here Modified: head/security/ophcrack/Makefile head/security/ophcrack/distinfo Modified: head/security/ophcrack/Makefile ============================================================================== --- head/security/ophcrack/Makefile Mon Mar 11 01:53:49 2013 (r313853) +++ head/security/ophcrack/Makefile Mon Mar 11 04:04:11 2013 (r313854) @@ -1,20 +1,16 @@ -# New ports collection makefile for: ophcrack -# Date created: 14 Mar 2008 -# Whom: Alexey Dokuchaev <danfe@FreeBSD.org> -# +# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> # $FreeBSD$ -# PORTNAME= ophcrack -PORTVERSION= 3.4.0 -PORTREVISION= 1 +PORTVERSION= 3.4.1 CATEGORIES= security MASTER_SITES= SF MAINTAINER= danfe@FreeBSD.org COMMENT= Windows password cracker based on rainbow tables -LICENSE= GPLv2 +LICENSE= AL2 GPLv2 +LICENSE_COMB= multi USE_BZIP2= yes GNU_CONFIGURE= yes @@ -24,38 +20,34 @@ USE_OPENSSL= yes PLIST_FILES= bin/ophcrack PORTDOCS= * -OPTIONS= GUI "Build GUI frontend (Qt4 based)" on \ - GRAPH "Enable graph rendering with Qwt" on \ - DEBUG "Make debug build" off +OPTIONS_DEFINE= X11 GRAPH DOCS +OPTIONS_DEFAULT= X11 GRAPH + +X11_DESC= Build GUI frontend (Qt4-based) +GRAPH_DESC= Graph rendering support via Qwt .include <bsd.port.options.mk> -.if defined(WITH_GUI) || defined(WITH_GRAPH) +.if ${PORT_OPTIONS:MX11} || ${PORT_OPTIONS:MGRAPH} USE_QT4= moc_build qmake_build rcc_build uic_build corelib gui .else CONFIGURE_ARGS+= --disable-gui .endif -.if defined(WITH_GRAPH) -LIB_DEPENDS= qwt.5:${PORTSDIR}/x11-toolkits/qwt5 +.if ${PORT_OPTIONS:MGRAPH} +LIB_DEPENDS= qwt:${PORTSDIR}/x11-toolkits/qwt5 .else CONFIGURE_ARGS+= --disable-graph .endif -.if defined(WITH_DEBUG) -CONFIGURE_ARGS+= --enable-debug -.endif - post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${WRKSRC}/README ${DOCSDIR} .endif -.include <bsd.port.pre.mk> - .if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" BROKEN= Does not compile on ia64, powerpc, or sparc64 .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> Modified: head/security/ophcrack/distinfo ============================================================================== --- head/security/ophcrack/distinfo Mon Mar 11 01:53:49 2013 (r313853) +++ head/security/ophcrack/distinfo Mon Mar 11 04:04:11 2013 (r313854) @@ -1,2 +1,2 @@ -SHA256 (ophcrack-3.4.0.tar.bz2) = 06cb22d95a8ded79eebb99ac19bd21b27321e85fe0f22f32407d0b925b66d3e3 -SIZE (ophcrack-3.4.0.tar.bz2) = 279806 +SHA256 (ophcrack-3.4.1.tar.bz2) = 108ea6832cae3bd2b03df5b12c375c112dd3ad1f602bdc9acdaa776774000a12 +SIZE (ophcrack-3.4.1.tar.bz2) = 334878
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303110404.r2B44BQM075622>