summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--misc/bidwatcher/Makefile18
-rw-r--r--misc/bidwatcher/distinfo4
-rw-r--r--misc/bidwatcher/files/patch-aa16
3 files changed, 4 insertions, 34 deletions
diff --git a/misc/bidwatcher/Makefile b/misc/bidwatcher/Makefile
index 478135fe91cf..a28dffd40990 100644
--- a/misc/bidwatcher/Makefile
+++ b/misc/bidwatcher/Makefile
@@ -7,16 +7,12 @@
#
PORTNAME= bidwatcher
-PORTVERSION= 1.3.13
+PORTVERSION= 1.3.15
PORTREVISION?= 0
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
-PATCH_SITES= http://sourceforge.net/tracker/download.php?group_id=2973&atid=302973&file_id=63934&aid=820963/
-PATCHFILES= add_auction_by_url_also.patch
-PATCH_DIST_STRIP= -p1
-
MAINTAINER= mph@FreeBSD.org
COMMENT= Bid monitor for eBay
@@ -26,16 +22,6 @@ GNU_CONFIGURE= YES
MAN1= bidwatcher.1
-CFLAGS+= -UHAVE_GMTIME
-
-# The software includes a "fudge factor" for the snipe timer; by default
-# it snipes 5 minutes (300 seconds) before the time that you tell it to.
-# This fudge factor is only used in certain cases where the software
-# cannot synchronize its time to eBay (for some reason). To change the
-# "fudge factor" to a different value, set TIMEFUDGE to the desired
-# number of seconds.
-
-TIMEFUDGE?= 300
-CFLAGS+= -DHAVE_TM_ZONE -DTIMEFUDGE=${TIMEFUDGE}
+CFLAGS+= -UHAVE_GMTIME -DHAVE_TM_ZONE
.include <bsd.port.mk>
diff --git a/misc/bidwatcher/distinfo b/misc/bidwatcher/distinfo
index 3bbfe49e9b1c..ea76e24b646b 100644
--- a/misc/bidwatcher/distinfo
+++ b/misc/bidwatcher/distinfo
@@ -1,4 +1,4 @@
-MD5 (bidwatcher-1.3.13.tar.gz) = 3997ea4a06bf8e2e010c0f7124f6562c
-SIZE (bidwatcher-1.3.13.tar.gz) = 177634
+MD5 (bidwatcher-1.3.15.tar.gz) = 50018b9d18b062158418603fca2fcc89
+SIZE (bidwatcher-1.3.15.tar.gz) = 178532
MD5 (add_auction_by_url_also.patch) = 24447e7c20c98d8002805fbbd9e5603a
SIZE (add_auction_by_url_also.patch) = 668
diff --git a/misc/bidwatcher/files/patch-aa b/misc/bidwatcher/files/patch-aa
deleted file mode 100644
index 848fd257a6cb..000000000000
--- a/misc/bidwatcher/files/patch-aa
+++ /dev/null
@@ -1,16 +0,0 @@
---- bidwatcher.cpp.orig Tue Sep 17 09:42:59 2002
-+++ bidwatcher.cpp Tue Sep 17 09:44:43 2002
-@@ -4006,8 +4006,12 @@
-
- // ebay is GMT+8hrs, but add a 5 minute fudge so that we bid
- // early to be safe
-+
-+ // In the era of accurate timekeeping, it's not clear that this is
-+ // necessary, so we allow TIMEFUDGE to be set when building the
-+ // FreeBSD port. -mph
-
-- timeDiff += 5*60;
-+ timeDiff += TIMEFUDGE;
-
- showError("WARNING: Couldn't reach eBay, using local clock."
- " Do not depend on times or sniping.");