diff options
author | miwi <miwi@FreeBSD.org> | 2008-05-25 01:08:34 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-05-25 01:08:34 +0800 |
commit | a79b889677fc3fdf7fe8454803d39d6fcfbf238d (patch) | |
tree | 2877842be67ec1c4b42023774649e4ecb62f615a /x11-fm | |
parent | c3283b2297ffcca9539161eefd16676800ba0e08 (diff) | |
download | freebsd-ports-gnome-a79b889677fc3fdf7fe8454803d39d6fcfbf238d.tar.gz freebsd-ports-gnome-a79b889677fc3fdf7fe8454803d39d6fcfbf238d.tar.zst freebsd-ports-gnome-a79b889677fc3fdf7fe8454803d39d6fcfbf238d.zip |
- Update to 0.4.1
PR: 123915
Submitted by: Marcus von Appen <mva@sysfault.org> (maintainer)
Diffstat (limited to 'x11-fm')
-rw-r--r-- | x11-fm/emelfm2/Makefile | 2 | ||||
-rw-r--r-- | x11-fm/emelfm2/distinfo | 6 | ||||
-rw-r--r-- | x11-fm/emelfm2/files/patch-e2_complete__path.c | 11 | ||||
-rw-r--r-- | x11-fm/emelfm2/files/patch-plugins_e2p_crypt.c | 20 |
4 files changed, 4 insertions, 35 deletions
diff --git a/x11-fm/emelfm2/Makefile b/x11-fm/emelfm2/Makefile index e713c04784e6..cab2b9e93255 100644 --- a/x11-fm/emelfm2/Makefile +++ b/x11-fm/emelfm2/Makefile @@ -6,7 +6,7 @@ # PORTNAME= emelfm2 -PORTVERSION= 0.4 +PORTVERSION= 0.4.1 CATEGORIES= x11-fm MASTER_SITES= http://emelfm2.net/rel/ diff --git a/x11-fm/emelfm2/distinfo b/x11-fm/emelfm2/distinfo index 7e789e86c15f..1618a5ca6d66 100644 --- a/x11-fm/emelfm2/distinfo +++ b/x11-fm/emelfm2/distinfo @@ -1,3 +1,3 @@ -MD5 (emelfm2-0.4.tar.gz) = 0242f340b642d7de2c09ccc8963e3135 -SHA256 (emelfm2-0.4.tar.gz) = 074be06f816460b2467cbad6e54beec39e110940942fc98df6225b7b05c4467c -SIZE (emelfm2-0.4.tar.gz) = 1143199 +MD5 (emelfm2-0.4.1.tar.gz) = 215d0a872350b4bdb22de940a8f2a4af +SHA256 (emelfm2-0.4.1.tar.gz) = 074b5003ea0d71699716c7b0a3d16e37f96c77e8df284957ca1112e4d1b455eb +SIZE (emelfm2-0.4.1.tar.gz) = 1149166 diff --git a/x11-fm/emelfm2/files/patch-e2_complete__path.c b/x11-fm/emelfm2/files/patch-e2_complete__path.c deleted file mode 100644 index 8a9ead530892..000000000000 --- a/x11-fm/emelfm2/files/patch-e2_complete__path.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/command/complete/e2_complete__path.c 2008-03-22 03:58:43.000000000 +0100 -+++ src/command/complete/e2_complete__path.c 2008-04-03 15:15:09.000000000 +0200 -@@ -147,7 +147,7 @@ - { - gchar *p1, *p2, *localpath; - p1 = g_utf8_next_char (strrchr (word, G_DIR_SEPARATOR)); //the 'real' word to complete -- p2 = strndup (word, p1 - word); //prefix for matches -+ p2 = g_strndup (word, p1 - word); //prefix for matches - if (word[0] == G_DIR_SEPARATOR) - { //word is an absolute path string - localpath = F_FILENAME_TO_LOCALE (p2); diff --git a/x11-fm/emelfm2/files/patch-plugins_e2p_crypt.c b/x11-fm/emelfm2/files/patch-plugins_e2p_crypt.c deleted file mode 100644 index 09917a77958a..000000000000 --- a/x11-fm/emelfm2/files/patch-plugins_e2p_crypt.c +++ /dev/null @@ -1,20 +0,0 @@ ---- plugins/e2p_crypt.c.orig 2007-11-22 22:23:11.000000000 +0100 -+++ plugins/e2p_crypt.c 2008-04-03 15:45:48.000000000 +0200 -@@ -1545,7 +1545,7 @@ - { - sep = strchr (execpath, ':'); //ascii scan ok - if (sep != NULL) -- execpath = strndup (execpath, sep-execpath); -+ execpath = g_strndup (execpath, sep-execpath); - //FIXME preserve execpath so that later members can be used - } - #ifdef E2_VFS -@@ -1849,7 +1849,7 @@ - } - } - -- fdatasync (fdesc); -+ fsync (fdesc); - - retval = TRUE; - cleanup: |