Index: misc/mc/Makefile =================================================================== --- misc/mc/Makefile (revision 411247) +++ misc/mc/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= mc PORTVERSION= 4.8.16 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc shells MASTER_SITES= http://ftp.midnight-commander.org/ \ http://ftp.osuosl.org/pub/midnightcommander/ \ Index: misc/mc/files/patch-upstreamticket2742-detect-csh-as-tcsh-by-name.patch =================================================================== --- misc/mc/files/patch-upstreamticket2742-detect-csh-as-tcsh-by-name.patch (nonexistent) +++ misc/mc/files/patch-upstreamticket2742-detect-csh-as-tcsh-by-name.patch (working copy) @@ -0,0 +1,15 @@ +--- lib/shell.c.orig ++++ lib/shell.c +@@ -162,6 +162,12 @@ mc_shell_recognize_and_fill_type (mc_shell_t * mc_shell) + mc_shell->type = SHELL_TCSH; + mc_shell->name = "tcsh"; + } ++ else if (strstr (mc_shell->path, "/csh") != NULL ++ || strstr (mc_shell->real_path, "/csh") != NULL) ++ { ++ mc_shell->type = SHELL_TCSH; ++ mc_shell->name = "csh"; ++ } + else if (strstr (mc_shell->path, "/fish") != NULL + || strstr (mc_shell->real_path, "/fish") != NULL) + { Property changes on: misc/mc/files/patch-upstreamticket2742-detect-csh-as-tcsh-by-name.patch ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property