Skip to content
Snippets Groups Projects
Commit a5ade24b authored by Alexey Dokuchaev's avatar Alexey Dokuchaev
Browse files

misc/mc: drop needless run-time dependencies on Aspell and Xlib

Yury V. Zaytsev points out that for X11 and Aspell support, header
files <X11/Xlib.h> and <aspell.h> are only needed during the build,
while their corresponding libraries would be loaded dynamically if
available; if not, mc(1) would still work fine, just without those
features.  The source code and ldd(1) output confirm his findings:

  % cd $WRKDIR/mc-4.8.30 && grep -R -A1 g_module_build_path *
  lib/tty/x11conn.c:  x11_module_fname = g_module_build_path (NULL, "X11");
  lib/tty/x11conn.c-  x11_module = g_module_open (x11_module_fname, G_MODULE_BIND_LAZY);
  --
  src/editor/spell.c: spell_module_fname = g_module_build_path (NULL, "libaspell");
  src/editor/spell.c- spell_module = g_module_open (spell_module_fname, G_MODULE_BIND_LAZY);

This allows to enable Aspell support by default and drop X11-less
slave port now that both of these dependencies are build-time only
yet still can be completely disabled via options.

PR:	269120
parent 7fa65791
No related branches found
No related tags found
No related merge requests found
...@@ -2933,3 +2933,4 @@ net-im/libaccounts-qt5|net-im/libaccounts-qt|2024-01-05|Renamed to support flavo ...@@ -2933,3 +2933,4 @@ net-im/libaccounts-qt5|net-im/libaccounts-qt|2024-01-05|Renamed to support flavo
devel/py-pygithub|devel/py-PyGithub|2024-01-06|Rename port match upstream devel/py-pygithub|devel/py-PyGithub|2024-01-06|Rename port match upstream
devel/freebsd-gcc9||2024-01-09|No longer able to build base system, use GCC 12 or later instead devel/freebsd-gcc9||2024-01-09|No longer able to build base system, use GCC 12 or later instead
net/downzemall|net/arrowdl|2024-01-11|Project was renamed upstream net/downzemall|net/arrowdl|2024-01-11|Project was renamed upstream
misc/mc-nox11|misc/mc|2023-01-15|No longer useful (misc/mc does not require Xlib at runtime)
...@@ -259,7 +259,6 @@ ...@@ -259,7 +259,6 @@
SUBDIR += mate-user-guide SUBDIR += mate-user-guide
SUBDIR += mbuffer SUBDIR += mbuffer
SUBDIR += mc SUBDIR += mc
SUBDIR += mc-nox11
SUBDIR += mdp SUBDIR += mdp
SUBDIR += meshoptimizer SUBDIR += meshoptimizer
SUBDIR += metalink-checker SUBDIR += metalink-checker
......
MASTERDIR= ${.CURDIR}/../mc
OPTIONS_EXCLUDE= X11
.include "${MASTERDIR}/Makefile"
PORTNAME= mc PORTNAME= mc
PORTVERSION= 4.8.30 PORTVERSION= 4.8.30
PORTREVISION= 1
CATEGORIES= misc shells CATEGORIES= misc shells
MASTER_SITES= http://ftp.midnight-commander.org/ \ MASTER_SITES= http://ftp.midnight-commander.org/ \
https://ftp.osuosl.org/pub/midnightcommander/ https://ftp.osuosl.org/pub/midnightcommander/
...@@ -29,7 +30,7 @@ CONFIGURE_ENV= ZIP=${LOCALBASE}/bin/zip UNZIP=${UNZIP_NATIVE_CMD} ...@@ -29,7 +30,7 @@ CONFIGURE_ENV= ZIP=${LOCALBASE}/bin/zip UNZIP=${UNZIP_NATIVE_CMD}
PORTDOCS= AUTHORS FAQ HACKING MAINTAINERS NEWS README *.txt PORTDOCS= AUTHORS FAQ HACKING MAINTAINERS NEWS README *.txt
OPTIONS_DEFINE= ASPELL DOCS EDITOR EXTATTR ICONV NLS PCRE2 SFTP SUBSHELL X11 OPTIONS_DEFINE= ASPELL DOCS EDITOR EXTATTR ICONV NLS PCRE2 SFTP SUBSHELL X11
OPTIONS_DEFAULT= EDITOR ICONV SFTP SLANG SUBSHELL X11 OPTIONS_DEFAULT= ASPELL EDITOR ICONV SFTP SLANG SUBSHELL X11
OPTIONS_SINGLE= SCREEN OPTIONS_SINGLE= SCREEN
OPTIONS_SINGLE_SCREEN= SLANG NCURSES OPTIONS_SINGLE_SCREEN= SLANG NCURSES
OPTIONS_SUB= yes OPTIONS_SUB= yes
...@@ -41,8 +42,9 @@ PCRE2_DESC= Use PCRE2 as low-level search engine ...@@ -41,8 +42,9 @@ PCRE2_DESC= Use PCRE2 as low-level search engine
SCREEN_DESC= Screen library SCREEN_DESC= Screen library
SFTP_DESC= Support for SFTP (via libssh) SFTP_DESC= Support for SFTP (via libssh)
SUBSHELL_DESC= Build with subshell support SUBSHELL_DESC= Build with subshell support
X11_DESC= X11 events support (if available)
ASPELL_LIB_DEPENDS= libaspell.so:textproc/aspell ASPELL_BUILD_DEPENDS= ${LOCALBASE}/include/aspell.h:textproc/aspell
ASPELL_CONFIGURE_ENABLE=aspell ASPELL_CONFIGURE_ENABLE=aspell
EDITOR_CONFIGURE_WITH= internal-edit EDITOR_CONFIGURE_WITH= internal-edit
...@@ -71,11 +73,8 @@ SLANG_CONFIGURE_ON= --with-screen=slang ...@@ -71,11 +73,8 @@ SLANG_CONFIGURE_ON= --with-screen=slang
SUBSHELL_CONFIGURE_WITH=subshell SUBSHELL_CONFIGURE_WITH=subshell
SUBSHELL_SUB_FILES= pkg-message SUBSHELL_SUB_FILES= pkg-message
X11_BUILD_DEPENDS= ${LOCALBASE}/include/X11/Xlib.h:x11/libX11
X11_CONFIGURE_WITH= x X11_CONFIGURE_WITH= x
X11_USES= xorg
X11_USE= xorg=x11,xext
X11_VARS= CONFLICTS_INSTALL=mc-nox11
X11_VARS_OFF= CONFLICTS_INSTALL=mc PKGNAMESUFFIX=-nox11
post-patch: post-patch:
@${REINPLACE_CMD} -e 's|clang\*)|*)|' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|clang\*)|*)|' ${WRKSRC}/configure
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment