Date: Fri, 15 Jul 2005 11:10:18 GMT From: Harald Schmalzbauer <harry@schmalzbauer.de> To: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/83502: OOorgs Makefile lacks information about LOCALIZED_LANG variable Message-ID: <200507151110.j6FBAIkv009769@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/83502; it has been noted by GNATS. From: Harald Schmalzbauer <harry@schmalzbauer.de> To: bug-followup@freebsd.org Cc: Subject: Re: ports/83502: OOorgs Makefile lacks information about LOCALIZED_LANG variable Date: Fri, 15 Jul 2005 13:04:59 +0200 Well, the fix is wrong since I don't want to definde LOCALIZED_LANG but assign it a value. Forget the previous diff, one correct fix could be: --- editors/openoffice-1.1/files/Makefile.knobs.orig Fri Jul 15 12:11:55 2005 +++ editors/openoffice-1.1/files/Makefile.knobs Fri Jul 15 12:26:42 2005 @@ -69,6 +69,14 @@ @${ECHO} "You can compile OOo without Java support by" @${ECHO} "make -DWITHOUT_JAVA" .endif +.if !defined(LOCALIZED_LANG) + @${ECHO} + @${ECHO} "You can select the language for OOo by making it with 'make LOCALIZED_LANG=xx'" + @${ECHO} "while xx can be one of the following:" + @${ECHO} "af, ar, eu, ca, zh-CN, zh-TW, cs, dk, nl, et, fi, fr, gl-ES, de, el, he, hi-IN, hu, it, ja, kn-IN, ko, lt, nb, nn, ns, pl, pt, pt-BR, ru, es, sv, sk, sl-SI, th, tn, tr, we, zu" + @${ECHO} +.endif + @${ECHO} @${ECHO} "NOTICE:" @${ECHO}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200507151110.j6FBAIkv009769>