diff options
author | Ade Lovett <ade@FreeBSD.org> | 2007-03-17 22:38:27 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2007-03-17 22:38:27 +0000 |
commit | 2110a9d81db27179dcf6ee9c306a7dab2ccc561a (patch) | |
tree | 60584f6a1c9c67f73d24bd6dc572d700792acb7a | |
parent | 9c86ca102fd60a3f4fce20655455c7c762087f20 (diff) | |
download | ports-2110a9d81db27179dcf6ee9c306a7dab2ccc561a.tar.gz ports-2110a9d81db27179dcf6ee9c306a7dab2ccc561a.zip |
The single NLS file (ru.po) is broken with the new gettext. Given the
absence of any updates to this port, make USE_GETTEXT a no-op for now.
Notes
Notes:
svn path=/head/; revision=187611
-rw-r--r-- | misc/mc-light/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/misc/mc-light/Makefile b/misc/mc-light/Makefile index 477862dfd711..629b0b98b36f 100644 --- a/misc/mc-light/Makefile +++ b/misc/mc-light/Makefile @@ -19,7 +19,7 @@ RUN_DEPENDS+= gawk:${PORTSDIR}/lang/gawk CONFLICTS= mc-4.6* -OPTIONS= NLS "Enable gettext support" on \ +OPTIONS= NLS "Enable gettext support (broken)" on \ SUBSHELL "Build with subshell support (only for bash!)" off \ MC_IN_MC "Allow run mc inside mc (useful for mcedit)" off @@ -43,13 +43,14 @@ MAN8= mcserv.8 CONFIGURE_ARGS+=--without-subshell .endif -.if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" -.else +# XXX: ru.po is broken with gettext-0.16.1 +# XXX: .if !defined(WITHOUT_NLS) +# XXX: USE_GETTEXT= yes +# XXX: PLIST_SUB+= NLS="" +# XXX: .else CONFIGURE_ARGS+=--disable-nls PLIST_SUB+= NLS="@comment " -.endif +# XXX: .endif .if defined(WITH_MC_IN_MC) CONFIGURE_ENV+= CPPFLAGS=-DMC_IN_MC_ALLOWED |