diff options
author | miwi <miwi@FreeBSD.org> | 2014-05-17 16:36:15 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2014-05-17 16:36:15 +0800 |
commit | 4f8560271521bd2ee1f4d4ac59ff53f137342829 (patch) | |
tree | e37dfacf95212da1e3619a291ed03012bdcc2d81 /security | |
parent | af0d161be85993063e90e43e6566440378a5cc7d (diff) | |
download | freebsd-ports-gnome-4f8560271521bd2ee1f4d4ac59ff53f137342829.tar.gz freebsd-ports-gnome-4f8560271521bd2ee1f4d4ac59ff53f137342829.tar.zst freebsd-ports-gnome-4f8560271521bd2ee1f4d4ac59ff53f137342829.zip |
- Support USE_GITHUB
- Fix info file
- Options helper
PR: 187752
Submitted by: Ports Fury
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 |