Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 26 Dec 2013 20:13:19 +0100 (CET)
From:      Thierry Thomas <thierry@FreeBSD.org>
To:        FreeBSD-gnats-submit@freebsd.org
Cc:        gecko@FreeBSD.org
Subject:   www/seamonkey-i18n: options sometimes ignored
Message-ID:  <20131226191319.CAF9A42D20C9@graf.pompo.net>

next in thread | raw e-mail | index | archive | help

>Submitter-Id:	current-users
>Originator:	Thierry Thomas
>Organization:	Kabbale Eros
>Confidential:	no 
>Synopsis:	www/seamonkey-i18n: options sometimes ignored
>Severity:	non-critical
>Priority:	low
>Category:	ports
>Class:		sw-bug
>Release:	FreeBSD 9.2-STABLE i386
>Environment:
System: FreeBSD graf.pompo.net 9.2-STABLE FreeBSD 9.2-STABLE #0 r258764: Sat Nov 30 11:54:19 CET 2013 thierry@graf.pompo.net:/usr/obj/usr/src/sys/GRAF130324 i386


	
>Description:
	If PACKAGE_BUILDING is defined, there is a typo and the existence
	of the options file is not tested, so they are ignored, and all
	languages are installed.

>How-To-Repeat:
	Set PACKAGE_BUILDING and select an option.

>Fix:
	Please apply the hereunder patch.

--- seamonkey-i18n.diff begins here ---
diff -urN www/seamonkey-i18n.orig/Makefile.lang www/seamonkey-i18n/Makefile.lang
--- www/seamonkey-i18n.orig/Makefile.lang	2013-12-19 18:13:27.000000000 +0100
+++ www/seamonkey-i18n/Makefile.lang	2013-12-26 20:01:00.000000000 +0100
@@ -5,7 +5,7 @@
 			ja-JP-mac ja lt nb-NO nl pl pt-PT ru sk sv-SE tr uk \
 			zh-CN zh-TW
 
-.if defined(SEAMONKEY_I18N_ALL) || (defined(PACKAGE_BUILDING) && !exists(${OPTIONSFILE})) || make(makesum)
+.if defined(SEAMONKEY_I18N_ALL) || (defined(PACKAGE_BUILDING) && !exists(${OPTIONS_FILE})) || make(makesum)
 SEAMONKEY_I18N=   ${SEAMONKEY_I18N_ALL_}
 .else
 .if ${PORT_OPTIONS:MLANG_BE}
--- seamonkey-i18n.diff ends here ---




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20131226191319.CAF9A42D20C9>