svn commit: r313854 - head/security/ophcrack
Alexey Dokuchaev
danfe at FreeBSD.org
Mon Mar 11 04:04:12 UTC 2013
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 at FreeBSD.org>
-#
+# Created by: Alexey Dokuchaev <danfe at FreeBSD.org>
# $FreeBSD$
-#
PORTNAME= ophcrack
-PORTVERSION= 3.4.0
-PORTREVISION= 1
+PORTVERSION= 3.4.1
CATEGORIES= security
MASTER_SITES= SF
MAINTAINER= danfe at 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
More information about the svn-ports-all
mailing list