aboutsummaryrefslogtreecommitdiffstats
path: root/japanese
diff options
context:
space:
mode:
authorscheidell <scheidell@FreeBSD.org>2012-08-28 19:54:03 +0800
committerscheidell <scheidell@FreeBSD.org>2012-08-28 19:54:03 +0800
commit22413140b5942fd9db9f904b560f0496c6e94d83 (patch)
treebe26cb358bb0ce68d9f60f04b358d50070a236fa /japanese
parent2a382c9580437ad89a709c9701f9e61c353f9006 (diff)
downloadfreebsd-ports-gnome-22413140b5942fd9db9f904b560f0496c6e94d83.tar.gz
freebsd-ports-gnome-22413140b5942fd9db9f904b560f0496c6e94d83.tar.zst
freebsd-ports-gnome-22413140b5942fd9db9f904b560f0496c6e94d83.zip
- Update to 2.8.5
PR: ports/171100 Submitted by: Takashi Kato <townwear@gmail.com> (maintainer)
Diffstat (limited to 'japanese')
-rw-r--r--japanese/jd/Makefile7
-rw-r--r--japanese/jd/distinfo4
-rw-r--r--japanese/jd/files/patch-cache.cpp23
3 files changed, 5 insertions, 29 deletions
diff --git a/japanese/jd/Makefile b/japanese/jd/Makefile
index b6ea41a715be..f0e80e60722d 100644
--- a/japanese/jd/Makefile
+++ b/japanese/jd/Makefile
@@ -6,12 +6,11 @@
#
PORTNAME= jd
-PORTVERSION= 2.8.2
-PORTREVISION= 1
+PORTVERSION= 2.8.5
CATEGORIES= japanese www
MASTER_SITES= SFJP
-MASTER_SITE_SUBDIR= jd4linux/52863
-DISTNAME= ${PORTNAME}-${PORTVERSION}-110808
+MASTER_SITE_SUBDIR= jd4linux/56721
+DISTNAME= ${PORTNAME}-${PORTVERSION}-120826
EXTRACT_SUFX= .tgz
MAINTAINER= townwear@gmail.com
diff --git a/japanese/jd/distinfo b/japanese/jd/distinfo
index e8bafba4d345..88671cb4f6a7 100644
--- a/japanese/jd/distinfo
+++ b/japanese/jd/distinfo
@@ -1,2 +1,2 @@
-SHA256 (jd-2.8.2-110808.tgz) = b7187d5993da8f851f951a3d865a1715ffec9e6de7866633a5cf9d0ce7236c8e
-SIZE (jd-2.8.2-110808.tgz) = 782129
+SHA256 (jd-2.8.5-120826.tgz) = 494a190ae64c222cd7080cb121f23043bd231829572cd685258185a9b5dfff32
+SIZE (jd-2.8.5-120826.tgz) = 784657
diff --git a/japanese/jd/files/patch-cache.cpp b/japanese/jd/files/patch-cache.cpp
deleted file mode 100644
index 94e0a6ec9292..000000000000
--- a/japanese/jd/files/patch-cache.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/cache.cpp.orig 2011-07-27 21:29:16.000000000 +0900
-+++ src/cache.cpp 2011-08-23 22:52:30.000000000 +0900
-@@ -816,14 +816,14 @@
- if( stat( to_locale_cstr( path ), &buf_stat ) != 0 ) return false;
- if( S_ISREG( buf_stat.st_mode ) ){
-
-- struct timespec ts[2];
-+ struct timeval tv[2];
-
-- ts[0].tv_sec = buf_stat.st_atime;
-- ts[0].tv_nsec = buf_stat.st_atim.tv_nsec;
-- ts[1].tv_sec = mtime;
-- ts[1].tv_nsec = 0;
-+ tv[0].tv_sec = buf_stat.st_atime;
-+ tv[0].tv_usec = buf_stat.st_atimespec.tv_nsec / 1000;
-+ tv[1].tv_sec = mtime;
-+ tv[1].tv_usec = 0;
-
-- if( ! utimensat( AT_FDCWD, to_locale_cstr( path ), ts, AT_SYMLINK_NOFOLLOW ) ) return true;
-+ if( ! lutimes(to_locale_cstr( path ), tv ) ) return true;
- }
-
- return false; \ No newline at end of file