1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

The reCAPTCHA [1] is a service that provides captchas for preventing

automated spam in web applications.  The recaptcha-hs provides functions
for using reCAPTCHA in Haskell web applications.

[1] http://recaptcha.net/

WWW:	http://github.com/jgm/recaptcha/tree/master

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-02-18 03:14:59 +00:00
parent 57c3fca0c5
commit ca9e235905
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291656
5 changed files with 31 additions and 0 deletions

View File

@ -182,6 +182,7 @@ pwstore-fast_port= security/hs-pwstore-fast
QuickCheck_port= devel/hs-QuickCheck
reactive_port= devel/hs-reactive
readline_port= devel/hs-readline
recaptcha_port= www/hs-recaptcha
regex-base_port= textproc/hs-regex-base
regex-compat_port= textproc/hs-regex-compat
regex-pcre-builtin_port= textproc/hs-regex-pcre-builtin

View File

@ -292,6 +292,7 @@
SUBDIR += hs-http-server
SUBDIR += hs-http-types
SUBDIR += hs-oeis
SUBDIR += hs-recaptcha
SUBDIR += hs-scgi
SUBDIR += hs-snap
SUBDIR += hs-snap-core

20
www/hs-recaptcha/Makefile Normal file
View File

@ -0,0 +1,20 @@
# New ports collection makefile for: hs-recaptcha
# Date created: December 2, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= recaptcha
PORTVERSION= 0.1
CATEGORIES= www haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Functions for using the reCAPTCHA service in web applications
LICENSE= BSD
USE_CABAL= HTTP>=3001.1.4 network>=2.2.0.1 xhtml>=3000.0
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/recaptcha-0.1.tar.gz) = de00e6e3aadd99a1cd036ce4b413ebe02d59c1b9cfd3032f122735cca1f25144
SIZE (cabal/recaptcha-0.1.tar.gz) = 2626

View File

@ -0,0 +1,7 @@
The reCAPTCHA [1] is a service that provides captchas for preventing
automated spam in web applications. The recaptcha-hs provides functions
for using reCAPTCHA in Haskell web applications.
[1] http://recaptcha.net/
WWW: http://github.com/jgm/recaptcha/tree/master