diff options
author | alepulver <alepulver@FreeBSD.org> | 2007-06-05 13:52:00 +0800 |
---|---|---|
committer | alepulver <alepulver@FreeBSD.org> | 2007-06-05 13:52:00 +0800 |
commit | 6e138bddd89ce109b55fdaf77768cc5209b0fc6c (patch) | |
tree | f2f180083360ec6d35a891f4a68ac7d9a2c13012 /net-p2p | |
parent | 460881d927ef3462ca377e446cd2ddcea24eb58d (diff) | |
download | freebsd-ports-graphics-6e138bddd89ce109b55fdaf77768cc5209b0fc6c.tar.gz freebsd-ports-graphics-6e138bddd89ce109b55fdaf77768cc5209b0fc6c.tar.zst freebsd-ports-graphics-6e138bddd89ce109b55fdaf77768cc5209b0fc6c.zip |
- Update to version 0.12.
- Remove useless patch for enabling workaround code for Mac OS X (the
functions are implemented in FreeBSD).
Diffstat (limited to 'net-p2p')
6 files changed, 12 insertions, 108 deletions
diff --git a/net-p2p/libtorrent-rasterbar-14/Makefile b/net-p2p/libtorrent-rasterbar-14/Makefile index 1fa132acd41..5943f90962d 100644 --- a/net-p2p/libtorrent-rasterbar-14/Makefile +++ b/net-p2p/libtorrent-rasterbar-14/Makefile @@ -6,14 +6,14 @@ # PORTNAME= libtorrent -DISTVERSION= 0.12rc3 +PORTVERSION= 0.12 CATEGORIES= net-p2p -MASTER_SITES= http://www.rasterbar.com/products/libtorrent/ +MASTER_SITES= SF PKGNAMEPREFIX= rb PKGNAMESUFFIX= -devel MAINTAINER= alepulver@FreeBSD.org -COMMENT= A C++ library implementing a BitTorrent client +COMMENT= A C++ library implementing a BitTorrent client (devel version) LIB_DEPENDS= boost_date_time.3:${PORTSDIR}/devel/boost @@ -22,7 +22,6 @@ USE_LDCONFIG= yes CONFIGURE_ARGS= --disable-debug CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" -WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:C/rc[[:digit:]]//} CONFLICTS= libtorrent-[0-9]* \ libtorrent-devel-[0-9]* \ diff --git a/net-p2p/libtorrent-rasterbar-14/distinfo b/net-p2p/libtorrent-rasterbar-14/distinfo index a84d1b39023..f12d4973f5b 100644 --- a/net-p2p/libtorrent-rasterbar-14/distinfo +++ b/net-p2p/libtorrent-rasterbar-14/distinfo @@ -1,3 +1,3 @@ -MD5 (libtorrent-0.12rc3.tar.gz) = aa6d0cf9d30592857c99531cd73f0dcd -SHA256 (libtorrent-0.12rc3.tar.gz) = 3d99e12edb01044ed50c51ae1f60f28dae43e28f7d52c179add0a8cc158d7740 -SIZE (libtorrent-0.12rc3.tar.gz) = 1180260 +MD5 (libtorrent-0.12.tar.gz) = a09a37e6fc74d152821c00c3cb15d248 +SHA256 (libtorrent-0.12.tar.gz) = 0663f9adaa9d90334ebf78eb6f5b31074ff533d7bec5d3325ff98baad5b7df07 +SIZE (libtorrent-0.12.tar.gz) = 1176469 diff --git a/net-p2p/libtorrent-rasterbar-14/files/patch-include__libtorrent__asio__detail__socket_ops.hpp b/net-p2p/libtorrent-rasterbar-14/files/patch-include__libtorrent__asio__detail__socket_ops.hpp deleted file mode 100644 index bb623974518..00000000000 --- a/net-p2p/libtorrent-rasterbar-14/files/patch-include__libtorrent__asio__detail__socket_ops.hpp +++ /dev/null @@ -1,47 +0,0 @@ ---- include/libtorrent/asio/detail/socket_ops.hpp.orig Wed Mar 7 15:04:00 2007 -+++ include/libtorrent/asio/detail/socket_ops.hpp Mon Apr 16 16:05:17 2007 -@@ -63,7 +63,7 @@ - socket_addr_len_type* addrlen, asio::error_code& ec) - { - clear_error(ec); --#if defined(__MACH__) && defined(__APPLE__) -+#if defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - socket_type new_s = error_wrapper(::accept(s, addr, addrlen), ec); - if (new_s == invalid_socket) - return new_s; -@@ -295,7 +295,7 @@ - } - - return s; --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - socket_type s = error_wrapper(::socket(af, type, protocol), ec); - if (s == invalid_socket) - return s; -@@ -654,7 +654,7 @@ - if (error) - ec = translate_netdb_error(error); - return retval; --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - (void)(buffer); - (void)(buflength); - int error = 0; -@@ -708,7 +708,7 @@ - if (error) - ec = translate_netdb_error(error); - return retval; --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - (void)(buffer); - (void)(buflength); - int error = 0; -@@ -739,7 +739,7 @@ - - inline void freehostent(hostent* h) - { --#if defined(__MACH__) && defined(__APPLE__) -+#if defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - if (h) - ::freehostent(h); - #else diff --git a/net-p2p/rblibtorrent-devel/Makefile b/net-p2p/rblibtorrent-devel/Makefile index 1fa132acd41..5943f90962d 100644 --- a/net-p2p/rblibtorrent-devel/Makefile +++ b/net-p2p/rblibtorrent-devel/Makefile @@ -6,14 +6,14 @@ # PORTNAME= libtorrent -DISTVERSION= 0.12rc3 +PORTVERSION= 0.12 CATEGORIES= net-p2p -MASTER_SITES= http://www.rasterbar.com/products/libtorrent/ +MASTER_SITES= SF PKGNAMEPREFIX= rb PKGNAMESUFFIX= -devel MAINTAINER= alepulver@FreeBSD.org -COMMENT= A C++ library implementing a BitTorrent client +COMMENT= A C++ library implementing a BitTorrent client (devel version) LIB_DEPENDS= boost_date_time.3:${PORTSDIR}/devel/boost @@ -22,7 +22,6 @@ USE_LDCONFIG= yes CONFIGURE_ARGS= --disable-debug CONFIGURE_ENV= CXXFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" -WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION:C/rc[[:digit:]]//} CONFLICTS= libtorrent-[0-9]* \ libtorrent-devel-[0-9]* \ diff --git a/net-p2p/rblibtorrent-devel/distinfo b/net-p2p/rblibtorrent-devel/distinfo index a84d1b39023..f12d4973f5b 100644 --- a/net-p2p/rblibtorrent-devel/distinfo +++ b/net-p2p/rblibtorrent-devel/distinfo @@ -1,3 +1,3 @@ -MD5 (libtorrent-0.12rc3.tar.gz) = aa6d0cf9d30592857c99531cd73f0dcd -SHA256 (libtorrent-0.12rc3.tar.gz) = 3d99e12edb01044ed50c51ae1f60f28dae43e28f7d52c179add0a8cc158d7740 -SIZE (libtorrent-0.12rc3.tar.gz) = 1180260 +MD5 (libtorrent-0.12.tar.gz) = a09a37e6fc74d152821c00c3cb15d248 +SHA256 (libtorrent-0.12.tar.gz) = 0663f9adaa9d90334ebf78eb6f5b31074ff533d7bec5d3325ff98baad5b7df07 +SIZE (libtorrent-0.12.tar.gz) = 1176469 diff --git a/net-p2p/rblibtorrent-devel/files/patch-include__libtorrent__asio__detail__socket_ops.hpp b/net-p2p/rblibtorrent-devel/files/patch-include__libtorrent__asio__detail__socket_ops.hpp deleted file mode 100644 index bb623974518..00000000000 --- a/net-p2p/rblibtorrent-devel/files/patch-include__libtorrent__asio__detail__socket_ops.hpp +++ /dev/null @@ -1,47 +0,0 @@ ---- include/libtorrent/asio/detail/socket_ops.hpp.orig Wed Mar 7 15:04:00 2007 -+++ include/libtorrent/asio/detail/socket_ops.hpp Mon Apr 16 16:05:17 2007 -@@ -63,7 +63,7 @@ - socket_addr_len_type* addrlen, asio::error_code& ec) - { - clear_error(ec); --#if defined(__MACH__) && defined(__APPLE__) -+#if defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - socket_type new_s = error_wrapper(::accept(s, addr, addrlen), ec); - if (new_s == invalid_socket) - return new_s; -@@ -295,7 +295,7 @@ - } - - return s; --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - socket_type s = error_wrapper(::socket(af, type, protocol), ec); - if (s == invalid_socket) - return s; -@@ -654,7 +654,7 @@ - if (error) - ec = translate_netdb_error(error); - return retval; --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - (void)(buffer); - (void)(buflength); - int error = 0; -@@ -708,7 +708,7 @@ - if (error) - ec = translate_netdb_error(error); - return retval; --#elif defined(__MACH__) && defined(__APPLE__) -+#elif defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - (void)(buffer); - (void)(buflength); - int error = 0; -@@ -739,7 +739,7 @@ - - inline void freehostent(hostent* h) - { --#if defined(__MACH__) && defined(__APPLE__) -+#if defined(__MACH__) && defined(__APPLE__) || defined(__FreeBSD__) - if (h) - ::freehostent(h); - #else |