mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:24:52 +00:00
45cb752a04
it for many years. While here, alphabetize ARCHs, pet portlint, and modernize usages. Approved by: portmgr (tier-2 blanket)
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# Created by: David Thiel <lx@redundancy.redundancy.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= medusa
|
|
PORTVERSION= 2.2
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.foofus.net/~jmk/tools/
|
|
|
|
MAINTAINER= dbaio@FreeBSD.org
|
|
COMMENT= Speedy, massively parallel, modular, login brute-forcer
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libssh2.so:security/libssh2
|
|
|
|
USES= ssl
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-module-ncp=no --enable-module-afp=no
|
|
|
|
OPTIONS_DEFINE= SVN PGSQL DOCS
|
|
OPTIONS_SUB= yes
|
|
|
|
SVN_LIB_DEPENDS= libsvn_client-1.so:devel/subversion
|
|
SVN_CFLAGS= -I${LOCALBASE}/include/subversion-1 -I${LOCALBASE}/include/apr-1
|
|
SVN_CONFIGURE_OFF= --enable-module-svn=no
|
|
|
|
PGSQL_USES= pgsql
|
|
PGSQL_CONFIGURE_ON= --enable-module-postgres
|
|
PGSQL_CONFIGURE_OFF= --enable-module-postgres=no
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions
|
|
${INSTALL_DATA} ${WRKSRC}/misc/zsh/_medusa \
|
|
${STAGEDIR}${PREFIX}/share/zsh/site-functions/_medusa
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|