Bug Fixes: - The download overlap checking was incorrectly detecting mismatches. - A bug in the network queue caused frequent crashes. - A bug in the event timing caused failures after 25 days uptime. - A stalling issue with TLS connections. - The search retry timeouts weren't accepted. - The order of items in the search history was wrong. - The quick-connect limit wasn't respected causing too frequent connection attempts during startup. - Removed incorrect use of SF_NODISKIO flag for sendfile() on FreeBSD. - Fixed crash that could be triggered by changing the listening port temporarily to zero. - iconv() was not used correctly which could cause wrong conversions for longer strings. - Generated filenames weren't properly restricted in length which could cause crashes. - There was a compile issue on NetBSD caused by namespace pollution. - Added workaround for the issue that on Solaris only the file descriptors 0..255 can be used for stdio. Improvements: - Finished downloads are now seeded for the whole session or until they are manually purged, if partial file-sharing is enabled. - Server-side support for Tigertree hashes and THEX thanks to patches provided by Martijn van Oosterhout. - Improved spam filters.
32 lines
1,010 B
Makefile
32 lines
1,010 B
Makefile
# $NetBSD: Makefile,v 1.59 2007/10/14 08:32:19 adam Exp $
|
|
|
|
DISTNAME= gtk-gnutella-0.96.4
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gtk-gnutella/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= adam@NetBSD.org
|
|
HOMEPAGE= http://gtk-gnutella.sourceforge.net/
|
|
COMMENT= GTK-based gnutella client
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= gmake msgfmt pkg-config
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT= ./Configure
|
|
CONFIGURE_ARGS+= -d -e -r -s
|
|
CONFIGURE_ARGS+= -D prefix=${PREFIX:Q}
|
|
CONFIGURE_ARGS+= -D privlib="${PREFIX}/share/gtk-gnutella"
|
|
CONFIGURE_ARGS+= -D sysman="${PREFIX}/man"
|
|
CONFIGURE_ARGS+= -D locale="${PREFIX}/${PKGLOCALEDIR}/locale"
|
|
CONFIGURE_ARGS+= -D cc=${CC:Q}
|
|
CONFIGURE_ARGS+= -D ccflags="${CFLAGS:Unone}"
|
|
CONFIGURE_ARGS+= -D yacc="yacc"
|
|
CONFIGURE_ARGS+= -D official="true"
|
|
CONFIGURE_ARGS+= -U optimize
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../security/gnutls/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|