pkgsrc/net/libtorrent/Makefile
tron 0497ecbb4e Update "libtorrent" package to version 0.10.2 and "rtorrent" package to
version 0.6.2. Changes since 0.10.1 respectively 0.6.1:
- Rebound the old ^P for commands to ^X due to a collision with up key.
- The ^F and ^B keys can be used instead of left and right arrows.
- Support for qwertz keyboard layout.
- Fixed a bug that caused quick hash checking to mark chunks as
  unfinished if it was unable to map them.
- Peer info with the corrupt upload counter is now saved in the session
  torrent. Uninteresting peers are removed at regular intervals.
- Allow only one connection from a single host. A peer's listening port
  is now kept track of separately from the connection port.
- An integer is used in the session torrent instead of a bitfield when
  either none or all chunks are done.
- Added code for preloading chunks that get mapped, currently disabled.
- When checking how much free disk-space remains, any file or directory
  that is a symlink is tested as they may be on a different mount point.
- Fixed most of the bugs reported.
2006-09-27 20:36:45 +00:00

29 lines
819 B
Makefile

# $NetBSD: Makefile,v 1.15 2006/09/27 20:36:45 tron Exp $
DISTNAME= libtorrent-0.10.2
CATEGORIES= net
MASTER_SITES= http://libtorrent.rakshasa.no/downloads/
MAINTAINER= tron@NetBSD.org
HOMEPAGE= http://libtorrent.rakshasa.no/
COMMENT= BitTorrent library written in C++ for *nix
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_TOOLS+= gmake pkg-config
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --disable-debug
CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl}
GCC_REQD+= 3.3
.include "../../mk/compiler.mk"
# See http://libtorrent.rakshasa.no/ticket/96
.if !empty(CC_VERSION:Mgcc-4.*)
CXXFLAGS+= -fpermissive -fno-strength-reduce -fno-thread-jumps \
-fno-inline -fforce-addr
.endif
.include "../../devel/libsigc++2/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"