Index: head/misc/esniper/Makefile =================================================================== --- head/misc/esniper/Makefile (revision 425334) +++ head/misc/esniper/Makefile (revision 425335) @@ -1,31 +1,30 @@ # Created by: Lewis Thompson # $FreeBSD$ PORTNAME= esniper -DISTVERSION= 2-31-0 +DISTVERSION= 2-32-0 CATEGORIES= misc net MASTER_SITES= SF MAINTAINER= ag-freebsd@muc.de COMMENT= Lightweight console application for sniping ebay auctions LICENSE= BSD2CLAUSE LIB_DEPENDS= libcurl.so:ftp/curl USES= tar:tgz GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-curl-config=${LOCALBASE}/bin/curl-config -USE_OPENSSL= yes PLIST_FILES= bin/esniper man/man1/esniper.1.gz PORTEXAMPLES= sample_auction.txt sample_config.txt OPTIONS_DEFINE= EXAMPLES post-install: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${PORTEXAMPLES:S|^|${WRKSRC}/|} ${STAGEDIR}${EXAMPLESDIR} .include Index: head/misc/esniper/distinfo =================================================================== --- head/misc/esniper/distinfo (revision 425334) +++ head/misc/esniper/distinfo (revision 425335) @@ -1,2 +1,3 @@ -SHA256 (esniper-2-31-0.tgz) = 30d2378c700b72b5363c8af59e7566564d9ec8cd4b44cd389c2830907d7bc676 -SIZE (esniper-2-31-0.tgz) = 131583 +TIMESTAMP = 1478274473 +SHA256 (esniper-2-32-0.tgz) = 5ee3e5237c6a12059ae9d38380505d38448c2c12787f9fcc603cdb0a1a519312 +SIZE (esniper-2-32-0.tgz) = 133120 Index: head/misc/esniper/files/patch-http.c =================================================================== --- head/misc/esniper/files/patch-http.c (revision 425334) +++ head/misc/esniper/files/patch-http.c (revision 425335) @@ -1,20 +1,20 @@ ---- http.c.orig 2010-08-16 13:42:14.099356738 +0200 -+++ http.c 2010-08-16 13:42:58.186459428 +0200 +--- http.c.orig 2016-10-30 21:16:41 UTC ++++ http.c @@ -52,7 +52,7 @@ static size_t WriteMemoryCallback(void * static int initCurlStuffFailed(void); #ifdef NEED_CURL_EASY_STRERROR -static const char *curl_easy_strerror(CURLcode error); +const char *curl_easy_strerror(CURLcode error); #endif /* Set auction error with full libcurl details */ -@@ -517,7 +517,7 @@ static const char *curlErrorTable[] = { +@@ -535,7 +535,7 @@ static const char *curlErrorTable[] = { "Requested FTP SSL level failed", /* CURLE_FTP_SSL_FAILED */ }; -static const char * +const char * curl_easy_strerror(CURLcode error) { if (error < 0 || error >= CURL_LAST ||