From owner-svn-ports-head@FreeBSD.ORG Mon Aug 19 14:52:19 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C0BF8E69; Mon, 19 Aug 2013 14:52:19 +0000 (UTC) (envelope-from wxs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AD9D923B3; Mon, 19 Aug 2013 14:52:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7JEqJwM097775; Mon, 19 Aug 2013 14:52:19 GMT (envelope-from wxs@svn.freebsd.org) Received: (from wxs@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7JEqIMq097771; Mon, 19 Aug 2013 14:52:18 GMT (envelope-from wxs@svn.freebsd.org) Message-Id: <201308191452.r7JEqIMq097771@svn.freebsd.org> From: Wesley Shields Date: Mon, 19 Aug 2013 14:52:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324997 - in head/net-p2p: . shx X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 14:52:19 -0000 Author: wxs Date: Mon Aug 19 14:52:18 2013 New Revision: 324997 URL: http://svnweb.freebsd.org/changeset/ports/324997 Log: This is a text based version of the popular hotline client for Macintosh. Hotline is a chat/ftp/news protocol. It's setup almost like an IRC client, but with the ability to do commands such as cd into a directory with /cd and more file transfer oriented functions. WWW: http://synhxd.sourceforge.net/ PR: ports/181401 Submitted by: dteske@ Added: head/net-p2p/shx/ head/net-p2p/shx/Makefile (contents, props changed) head/net-p2p/shx/distinfo (contents, props changed) head/net-p2p/shx/pkg-descr (contents, props changed) Modified: head/net-p2p/Makefile Modified: head/net-p2p/Makefile ============================================================================== --- head/net-p2p/Makefile Mon Aug 19 14:35:14 2013 (r324996) +++ head/net-p2p/Makefile Mon Aug 19 14:52:18 2013 (r324997) @@ -84,6 +84,7 @@ SUBDIR += rtgui SUBDIR += rtorrent SUBDIR += rtorrent-devel + SUBDIR += shx SUBDIR += solidcoin SUBDIR += squall SUBDIR += teknap Added: head/net-p2p/shx/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/shx/Makefile Mon Aug 19 14:52:18 2013 (r324997) @@ -0,0 +1,84 @@ +# Created by: Devin Teske +# $FreeBSD$ + +PORTNAME= shx +PORTVERSION= 0.2.4 +CATEGORIES= net-p2p +MASTER_SITES= http://synhxd.sourceforge.net/releases/ +EXTRACT_SUFX= .tgz + +PATCH_SITES= ${MASTER_SITES} +PATCHFILES= ${DISTNAME}.diff.gz + +MAINTAINER= dteske@FreeBSD.org +COMMENT= A text based Hotline Communications client for Unix + +LICENSE= GPLv1 + +OPTIONS_DEFINE= WARNINGS HTXF_PTHREAD HFS HOPE CIPHER COMPRESS HAL XMMS NOIPV4 +OPTIONS_DEFAULT= HTXF_PTHREAD HFS HOPE CIPHER COMPRESS XMMS + +WARNINGS_DESC= Show compiler warnings +HTXF_PTHREAD_DESC= Use pthread instead of fork or clone for htxf +HFS_DESC= Enable HFS file system emulation +HOPE_DESC= Enable HOPE (required by Cipher/Compress) +CIPHER_DESC= Enable Cipher (HOPE required) +COMPRESS_DESC= Enable Compress (HOPE required) +HAL_DESC= Compile MegaHAL (enables hal command) +XMMS_DESC= Enable trackname command +NOIPV4_DESC= IPv6 support (disables IPv4 support) + +MAKEFILE= makefile +GNU_CONFIGURE= yes +CONFIGURE_ARGS= + +.include + +.if ${PORT_OPTIONS:MWARNINGS} +CONFIGURE_ARGS+= --enable-warnings +.endif + +.if ${PORT_OPTIONS:MHTXF_PTHREAD} +CONFIGURE_ARGS+= --enable-htxf-pthread +.endif + +.if ! ${PORT_OPTIONS:MHFS} +CONFIGURE_ARGS+= --disable-hfs +.endif + +.if ${PORT_OPTIONS:MHOPE} +CONFIGURE_ARGS+= --enable-hope +.if ${PORT_OPTIONS:MCIPHER} +CONFIGURE_ARGS+= --enable-cipher +.endif +.if ${PORT_OPTIONS:MCOMPRESS} +CONFIGURE_ARGS+= --enable-compress +.endif +.endif + +.if ${PORT_OPTIONS:MHAL} +CONFIGURE_ARGS+= --enable-hal +.endif + +.if ${PORT_OPTIONS:MXMMS} +CONFIGURE_ARGS+= --enable-xmms +.endif + +.if ${PORT_OPTIONS:MNOIPV4} +CONFIGURE_ARGS+= --enable-ipv6 +.endif + +PLIST_FILES= \ + bin/hx \ + share/examples/shx/hxrc \ + share/examples/shx/hxvars + +PLIST_DIRS= share/examples/shx + +do-install: + @${CP} -fv ${WRKSRC}/run/hx ${PREFIX}/bin/ + @${MKDIR} ${PREFIX}/share/examples/${PORTNAME} + @${CP} -fv ${WRKSRC}/run/hxrc ${PREFIX}/share/examples/${PORTNAME}/ + @${CP} -fv ${WRKSRC}/run/hxvars ${PREFIX}/share/examples/${PORTNAME}/ + +.include Added: head/net-p2p/shx/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/shx/distinfo Mon Aug 19 14:52:18 2013 (r324997) @@ -0,0 +1,4 @@ +SHA256 (shx-0.2.4.tgz) = 0fe2d3bed542c4659614d449bf42b618a37130c7e63bce13db3832575e45e325 +SIZE (shx-0.2.4.tgz) = 290512 +SHA256 (shx-0.2.4.diff.gz) = 70d41179c0e2fb5f8dd3ee104aeddac2346da45a7f344682dfa2c67116c78e2a +SIZE (shx-0.2.4.diff.gz) = 651 Added: head/net-p2p/shx/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/shx/pkg-descr Mon Aug 19 14:52:18 2013 (r324997) @@ -0,0 +1,6 @@ +This is a text based version of the popular hotline client for +Macintosh. Hotline is a chat/ftp/news protocol. It's setup almost +like an IRC client, but with the ability to do commands such as cd +into a directory with /cd and more file transfer oriented functions. + +WWW: http://synhxd.sourceforge.net/