Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Sep 2012 15:01:34 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r303970 - in head/www: . http_post http_post/files
Message-ID:  <201209091501.q89F1YXQ095261@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Sun Sep  9 15:01:34 2012
New Revision: 303970
URL: http://svn.freebsd.org/changeset/ports/303970

Log:
  Http_post does a POST operation and dumps the results to stdout. This supports
  ipv6 and https (SSL).
  
  WWW: http://www.acme.com/software/http_post/
  
  PR:		ports/171492
  Submitted by:	masaki@club.kyutech.ac.jp

Added:
  head/www/http_post/
  head/www/http_post/Makefile   (contents, props changed)
  head/www/http_post/distinfo   (contents, props changed)
  head/www/http_post/files/
  head/www/http_post/files/Makefile.bsd   (contents, props changed)
  head/www/http_post/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun Sep  9 15:01:14 2012	(r303969)
+++ head/www/Makefile	Sun Sep  9 15:01:34 2012	(r303970)
@@ -337,6 +337,7 @@
     SUBDIR += http-analyze
     SUBDIR += http_get
     SUBDIR += http_load
+    SUBDIR += http_post
     SUBDIR += httpclient
     SUBDIR += httpcore
     SUBDIR += httpgrabber

Added: head/www/http_post/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/http_post/Makefile	Sun Sep  9 15:01:34 2012	(r303970)
@@ -0,0 +1,28 @@
+# New ports collection makefile for:	http_post
+# Date created:				9 Sep 2012
+# Whom:					Masaki TAGAWA <masaki@club.kyutech.ac.jp>
+#
+# $FreeBSD$
+#
+
+PORTNAME=	http_post
+PORTVERSION=	1.0.20110118
+CATEGORIES=	www ipv6
+MASTER_SITES=	http://www.acme.com/software/http_post/
+DISTNAME=	${PORTNAME}_18jan2011
+
+MAINTAINER=	masaki@club.kyutech.ac.jp
+COMMENT=	Do a POST operaion and Dump http-contents to stdout
+
+WRKSRC=		${WRKDIR}/http_post
+MAKEFILE=	${FILESDIR}/Makefile.bsd
+
+MAN1=		http_post.1
+MANCOMPRESSED=	yes
+PLIST_FILES=	bin/http_post
+
+.ifndef NO_OPENSSL
+USE_OPENSSL=	yes
+.endif
+
+.include <bsd.port.mk>

Added: head/www/http_post/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/http_post/distinfo	Sun Sep  9 15:01:34 2012	(r303970)
@@ -0,0 +1,2 @@
+SHA256 (http_post_18jan2011.tar.gz) = 3a000cc417000d7dc92735f17a073df74e82a38ac1d382afe05454d175645559
+SIZE (http_post_18jan2011.tar.gz) = 8136

Added: head/www/http_post/files/Makefile.bsd
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/http_post/files/Makefile.bsd	Sun Sep  9 15:01:34 2012	(r303970)
@@ -0,0 +1,12 @@
+PROG	 =	http_post
+SRCS	 =	http_post.c
+
+.ifndef NO_OPENSSL
+CFLAGS	+=	-DUSE_SSL -I${OPENSSLBASE}/include ${OPENSSL_CFLAGS}
+LDFLAGS	+=	-L${OPENSSLBASE}/lib -lssl -lcrypto
+.endif
+
+BINDIR	 =	${PREFIX}/bin
+MANDIR	 =	${PREFIX}/man/man
+
+.include <bsd.prog.mk>

Added: head/www/http_post/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/http_post/pkg-descr	Sun Sep  9 15:01:34 2012	(r303970)
@@ -0,0 +1,4 @@
+Http_post does a POST operation and dumps the results to stdout. This supports
+ipv6 and https (SSL).
+
+WWW: http://www.acme.com/software/http_post/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209091501.q89F1YXQ095261>