From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Mar 19 18:40:04 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 979AB659 for ; Wed, 19 Mar 2014 18:40:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 78A04C68 for ; Wed, 19 Mar 2014 18:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JIe4Lf002499 for ; Wed, 19 Mar 2014 18:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2JIe4TI002498; Wed, 19 Mar 2014 18:40:04 GMT (envelope-from gnats) Resent-Date: Wed, 19 Mar 2014 18:40:04 GMT Resent-Message-Id: <201403191840.s2JIe4TI002498@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru 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 ESMTPS id C3E654CA for ; Wed, 19 Mar 2014 18:31:52 +0000 (UTC) Received: from omta01.auone-net.jp (mail-or2-f145.auone-net.jp [111.87.219.145]) by mx1.freebsd.org (Postfix) with ESMTP id 98089C04 for ; Wed, 19 Mar 2014 18:31:52 +0000 (UTC) Received: from coppermine.my.domain (ZT028161.ppp.dion.ne.jp [59.128.28.161]) by omta01.auone-net.jp (au one net mail) with ESMTP id 3DF1998000A for ; Thu, 20 Mar 2014 03:31:50 +0900 (JST) Message-Id: <20140320032631.c2b72ad769992de6e34b6582@yahoo.com> Date: Thu, 20 Mar 2014 03:26:31 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/187749: net-p2p/btpd: Support USE_GITHUB X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 18:40:04 -0000 >Number: 187749 >Category: ports >Synopsis: net-p2p/btpd: Support USE_GITHUB >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Mar 19 18:40:04 UTC 2014 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 8.4-RELEASE-p7 i386 >Organization: >Environment: >Description: - Support USE_GITHUB >How-To-Repeat: >Fix: diff -urN /usr/ports/net-p2p/btpd/Makefile net-p2p/btpd/Makefile --- /usr/ports/net-p2p/btpd/Makefile 2014-01-23 03:23:29.000000000 +0900 +++ net-p2p/btpd/Makefile 2014-03-20 00:00:00.000000000 +0900 @@ -4,21 +4,25 @@ PORTVERSION= 0.16 PORTREVISION= 2 CATEGORIES= net-p2p -MASTER_SITES= http://cloud.github.com/downloads/btpd/btpd/ +MASTER_SITES= GHC MAINTAINER= ports@FreeBSD.org COMMENT= Bittorrent client consisting of a daemon and client commands LICENSE= BSD -OPTIONS_DEFINE= DOCS +WRKSRC= ${WRKDIR}/${DISTNAME} + +USE_GITHUB= yes +GH_ACCOUNT= ${PORTNAME} -USE_AUTOTOOLS= autoconf aclocal -GNU_CONFIGURE= yes USE_OPENSSL= yes +USE_AUTOTOOLS= aclocal autoconf + +OPTIONS_DEFINE= DOCS post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/ + (cd ${WRKSRC} && ${INSTALL_DATA} README ${STAGEDIR}${DOCSDIR}) .include diff -urN /usr/ports/net-p2p/btpd/pkg-descr net-p2p/btpd/pkg-descr --- /usr/ports/net-p2p/btpd/pkg-descr 2014-01-23 03:23:29.000000000 +0900 +++ net-p2p/btpd/pkg-descr 2014-03-20 00:00:00.000000000 +0900 @@ -1,8 +1,8 @@ -BTPD is a bittorrent client consisting of a daemon and client commands, which -can be used to read and/or manipulate the daemon state. The daemon is capable of -running several torrents simultaneously and only uses one tcp port. It's fairly -low on resource usage and should be perfect for file distribution sites. -Efficient downloads and ease of use makes this client a good choice for the -casual user as well. +BTPD is a bittorrent client consisting of a daemon and client commands, +which can be used to read and/or manipulate the daemon state. The daemon +is capable of running several torrents simultaneously and only uses one +tcp port. It's fairly low on resource usage and should be perfect for +file distribution sites. Efficient downloads and ease of use makes this +client a good choice for the casual user as well. WWW: http://wiki.github.com/btpd/btpd/ >Release-Note: >Audit-Trail: >Unformatted: