summaryrefslogtreecommitdiffstats
path: root/mail/sylpheed-claws
diff options
context:
space:
mode:
authornetchild <netchild@FreeBSD.org>2006-06-20 19:13:12 +0000
committernetchild <netchild@FreeBSD.org>2006-06-20 19:13:12 +0000
commitfe5bba45bcffe0d351a16a13bfe645f573b8ed77 (patch)
tree2f66735ed20645fd8dc1d252793218549c2515f7 /mail/sylpheed-claws
parent0456059c7a036599b2ff330a1f6639164146222b (diff)
downloadFreeBSD-ports-fe5bba45bcffe0d351a16a13bfe645f573b8ed77.zip
FreeBSD-ports-fe5bba45bcffe0d351a16a13bfe645f573b8ed77.tar.gz
Update to 2.3.1.
Diffstat (limited to 'mail/sylpheed-claws')
-rw-r--r--mail/sylpheed-claws/Makefile2
-rw-r--r--mail/sylpheed-claws/distinfo6
-rw-r--r--mail/sylpheed-claws/files/patch-src-mbox.c62
3 files changed, 4 insertions, 66 deletions
diff --git a/mail/sylpheed-claws/Makefile b/mail/sylpheed-claws/Makefile
index 24c3831..8e8b7a6 100644
--- a/mail/sylpheed-claws/Makefile
+++ b/mail/sylpheed-claws/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= sylpheed-claws
-PORTVERSION= 2.3.0
+PORTVERSION= 2.3.1
CATEGORIES= mail news ipv6
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= sylpheed-claws
diff --git a/mail/sylpheed-claws/distinfo b/mail/sylpheed-claws/distinfo
index d1b4339..b2ae18e 100644
--- a/mail/sylpheed-claws/distinfo
+++ b/mail/sylpheed-claws/distinfo
@@ -1,6 +1,6 @@
-MD5 (sylpheed-claws-2.3.0.tar.bz2) = a59b1f1736e89918c648794c94120a8e
-SHA256 (sylpheed-claws-2.3.0.tar.bz2) = af3f9bc9150caaf6ef82d6dc6e5ab9d5091822af10f4e539091a2ca9c60dd775
-SIZE (sylpheed-claws-2.3.0.tar.bz2) = 4432347
+MD5 (sylpheed-claws-2.3.1.tar.bz2) = 08e8fe1f3466d146b499d128f1445ba6
+SHA256 (sylpheed-claws-2.3.1.tar.bz2) = 8fc36593b7543083d51a2d30408ccd268b0e071784b69c472e31e7293676b4bf
+SIZE (sylpheed-claws-2.3.1.tar.bz2) = 4432975
MD5 (sylpheed-iconset-20040929.tar.gz) = d72cf03bf3d13cf9e2785eaca3807707
SHA256 (sylpheed-iconset-20040929.tar.gz) = 11e791cf7187b5f3ac5a5ab5f0144d9ea8701bbc6182b30b35c30c2cc50e5210
SIZE (sylpheed-iconset-20040929.tar.gz) = 1298891
diff --git a/mail/sylpheed-claws/files/patch-src-mbox.c b/mail/sylpheed-claws/files/patch-src-mbox.c
deleted file mode 100644
index a209190..0000000
--- a/mail/sylpheed-claws/files/patch-src-mbox.c
+++ /dev/null
@@ -1,62 +0,0 @@
-Index: src/mbox.c
-===================================================================
-RCS file: /pack/anoncvs/sylpheedclaws/sylpheed-claws/src/mbox.c,v
-retrieving revision 1.28.2.17
-diff -u -u -r1.28.2.17 mbox.c
---- mbox.c 2006/06/12 06:30:30 1.28.2.17
-+++ mbox.c 2006/06/15 14:57:57
-@@ -278,6 +278,7 @@
- g_free(lockfile);
- } else if (type == LOCK_FLOCK) {
- gint lockfd;
-+ gboolean fcntled = FALSE;
- #if HAVE_FCNTL_H
- struct flock fl;
- fl.l_type = F_WRLCK;
-@@ -299,15 +300,17 @@
- if (fcntl(lockfd, F_SETLK, &fl) == -1) {
- g_warning("can't fnctl %s (%s)", base, strerror(errno));
- return -1;
-+ } else {
-+ fcntled = TRUE;
- }
- #endif
-
- #if HAVE_FLOCK
-- if (flock(lockfd, LOCK_EX|LOCK_NB) < 0) {
-+ if (flock(lockfd, LOCK_EX|LOCK_NB) < 0 && !fcntled) {
- perror("flock");
- #else
- #if HAVE_LOCKF
-- if (lockf(lockfd, F_TLOCK, 0) < 0) {
-+ if (lockf(lockfd, F_TLOCK, 0) < 0 && !fcntled) {
- perror("lockf");
- #else
- {
-@@ -345,6 +348,7 @@
-
- return 0;
- } else if (type == LOCK_FLOCK) {
-+ gboolean fcntled = FALSE;
- #if HAVE_FCNTL_H
- struct flock fl;
- fl.l_type = F_UNLCK;
-@@ -355,14 +359,16 @@
- if (fcntl(fd, F_SETLK, &fl) == -1) {
- g_warning("can't fnctl %s", base);
- return -1;
-+ } else {
-+ fcntled = TRUE;
- }
- #endif
- #if HAVE_FLOCK
-- if (flock(fd, LOCK_UN) < 0) {
-+ if (flock(fd, LOCK_UN) < 0 && !fcntled) {
- perror("flock");
- #else
- #if HAVE_LOCKF
-- if (lockf(fd, F_ULOCK, 0) < 0) {
-+ if (lockf(fd, F_ULOCK, 0) < 0 && !fcntled) {
- perror("lockf");
- #else
- {
OpenPOWER on IntegriCloud