diff options
author | ade <ade@FreeBSD.org> | 2007-03-18 06:38:27 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2007-03-18 06:38:27 +0800 |
commit | 39d689d786cc6faa6db1d650afb18f177ac18a70 (patch) | |
tree | f9a6a27e7789adbd15c0537043f1fcc62a8f6aa3 /misc | |
parent | 4f4710c4c010cb62fad8007e4844294e2485b814 (diff) | |
download | freebsd-ports-gnome-39d689d786cc6faa6db1d650afb18f177ac18a70.tar.gz freebsd-ports-gnome-39d689d786cc6faa6db1d650afb18f177ac18a70.tar.zst freebsd-ports-gnome-39d689d786cc6faa6db1d650afb18f177ac18a70.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.
Diffstat (limited to 'misc')
-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 |