9b6f425106
Version 4.8.21 - Core * Cancel Chmod/Chown/Advanced chown operation for large group of files when operation is not permitted (#3850) * Mouse support in the "Advanced chown" dialog window (#3148) * File highlighting by extension is case insensitive by default (#1620) * Safe file overwrite (#3913) - VFS * Support zstd compression format (#3906) - Editor * Syntax: * Rust support (#3884) * JavaScript modules support (#3890) * Improve Markdown support (#3893) - Misc * Add JavaScript module support to `filehighlight.ini` (MidnightCommander/mc#132) * Add Excel xlsx file format support to `mc.ext.in` (MidnightCommander/mc#135) * i18n of argument type names in --help blocks (#3879) * Code cleanup: (#3857, #3914) - Fixes * Fail to link to ncurses built as two libraries: ncurses+tinfo (#3880) * Garbage in displaying of summary of file sizes for selected files (#3883) * "Compute totals" unnecessarily done for moves (#3149, #3908) * mc.ext: allow Java class files to be viewed even if JAD isn't on PATH (MidnightCommander/mc#134) * mcedit: broken extended key mode (#3897) * mcedit doesn't save all opened files (#3898) * extfs: sftps: -31 SFTP Protocol Error when transferring file (#3406) * extfs: rpm: truncated script content in the viewer (#3865) * extfs: rpm helper misses CONFLICTS field (#3789)
63 lines
1.6 KiB
Makefile
63 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.110 2018/06/17 08:21:58 wiz Exp $
|
|
|
|
DISTNAME= mc-4.8.21
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.midnight-commander.org/downloads/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= cheusov@NetBSD.org
|
|
HOMEPAGE= http://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
|
|
|
|
# we need working e2fsprogs and gpm packages first
|
|
CONFIGURE_ARGS+= --without-ext2undel
|
|
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.26.0
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|