freebsd-ports/devel/rlvm/files/extra-patch-disable-nls
Jan Beich 839fe7d15a Add new port devel/rlvm
PR:		195964
Differential Revision:	https://reviews.freebsd.org/D1696
Reviewed by:	bapt
Approved by:	bapt (mentor)

rlvm is a Free Software reimplementation of VisualArt's KK's RealLive
interpreter, used in the games Kanon, Air, CLANNAD, Planetarian,
Tomoyo After and Little Busters, among many others.

WWW: http://www.elliotglaysher.org/rlvm/
2015-01-30 13:19:37 +00:00

22 lines
778 B
Text

--- SConstruct~
+++ SConstruct
@@ -38,9 +38,6 @@ env = Environment(
CPPDEFINES = [
"HAVE_CONFIG_H",
- # We use gettext for translations.
- "ENABLE_NLS",
-
# This prevents conflicts between SDL and GLEW. I shouldn't have to do
# this, but the SDL_opengl.h and glew.h differ in const correctness...
"NO_SDL_GLEXT"
@@ -410,9 +407,3 @@ if GetOption("coverage"):
variant_dir="$BUILD_DIR/",
duplicate=0,
exports='env')
-
-# In addition to all that, we also want to build the translation files.
-env.Command("build/locale/ja/LC_MESSAGES/rlvm.mo",
- "po/ja.po",
- ["mkdir -p build/locale/ja/LC_MESSAGES/",
- "msgfmt -o build/locale/ja/LC_MESSAGES/rlvm.mo po/ja.po"])