From owner-svn-ports-all@FreeBSD.ORG Sun Sep 9 15:01:34 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EFBD8106564A; Sun, 9 Sep 2012 15:01:34 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D08298FC16; Sun, 9 Sep 2012 15:01:34 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q89F1YkP095267; Sun, 9 Sep 2012 15:01:34 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q89F1YXQ095261; Sun, 9 Sep 2012 15:01:34 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201209091501.q89F1YXQ095261@svn.freebsd.org> From: Steve Wills Date: Sun, 9 Sep 2012 15:01:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303970 - in head/www: . http_post http_post/files X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Sep 2012 15:01:35 -0000 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 +# +# $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 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 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/