aboutsummaryrefslogtreecommitdiff
path: root/x11-fm
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-05-24 17:08:34 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-05-24 17:08:34 +0000
commit3fd81112f815f85a3ca6077c2eb135350e7b8b37 (patch)
tree8799855b21f124704a8333e2dfb408e1a7e4c892 /x11-fm
parent3556181fd0fa7352ca80c5291b221022bd549ada (diff)
downloadports-3fd81112f815f85a3ca6077c2eb135350e7b8b37.tar.gz
ports-3fd81112f815f85a3ca6077c2eb135350e7b8b37.zip
Notes
Diffstat (limited to 'x11-fm')
-rw-r--r--x11-fm/emelfm2/Makefile2
-rw-r--r--x11-fm/emelfm2/distinfo6
-rw-r--r--x11-fm/emelfm2/files/patch-e2_complete__path.c11
-rw-r--r--x11-fm/emelfm2/files/patch-plugins_e2p_crypt.c20
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: