summaryrefslogtreecommitdiff
path: root/misc/bidwatcher
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2005-02-18 10:10:06 +0000
committertron <tron@pkgsrc.org>2005-02-18 10:10:06 +0000
commitab70bfa5452671164efbda795b4f51767f3982ed (patch)
treedd7923d265521e4ff3036e5dace046a638fbbde1 /misc/bidwatcher
parenta188cdd2dbd994a762c841468494229c5e481aff (diff)
downloadpkgsrc-ab70bfa5452671164efbda795b4f51767f3982ed.tar.gz
Update "bidwatcher" package to version 1.3.17.
Changes since version 1.3.16: - Fix eBay parser. - Add libcurl support. libcurl is now a dependency. - Tons of little fixes. - Fix potential security bug in versions <= 1.3.16 (CAN-2005-0158). - Added Seller id to the Log. - Fixed BUY Only items that expire but bidwather don't think so. - Should compile on cygwin now. - Be more compatible with BSD.
Diffstat (limited to 'misc/bidwatcher')
-rw-r--r--misc/bidwatcher/Makefile6
-rw-r--r--misc/bidwatcher/distinfo7
-rw-r--r--misc/bidwatcher/patches/patch-ac25
3 files changed, 6 insertions, 32 deletions
diff --git a/misc/bidwatcher/Makefile b/misc/bidwatcher/Makefile
index cfb81877281..0502e16802a 100644
--- a/misc/bidwatcher/Makefile
+++ b/misc/bidwatcher/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.40 2004/10/03 00:12:58 tv Exp $
+# $NetBSD: Makefile,v 1.41 2005/02/18 10:10:06 tron Exp $
-DISTNAME= bidwatcher-1.3.16
-PKGREVISION= 1
+DISTNAME= bidwatcher-1.3.17
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bidwatcher/}
@@ -23,4 +22,5 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/quick_start.html ${DOCDIR}
.include "../../x11/gtk/buildlink3.mk"
+.include "../../www/curl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/misc/bidwatcher/distinfo b/misc/bidwatcher/distinfo
index e74b21cfd2a..e84b2e7565b 100644
--- a/misc/bidwatcher/distinfo
+++ b/misc/bidwatcher/distinfo
@@ -1,5 +1,4 @@
-$NetBSD: distinfo,v 1.32 2004/09/21 07:43:10 tron Exp $
+$NetBSD: distinfo,v 1.33 2005/02/18 10:10:06 tron Exp $
-SHA1 (bidwatcher-1.3.16.tar.gz) = 7ca785f05d9856e60be2f7bbaaf72ad37135eca4
-Size (bidwatcher-1.3.16.tar.gz) = 186960 bytes
-SHA1 (patch-ac) = 785fdb2dc9ed8ce752a11b02f32b913451cf5533
+SHA1 (bidwatcher-1.3.17.tar.gz) = 226a181c1af3836820c7f9df5bfe15ef2d869da1
+Size (bidwatcher-1.3.17.tar.gz) = 193923 bytes
diff --git a/misc/bidwatcher/patches/patch-ac b/misc/bidwatcher/patches/patch-ac
deleted file mode 100644
index 319c70b82fe..00000000000
--- a/misc/bidwatcher/patches/patch-ac
+++ /dev/null
@@ -1,25 +0,0 @@
-$NetBSD: patch-ac,v 1.12 2004/09/21 07:43:10 tron Exp $
-
---- helpers.cpp.orig 2004-08-31 02:40:13.000000000 +0200
-+++ helpers.cpp 2004-09-21 09:40:39.000000000 +0200
-@@ -120,9 +120,7 @@
-
- bool strToFloat(const char *str, float &x)
- {
-- char *end = 0;
-- x = strtof(str, &end);
-- return end != str && *end == 0;
-+ return (sscanf(str, "%f", &x) == 1);
- }
-
- float calculateBidIncrement(float currentBid, const char *currency)
-@@ -580,7 +578,8 @@
- return PB_OUTBID;
- else if (strstr(Buff, "You have been outbid"))
- return PB_OUTBID;
-- else if (strstr(Buff, "Problem with bid amount"))
-+ else if (strstr(Buff, "Problem with bid amount") ||
-+ strstr(Buff, "Your bid must be at least"))
- return PB_BIDTOOLOW;
- else if (strstr(Buff, "Problem with quantity"))
- return PB_BADQUANTITY;