ports/149369: [PATCH] net-p2p/btpd: update to 0.16

Julien Laffaye kimelto at gmail.com
Fri Aug 6 16:40:02 UTC 2010


>Number:         149369
>Category:       ports
>Synopsis:       [PATCH] net-p2p/btpd: update to 0.16
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Aug 06 16:40:01 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Julien Laffaye
>Release:        FreeBSD 8.1-RELEASE i386
>Organization:
>Environment:
System: FreeBSD silver.lan 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:55:53 UTC 2010
>Description:
- Update to 0.16
- Use bsd.openssl.mk facility via `USE_OPENSSL=yes'
- Update mastersite and WWW

Removed file(s):
- files/patch-configure.ac

Port maintainer (bapt at FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- btpd-0.16.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/net-p2p/btpd.orig/Makefile /usr/ports/net-p2p/btpd/Makefile
--- /usr/ports/net-p2p/btpd.orig/Makefile	2010-08-06 09:11:58.000000000 -0700
+++ /usr/ports/net-p2p/btpd/Makefile	2010-08-06 09:21:25.000000000 -0700
@@ -6,19 +6,23 @@
 #
 
 PORTNAME=	btpd
-PORTVERSION=	0.15
+PORTVERSION=	0.16
 CATEGORIES=	net-p2p
-MASTER_SITES=	http://www.murmeldjur.se/btpd/
+MASTER_SITES=	http://cloud.github.com/downloads/btpd/btpd/
 
 MAINTAINER=	bapt at FreeBSD.org
-COMMENT=	Bittorrent  client consisting of a daemon and client commands
+COMMENT=	Bittorrent client consisting of a daemon and client commands
 
 USE_AUTOTOOLS=	autoconf:262 aclocal:110
 GNU_CONFIGURE=	yes
+USE_OPENSSL=	yes
 
 PLIST_FILES=	bin/btcli \
 		bin/btinfo \
 		bin/btpd
+MAN1=		btcli.1 \
+		btinfo.1 \
+		btpd.1
 
 PORTDOCS=	README
 
diff -ruN --exclude=CVS /usr/ports/net-p2p/btpd.orig/distinfo /usr/ports/net-p2p/btpd/distinfo
--- /usr/ports/net-p2p/btpd.orig/distinfo	2010-08-06 09:11:58.000000000 -0700
+++ /usr/ports/net-p2p/btpd/distinfo	2010-08-06 09:14:55.000000000 -0700
@@ -1,3 +1,3 @@
-MD5 (btpd-0.15.tar.gz) = b64e2e8b9936e99685bc1e7246655561
-SHA256 (btpd-0.15.tar.gz) = c2229244c3cb370ac95560e2e9ff7f5d094612ee2b2a1e36237ec7f27707db9d
-SIZE (btpd-0.15.tar.gz) = 144706
+MD5 (btpd-0.16.tar.gz) = fe042aae8d7c515ecd855673d1c2b33e
+SHA256 (btpd-0.16.tar.gz) = 296bdb718eaba9ca938bee56f0976622006c956980ab7fc7a339530d88f51eb8
+SIZE (btpd-0.16.tar.gz) = 159716
diff -ruN --exclude=CVS /usr/ports/net-p2p/btpd.orig/files/patch-configure.ac /usr/ports/net-p2p/btpd/files/patch-configure.ac
--- /usr/ports/net-p2p/btpd.orig/files/patch-configure.ac	2010-08-06 09:11:58.000000000 -0700
+++ /usr/ports/net-p2p/btpd/files/patch-configure.ac	1969-12-31 16:00:00.000000000 -0800
@@ -1,38 +0,0 @@
---- ./configure.ac.orig	2009-02-09 22:04:53.000000000 +0100
-+++ ./configure.ac	2009-02-17 15:00:30.648730460 +0100
-@@ -56,7 +56,7 @@
-     int main(void) { return clock_gettime(CLOCK_MONOTONIC, (void *)0); }
- ],  clock_gettime=yes, clock_gettime=no)
- AC_MSG_RESULT($clock_gettime)
--if test $clock_gettime == yes; then
-+if test $clock_gettime = yes; then
-     old_LIBS=$LIBS
-     LIBS=""
-     AC_SEARCH_LIBS(clock_gettime,rt,clock_gettime=yes,clock_gettime=no)
-@@ -64,7 +64,7 @@
-     LIBS=$old_LIBS
-     AC_DEFINE(HAVE_CLOCK_MONOTONIC)
- fi
--if test $clock_gettime == no; then
-+if test $clock_gettime = no; then
-     AC_CHECK_FUNCS(mach_absolute_time,,
-         AC_MSG_FAILURE(no supported time mechanism found))
- fi
-@@ -108,7 +108,7 @@
-         ;;
-     esac
- done
--if test x"$EVLOOP_METHOD" == x; then
-+if test x"$EVLOOP_METHOD" = x; then
-     AC_MSG_FAILURE(no suitable evloop method found)
-     exit 1
- else
-@@ -117,7 +117,7 @@
- 
- for i in 0 1 2 3 4 5 6 7; do
-     case $i in
--    0) if test x"$TD_CFLAGS$TD_LIBS" == x; then continue; fi;;
-+    0) if test x"$TD_CFLAGS$TD_LIBS" = x; then continue; fi;;
-     1) TD_CFLAGS=-pthread;;
-     2) TD_CFLAGS=-pthreads;;
-     3) TD_CFLAGS=-kthread;;
diff -ruN --exclude=CVS /usr/ports/net-p2p/btpd.orig/pkg-descr /usr/ports/net-p2p/btpd/pkg-descr
--- /usr/ports/net-p2p/btpd.orig/pkg-descr	2010-08-06 09:11:58.000000000 -0700
+++ /usr/ports/net-p2p/btpd/pkg-descr	2010-08-06 09:23:00.000000000 -0700
@@ -1,8 +1,8 @@
-BTPD is a bittorrent  client consisting of a daemon and client commands, which
+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://www.murmeldjur.se/btpd/
+WWW:	http://wiki.github.com/btpd/btpd/
--- btpd-0.16.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list