diff options
author | kwm <kwm@FreeBSD.org> | 2013-06-03 16:03:29 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2013-06-03 16:03:29 +0800 |
commit | 223d28469dba570505055b38df947c6dccba0a81 (patch) | |
tree | fa971ecc2dc35999470079e85f189037c334a161 /x11 | |
parent | 52a7f6afe5d708bc90a832b94b5de846e40e696a (diff) | |
download | freebsd-ports-gnome-223d28469dba570505055b38df947c6dccba0a81.tar.gz freebsd-ports-gnome-223d28469dba570505055b38df947c6dccba0a81.tar.zst freebsd-ports-gnome-223d28469dba570505055b38df947c6dccba0a81.zip |
Comment out the ! NLS case, because it broken.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xkeyboard-config/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/x11/xkeyboard-config/Makefile b/x11/xkeyboard-config/Makefile index 412970b66ad6..8758fa187795 100644 --- a/x11/xkeyboard-config/Makefile +++ b/x11/xkeyboard-config/Makefile @@ -31,13 +31,14 @@ MAN7= xkeyboard-config.7 .include <bsd.port.options.mk> -.if ${PORT_OPTIONS:MNLS} +# !nls case doesn't work correctly, comment it out. +#.if ${PORT_OPTIONS:MNLS} USES+= gettext iconv PLIST_SUB+= NLS="" -.else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= NLS="@comment " -.endif +#.else +#CONFIGURE_ARGS+=--disable-nls +#PLIST_SUB+= NLS="@comment " +#.endif post-patch: @${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|g' -e 's|==|=|g' \ |