diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-09-21 11:37:20 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-09-21 11:37:20 +0000 |
commit | ff229c1119267f8ab20f449f0b6913ab2f7068bb (patch) | |
tree | 927e24a455baf6c4138192fac6a8f9eea7f6f1cf /x11-fm | |
parent | 279a1d6cef350fa63c1f2591fd35eaed308cc289 (diff) | |
download | ports-ff229c1119267f8ab20f449f0b6913ab2f7068bb.tar.gz ports-ff229c1119267f8ab20f449f0b6913ab2f7068bb.zip |
Notes
Diffstat (limited to 'x11-fm')
-rw-r--r-- | x11-fm/gnome-commander2/Makefile | 3 | ||||
-rw-r--r-- | x11-fm/gnome-commander2/distinfo | 6 | ||||
-rw-r--r-- | x11-fm/gnome-commander2/files/patch-src-owner.cc | 17 |
3 files changed, 4 insertions, 22 deletions
diff --git a/x11-fm/gnome-commander2/Makefile b/x11-fm/gnome-commander2/Makefile index 2af193a619b9..9e3ae4a1cf6b 100644 --- a/x11-fm/gnome-commander2/Makefile +++ b/x11-fm/gnome-commander2/Makefile @@ -6,8 +6,7 @@ # PORTNAME= gnome-commander -PORTVERSION= 1.2.8 -PORTREVISION= 1 +PORTVERSION= 1.2.8.1 PORTEPOCH= 1 CATEGORIES= x11-fm gnome MASTER_SITES= GNOME diff --git a/x11-fm/gnome-commander2/distinfo b/x11-fm/gnome-commander2/distinfo index dcde0bc00151..142bd909a79d 100644 --- a/x11-fm/gnome-commander2/distinfo +++ b/x11-fm/gnome-commander2/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/gnome-commander-1.2.8.tar.bz2) = 5279bb3825efec3789932663e92fc8d2 -SHA256 (gnome2/gnome-commander-1.2.8.tar.bz2) = 5f7212ad315f46f3887af8bb624a777de7cc58105a01c23790d014f780934a01 -SIZE (gnome2/gnome-commander-1.2.8.tar.bz2) = 3447639 +MD5 (gnome2/gnome-commander-1.2.8.1.tar.bz2) = bb29604eef72e66554151b61db35100f +SHA256 (gnome2/gnome-commander-1.2.8.1.tar.bz2) = 4323cb416b69482272169ffe4deea3a7e8d266f1718f6bd38d22dfb377326778 +SIZE (gnome2/gnome-commander-1.2.8.1.tar.bz2) = 3436627 diff --git a/x11-fm/gnome-commander2/files/patch-src-owner.cc b/x11-fm/gnome-commander2/files/patch-src-owner.cc deleted file mode 100644 index b125bfe47565..000000000000 --- a/x11-fm/gnome-commander2/files/patch-src-owner.cc +++ /dev/null @@ -1,17 +0,0 @@ ---- src/owner.cc.orig 2009-06-29 06:57:46.000000000 -0300 -+++ src/owner.cc 2009-08-10 20:51:05.000000000 -0300 -@@ -62,7 +62,13 @@ - - if (!buff) - { -- buffsize = max(sysconf(_SC_GETPW_R_SIZE_MAX), sysconf(_SC_GETGR_R_SIZE_MAX)); -+ long int pw_size = sysconf(_SC_GETPW_R_SIZE_MAX); -+ long int gr_size = sysconf(_SC_GETGR_R_SIZE_MAX); -+ -+ if (pw_size==-1) pw_size = 4096; // `sysconf' does not support _SC_GETPW_R_SIZE_MAX. Try a moderate value. -+ if (gr_size==-1) gr_size = 4096; // `sysconf' does not support _SC_GETGR_R_SIZE_MAX. Try a moderate value. -+ -+ buffsize = max(pw_size, gr_size); - buff = g_new0 (char, buffsize); - } - |