diff options
-rw-r--r-- | net-analyzer/authforce/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/authforce/authforce-0.9.9-r1.ebuild | 17 | ||||
-rw-r--r-- | net-analyzer/authforce/files/authforce-0.9.9-locale.patch | 15 | ||||
-rw-r--r-- | net-analyzer/authforce/metadata.xml | 6 |
4 files changed, 34 insertions, 10 deletions
diff --git a/net-analyzer/authforce/ChangeLog b/net-analyzer/authforce/ChangeLog index e5f56be689e9..e14aaa914061 100644 --- a/net-analyzer/authforce/ChangeLog +++ b/net-analyzer/authforce/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/authforce # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/authforce/ChangeLog,v 1.19 2012/06/13 06:30:02 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/authforce/ChangeLog,v 1.20 2012/06/20 13:02:01 jlec Exp $ + + 20 Jun 2012; Justin Lecher <jlec@gentoo.org> authforce-0.9.9-r1.ebuild, + +files/authforce-0.9.9-locale.patch, metadata.xml: + Fix missing include which disaalowed O0 builds, #240740 13 Jun 2012; Jeff Horelick <jdhore@gentoo.org> authforce-0.9.9-r1.ebuild: marked x86 per bug 419709 diff --git a/net-analyzer/authforce/authforce-0.9.9-r1.ebuild b/net-analyzer/authforce/authforce-0.9.9-r1.ebuild index 3d63c16778f1..641858663a62 100644 --- a/net-analyzer/authforce/authforce-0.9.9-r1.ebuild +++ b/net-analyzer/authforce/authforce-0.9.9-r1.ebuild @@ -1,25 +1,30 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/authforce/authforce-0.9.9-r1.ebuild,v 1.3 2012/06/13 06:30:02 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/authforce/authforce-0.9.9-r1.ebuild,v 1.4 2012/06/20 13:02:02 jlec Exp $ EAPI=4 inherit base DESCRIPTION="An HTTP authentication brute forcer" -HOMEPAGE="http://www.divineinvasion.net/authforce" +HOMEPAGE="http://www.divineinvasion.net/authforce/" SRC_URI="http://www.divineinvasion.net/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~ppc x86" IUSE="curl nls" -DEPEND="sys-libs/readline - nls? ( sys-devel/gettext ) - curl? ( net-misc/curl )" + +DEPEND=" + sys-libs/readline + curl? ( net-misc/curl ) + nls? ( sys-devel/gettext )" DOCS=( AUTHORS BUGS NEWS README THANKS TODO ) -PATCHES=( "${FILESDIR}"/${P}-curl.patch ) +PATCHES=( + "${FILESDIR}"/${P}-curl.patch + "${FILESDIR}"/${P}-locale.patch + ) src_configure() { econf \ diff --git a/net-analyzer/authforce/files/authforce-0.9.9-locale.patch b/net-analyzer/authforce/files/authforce-0.9.9-locale.patch new file mode 100644 index 000000000000..89792db3ea12 --- /dev/null +++ b/net-analyzer/authforce/files/authforce-0.9.9-locale.patch @@ -0,0 +1,15 @@ + src/main.c | 1 + + 1 files changed, 1 insertions(+), 0 deletions(-) + +diff --git a/src/main.c b/src/main.c +index 0fd275a..296e181 100644 +--- a/src/main.c ++++ b/src/main.c +@@ -14,6 +14,7 @@ + #include "extern.h" + #ifdef ENABLE_NLS + #define _(x) dgettext(PACKAGE_NAME, x) ++#include <locale.h> + #else + #define _(x) (x) + #endif diff --git a/net-analyzer/authforce/metadata.xml b/net-analyzer/authforce/metadata.xml index ff62877c67ae..91f4e72fb544 100644 --- a/net-analyzer/authforce/metadata.xml +++ b/net-analyzer/authforce/metadata.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<maintainer> - <email>maintainer-needed@gentoo.org</email> -</maintainer> + <maintainer> + <email>maintainer-needed@gentoo.org</email> + </maintainer> </pkgmetadata> |