diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2014-05-17 08:36:15 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2014-05-17 08:36:15 +0000 |
commit | 7b7b85e08fffb63b777e73f71503a7c91e6b42bc (patch) | |
tree | e37dfacf95212da1e3619a291ed03012bdcc2d81 /security | |
parent | cb4e6e8f30dc27b68cfb083f8f5000214b3e42ca (diff) | |
download | ports-7b7b85e08fffb63b777e73f71503a7c91e6b42bc.tar.gz ports-7b7b85e08fffb63b777e73f71503a7c91e6b42bc.zip |
Notes
Diffstat (limited to 'security')
-rw-r--r-- | security/authforce/Makefile | 52 | ||||
-rw-r--r-- | security/authforce/files/patch-doc__authforce.texi | 12 |
2 files changed, 35 insertions, 29 deletions
diff --git a/security/authforce/Makefile b/security/authforce/Makefile index abe35a2b1aac..76cd6fe5974d 100644 --- a/security/authforce/Makefile +++ b/security/authforce/Makefile @@ -3,60 +3,54 @@ PORTNAME= authforce PORTVERSION= 0.9.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security www -MASTER_SITES= http://cloud.github.com/downloads/zlandau/authforce/ +MASTER_SITES= GHC MAINTAINER= ports@FreeBSD.org COMMENT= HTTP authentication brute forcer LICENSE= GPLv2 -OPTIONS_DEFINE= CURL NLS +NO_CCACHE= yes + +WRKSRC= ${WRKDIR}/${DISTNAME} + +USE_GITHUB= yes +GH_ACCOUNT= zlandau -USES= ncurses readline +USES= ncurses readline tar:bzip2 GNU_CONFIGURE= yes -USE_BZIP2= yes -NO_CCACHE= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib INFO= authforce PLIST_FILES= bin/authforce \ + man/man1/authforce.1.gz \ %%DATADIR%%/blank.lst \ %%DATADIR%%/dummy.lst \ %%DATADIR%%/password.lst \ %%DATADIR%%/username.lst \ - %%DATADIR%%/userpass.lst \ - man/man1/authforce.1.gz - + %%DATADIR%%/userpass.lst PLIST_DIRS= %%DATADIR%% -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MCURL} -LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl -.else -CONFIGURE_ARGS+= --without-curl -.endif +OPTIONS_DEFINE= CURL NLS -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_FILES+= share/locale/nl/LC_MESSAGES/authforce.mo -CONFIGURE_ENV+= CPPFLAGS=-I${PREFIX}/include LDFLAGS=-L${PREFIX}/lib -.else -CONFIGURE_ARGS+= --disable-nls -.endif +CURL_LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl +CURL_CONFIGURE_WITH= curl +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls +NLS_PLIST_FILES= share/locale/nl/LC_MESSAGES/authforce.mo post-patch: @${REINPLACE_CMD} -e \ '/^pwlistsdir = / s|/data$$||' ${WRKSRC}/data/Makefile.in @${REINPLACE_CMD} -e \ '/^mangdir = / s|/mang$$|/man1|' ${WRKSRC}/doc/Makefile.in - @${REINPLACE_CMD} -e \ - '/<curl\/types.h>/d' ${WRKSRC}/src/http.c -.for i in extract.c methods.c misc.c - @${REINPLACE_CMD} -e \ - 's|<malloc.h>|<stdlib.h>|' ${WRKSRC}/src/${i} -.endfor + @${FIND} ${WRKSRC}/src -name "*.c" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|^\(#include <curl/types.h>\)|/* \1 */| ; \ + s|^\(#include <malloc.h>\)|/* \1 */|' .include <bsd.port.mk> diff --git a/security/authforce/files/patch-doc__authforce.texi b/security/authforce/files/patch-doc__authforce.texi new file mode 100644 index 000000000000..091ae1c0fdb6 --- /dev/null +++ b/security/authforce/files/patch-doc__authforce.texi @@ -0,0 +1,12 @@ +--- doc/authforce.texi.orig ++++ doc/authforce.texi +@@ -2,6 +2,9 @@ + @c %**start of header + @setfilename authforce.info + @settitle Authforce ++@direntry ++* Authforce: (authforce). HTTP authentification brute forcer. ++@end direntry + @c %**end of header + + @setchapternewpage odd |