Currently, the english version is installed if and only if no other supported language is found. "Only if", because the supported language list doesn't contain "english". Thus, when linguas="en de", the current ebuild installs the german version, where linguas="" would install english. Somewhat related to bug #125366, which is a request to support simultaneously installed multiple languages. --- acroread-7.0.8.ebuild 8 Sep 2006 21:57:35 -0000 1.6 +++ acroread-7.0.8.ebuild 17 Sep 2006 17:15:18 -0000 @@ -10,8 +10,8 @@ SRC_HEAD="http://ardownload.adobe.com/pub/adobe/reader/unix/7x/${PV}" SRC_FOOT="-${PV}-1.i386.tar.gz" -LINS=("de" "fr" "ja" "ko" "zh_CN" "zh_TW") -SRCS=("deu" "fra" "jpn" "kor" "chs" "cht") +LINS=("en" "de" "fr" "ja" "ko" "zh_CN" "zh_TW") +SRCS=("enu" "deu" "fra" "jpn" "kor" "chs" "cht") #LINS=("de" "fr" "sv" "es" "pt" "no" "it" "fi" "nl" "da" "ja" "ko" "zh_CN" # "zh_TW") #SRCS=("deu" "fra" "sve" "esp" "ptb" "nor" "ita" "suo" "nld" "dan" "jpn" "kor"
multiple languages simultaneously do not work. as most people have linguas="de en" and want it german it currently defaults to do that. When you want to fix this correcltly (install both) please be my guest.