Apply the version fixup in order to solve the following build error on systems not using exactly gettext version 0.18: make[6]: Entering directory '.../build_dir/target-mips_34kc_musl-1.1.14/mc-4.8.17/po' *** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version 0.18 but the autoconf macros are from gettext version 0.19 The fixup will ensure that embedded macro versions are replaced with the version of the staged gettext executable in ./staging_dir/host/bin Signed-off-by: Jo-Philipp Wich <jo@mein.io>
126 lines
3 KiB
Makefile
126 lines
3 KiB
Makefile
#
|
|
# Copyright (C) 2006-2016 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=mc
|
|
PKG_VERSION:=4.8.17
|
|
PKG_RELEASE:=3
|
|
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>
|
|
PKG_LICENSE:=GPL-3.0+
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=http://ftp.midnight-commander.org/
|
|
PKG_SHA256SUM:=0447bdddc0baa81866e66f50f9a545d29d6eebb68b0ab46c98d8fddd2bf4e44d
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_FIXUP:=autoreconf gettext-version
|
|
|
|
PKG_CONFIG_DEPENDS := \
|
|
CONFIG_PACKAGE_MC \
|
|
CONFIG_MC_DIFFVIEWER \
|
|
CONFIG_MC_EDITOR \
|
|
CONFIG_MC_SUBSHELL \
|
|
CONFIG_MC_LARGEFILE \
|
|
CONFIG_MC_BACKGROUND \
|
|
CONFIG_MC_CHARSET \
|
|
CONFIG_MC_VFS
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
define Package/$(PKG_NAME)
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+glib2 +libncurses +libmount +MC_VFS:libssh2 $(LIBRPC_DEPENDS) $(ICONV_DEPENDS)
|
|
TITLE:=Midnight Commander - a powerful visual file manager
|
|
URL:=http://www.midnight-commander.org/
|
|
MENU:=1
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/config
|
|
source "$(SOURCE)/Config.in"
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/description
|
|
GNU Midnight Commander is a visual file manager.
|
|
It's a feature rich full-screen text mode application that allows you to copy,
|
|
move and delete files and whole directory trees, search for files and run commands in the subshell.
|
|
Internal viewer and editor are included as well.
|
|
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-doxygen-doc \
|
|
--with-homedir=/etc/mc \
|
|
--with-included-gettext \
|
|
--with-screen=ncurses \
|
|
--without-gpm-mouse \
|
|
--without-x \
|
|
|
|
CONFIGURE_VARS += \
|
|
ac_cv_search_addwstr=no \
|
|
|
|
ifeq ($(CONFIG_MC_DIFFVIEWER),)
|
|
CONFIGURE_ARGS += \
|
|
--without-diff-viewer
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MC_EDITOR),)
|
|
CONFIGURE_ARGS += \
|
|
--without-internal-edit
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MC_SUBSHELL),)
|
|
CONFIGURE_ARGS += \
|
|
--without-subshell
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MC_LARGEFILE),)
|
|
CONFIGURE_ARGS += \
|
|
--disable-largefile
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MC_BACKGROUND),)
|
|
CONFIGURE_ARGS += \
|
|
--disable-background
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MC_CHARSET),)
|
|
CONFIGURE_ARGS += \
|
|
--disable-charset
|
|
endif
|
|
|
|
ifeq ($(CONFIG_MC_VFS),)
|
|
CONFIGURE_ARGS += \
|
|
--disable-vfs
|
|
endif
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/mc $(1)/usr/bin
|
|
$(INSTALL_DIR) $(1)/etc/mc
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/misc/mc.charsets $(1)/etc/mc
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/misc/mc.default.keymap $(1)/etc/mc
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/misc/mc.ext $(1)/etc/mc
|
|
ifeq ($(CONFIG_MC_DIFFVIEWER),y)
|
|
ln -sf mc $(1)/usr/bin/mcdiff
|
|
endif
|
|
ifeq ($(CONFIG_MC_EDITOR),y)
|
|
ln -sf mc $(1)/usr/bin/mcedit
|
|
endif
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/misc/mc.menu $(1)/etc/mc
|
|
$(INSTALL_DIR) $(1)/etc/mc/skins
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/misc/skins/default.ini $(1)/etc/mc/skins
|
|
$(INSTALL_DIR) $(1)/etc/mc/mcedit/Syntax
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/conffiles
|
|
/etc/mc/mc.menu
|
|
/etc/mc/skins/default.ini
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|