Bug 187752 - security/authforce: Support USE_GITHUB
Summary: security/authforce: Support USE_GITHUB
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Martin Wilke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-03-19 18:40 UTC by tkato432
Modified: 2014-05-17 09:40 UTC (History)
0 users

See Also:


Attachments
file.diff (2.83 KB, patch)
2014-03-19 18:40 UTC, tkato432
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description tkato432 2014-03-19 18:40:05 UTC
- Support USE_GITHUB
- Fix info file

New file:
files/patch-doc__authforce.texi
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-03-19 18:41:10 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

miwi@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-05-17 09:36:18 UTC
Author: miwi
Date: Sat May 17 08:36:15 2014
New Revision: 354294
URL: http://svnweb.freebsd.org/changeset/ports/354294
QAT: https://qat.redports.org/buildarchive/r354294/

Log:
  - Support USE_GITHUB
  - Fix info file
  - Options helper
  
  PR:		187752
  Submitted by:	Ports Fury

Added:
  head/security/authforce/files/
  head/security/authforce/files/patch-doc__authforce.texi   (contents, props changed)
Modified:
  head/security/authforce/Makefile

Modified: head/security/authforce/Makefile
==============================================================================
--- head/security/authforce/Makefile	Sat May 17 08:24:25 2014	(r354293)
+++ head/security/authforce/Makefile	Sat May 17 08:36:15 2014	(r354294)
@@ -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}
 
-USES=		ncurses readline
+USE_GITHUB=	yes
+GH_ACCOUNT=	zlandau
+
+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>
+OPTIONS_DEFINE=		CURL NLS
 
-.if ${PORT_OPTIONS:MCURL}
-LIB_DEPENDS+=	curl:${PORTSDIR}/ftp/curl
-.else
-CONFIGURE_ARGS+=	--without-curl
-.endif
-
-.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>

Added: head/security/authforce/files/patch-doc__authforce.texi
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/authforce/files/patch-doc__authforce.texi	Sat May 17 08:36:15 2014	(r354294)
@@ -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
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Martin Wilke freebsd_committer freebsd_triage 2014-05-17 09:36:21 UTC
State Changed
From-To: open->closed

Committed. Thanks!