31d076d045
Version 4.8.26 - Core * Support file names of any length (#4145) * Implement persistent command line buffer for subshell (bash >= 4, zsh and fish are supported) (#4114, #4124, #4126) * Implement shadows of dialog windows and menus (#4102) * Allow running clipboard commands if DISPLAY is not set (#4133) * Add support of "alacritty", "tmux", and "tmux-256color" terminals (#4149) - VFS * Support wim archive format (using wimtools (https://wimlib.net/)) (#4100) * Support pak archive format (using unar (https://theunarchiver.com/)) (#4130) - Editor * Add Swift syntax highlighting (MidnightCommander/mc#159) - Misc * Code cleanup (#4103, #4127, #4131) * ext.d/sound.sh: replace xmms with audacious (part of #4127) * mc.ext: improve handling of compressed content (#4128, #2117) * mc.ext: add support for OpenDocument flax xml formats: fodt, fods, fodp, fodg (#4157) * Filehighlight fodg, fodp, fods, fodt, odg files as documents * modarcon16 skin: make consistent with whitespaces (#4158) - Fixes * 0000 permissions are not preserved on copy/move file (#4155) * Chattr dialog doesn't work with mouse (#4104) * Wrong copy ETA displaying if "Follow links" option is set (#4101) * C-i ("change panel" shortcut) has no effect (#4107) * C-l ("refresh screen") and A-` ("switch screens") shortcuts have no effect (#4142, #4153) * Cancel of history or completion window marks input lines as modified (#4152) * Unexpected subshell execution at panel switch (#2110) * Lock up after pressing Tab in subshell (#2269) * tcsh: error: "The Commander can't change to the directory" (#4120) * vfs: extfs: cannot handle files with name started with dash or space (#4077) * vfs: hang on accessing files within a nested VFS for first 60 seconds (#4147) * vfs: lose content of the current directory on a mounted CIFS share (on Linux >= 5.1) (#3987)
65 lines
1.7 KiB
Makefile
65 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.121 2021/01/24 16:45:03 nia Exp $
|
|
|
|
DISTNAME= mc-4.8.26
|
|
CATEGORIES= sysutils
|
|
# Supports HTTPS, but cert is invalid...
|
|
MASTER_SITES= http://ftp.midnight-commander.org/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= cheusov@NetBSD.org
|
|
HOMEPAGE= https://www.midnight-commander.org/
|
|
COMMENT= User-friendly file manager and visual shell
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_TOOLS+= pkg-config unzip:run perl:build gmake
|
|
GNU_CONFIGURE= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
|
|
# don't want to pull in python
|
|
CHECK_INTERPRETER_SKIP+= libexec/mc/extfs.d/s3+
|
|
CHECK_INTERPRETER_SKIP+= libexec/mc/extfs.d/uc1541
|
|
|
|
# save copies of the configure arguments, harmless
|
|
CHECK_WRKREF_SKIP+= bin/mc
|
|
CHECK_WRKREF_SKIP+= bin/mcdiff
|
|
CHECK_WRKREF_SKIP+= bin/mcedit
|
|
CHECK_WRKREF_SKIP+= bin/mcview
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "Linux"
|
|
PLIST_SRC+= ${PKGDIR}/PLIST.cons.saver
|
|
.endif
|
|
|
|
CONFIGURE_ARGS.Darwin+= ac_cv_func_utimensat=no
|
|
# we need working e2fsprogs and gpm packages first
|
|
CONFIGURE_ARGS+= --disable-vfs-undelfs
|
|
CONFIGURE_ARGS+= --without-gpm-mouse
|
|
CONFIGURE_ARGS+= UNZIP=${TOOLS_PATH.unzip} ZIP=${TOOLS_PATH.zip}
|
|
|
|
PLIST_SRC+= ${PKGDIR}/PLIST
|
|
|
|
.include "options.mk"
|
|
|
|
EGDIR= ${PREFIX}/share/examples/mc
|
|
|
|
CONFFILES+= edit.indent.rc
|
|
CONFFILES+= filehighlight.ini
|
|
CONFFILES+= mc.default.keymap
|
|
CONFFILES+= mc.emacs.keymap
|
|
CONFFILES+= mc.ext
|
|
CONFFILES+= mc.keymap
|
|
CONFFILES+= mc.menu
|
|
CONFFILES+= mcedit.menu
|
|
CONFFILES+= sfs.ini
|
|
|
|
OWN_DIRS+= ${PKG_SYSCONFDIR}/mc
|
|
|
|
.for i in ${CONFFILES}
|
|
CONF_FILES+= ${EGDIR}/${i} ${PKG_SYSCONFDIR}/mc/${i}
|
|
.endfor
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.30.0
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|