diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2004-03-31 20:03:44 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2004-03-31 20:03:44 +0000 |
commit | c179370e4ab69c01d2a393fefaa43106e319035f (patch) | |
tree | 176a04bf48ab0d5277fbe5a46d1f590778f86121 /textproc/aspell | |
parent | 8a95719a7d002aed6192a3241adae7dc71bc2bb5 (diff) | |
download | ports-c179370e4ab69c01d2a393fefaa43106e319035f.tar.gz ports-c179370e4ab69c01d2a393fefaa43106e319035f.zip |
Notes
Diffstat (limited to 'textproc/aspell')
-rw-r--r-- | textproc/aspell/Makefile | 91 | ||||
-rw-r--r-- | textproc/aspell/distinfo | 20 | ||||
-rw-r--r-- | textproc/aspell/pkg-plist.ia | 4 | ||||
-rw-r--r-- | textproc/aspell/pkg-plist.mt | 6 | ||||
-rw-r--r-- | textproc/aspell/pkg-plist.nb | 5 | ||||
-rw-r--r-- | textproc/aspell/pkg-plist.nn | 6 | ||||
-rw-r--r-- | textproc/aspell/pkg-plist.no | 5 | ||||
-rw-r--r-- | textproc/aspell/pkg-plist.sw | 5 | ||||
-rw-r--r-- | textproc/aspell/pkg-plist.tn | 5 | ||||
-rw-r--r-- | textproc/aspell/pkg-plist.tr | 3 | ||||
-rw-r--r-- | textproc/aspell/pkg-plist.wa | 6 | ||||
-rw-r--r-- | textproc/aspell/pkg-plist.zu | 4 |
12 files changed, 105 insertions, 55 deletions
diff --git a/textproc/aspell/Makefile b/textproc/aspell/Makefile index 9f33b1fba593..3a52a1fe7db1 100644 --- a/textproc/aspell/Makefile +++ b/textproc/aspell/Makefile @@ -43,9 +43,10 @@ DESCR= ${.CURDIR}/pkg-descr CONF_DICT_ENV= ASPELL="${PREFIX}/bin/aspell" \ WORD_LIST_COMPRESS="${PREFIX}/bin/word-list-compress" -AVAIL_DICT= af bg br ca cs cy da de el en eo es fo fr hr id it ga gl is mi ms \ - nl no pl pt ro ru sk sl sv uk -SPECDICTS= af bg cs cy da el en fo fr ga gl hr id is it mi ms pl sk sl sv uk +AVAIL_DICT= af bg br ca cs cy da de el en eo es fo fr hr ia id it ga gl is mi \ + ms mt nb nl nn pl pt ro ru sk sl sv sw tn tr uk wa zu +SPECDICTS= af bg cs cy da el en fo fr ga gl hr ia id is it mi ms mt nb nn pl \ + sk sl sv sw tn tr uk wa zu DICTVERSION= 0.50-2 DICTVER_AF= 0.50-0 DICTVER_BG= 0.50-0 @@ -59,62 +60,56 @@ DICTVER_FR= 0.50-3 DICTVER_GA= 0.50-4 DICTVER_GL= 0.50-0 DICTVER_HR= 0.50-0 +DICTVER_IA= 0.50-1 DICTVER_ID= 0.50-0 DICTVER_IS= 0.51-0 DICTVER_IT= 0.52-0 DICTVER_MI= 0.50-0 DICTVER_MS= 0.50-0 +DICTVER_MT= 0.50-0 +DICTVER_NB= 0.50-0 +DICTVER_NN= 0.50.1-0 DICTVER_PL= 0.51-0 DICTVER_SK= 0.51-1 DICTVER_SL= 0.50-0 DICTVER_SV= 0.51-0 +DICTVER_SW= 0.50-0 +DICTVER_TN= 0.50-0 +DICTVER_TR= 0.50-0 DICTVER_UK= 0.51-0 +DICTVER_WA= 0.50-0 +DICTVER_ZU= 0.50-0 DICT_SUFFIX= .tar.bz2 .include <bsd.port.pre.mk> .if defined(LANG) -.for i in ${AVAIL_DICT} -.if ${LANG:M${i}*} != "" +. for i in ${AVAIL_DICT} no +. if ${LANG:M${i}*} != "" DEF_DICT= ${i} -.endif -.endfor +. endif +. endfor +. if defined(DEF_DICT) && ${DEF_DICT} == no +DEF_DICT= nn +. endif .endif DEF_DICT?= en pre-everything:: -.if (!defined(ASPELL_AF) \ - && !defined(ASPELL_BG) \ - && !defined(ASPELL_BR) \ - && !defined(ASPELL_CA) \ - && !defined(ASPELL_CS) \ - && !defined(ASPELL_CY) \ - && !defined(ASPELL_DA) \ - && !defined(ASPELL_DE) \ - && !defined(ASPELL_EL) \ - && !defined(ASPELL_EN) \ - && !defined(ASPELL_EO) \ - && !defined(ASPELL_ES) \ - && !defined(ASPELL_FO) \ - && !defined(ASPELL_FR) \ - && !defined(ASPELL_GA) \ - && !defined(ASPELL_GL) \ - && !defined(ASPELL_HR) \ - && !defined(ASPELL_ID) \ - && !defined(ASPELL_IS) \ - && !defined(ASPELL_IT) \ - && !defined(ASPELL_MI) \ - && !defined(ASPELL_MS) \ - && !defined(ASPELL_NL) \ - && !defined(ASPELL_NO) \ - && !defined(ASPELL_PL) \ - && !defined(ASPELL_PT) \ - && !defined(ASPELL_RO) \ - && !defined(ASPELL_RU) \ - && !defined(ASPELL_SK) \ - && !defined(ASPELL_SL) \ - && !defined(ASPELL_SV) \ - && !defined(ASPELL_UK)) +.if defined(ASPELL_NO) +ASPELL_NN= yes +.endif +.if defined(WITH_ALL_DICTS) +. for LG in ${AVAIL_DICT} +ASPELL_${LG:U}= yes +. endfor +.endif +.for LG in ${AVAIL_DICT} +. if defined(ASPELL_${LG:U}) +DICTS+= ${LG} +. endif +.endfor +.if !defined(DICTS) @${ECHO_MSG} '*********************************************************' @${ECHO_MSG} '* You can add further dictionaries: *' @${ECHO_MSG} '* Use make-flag: *' @@ -135,32 +130,32 @@ pre-everything:: @${ECHO_MSG} '* - Greek ASPELL_EL=yes *' @${ECHO_MSG} '* - Icelandic ASPELL_IS=yes *' @${ECHO_MSG} '* - Indonesian ASPELL_ID=yes *' + @${ECHO_MSG} '* - Interlingua ASPELL_IA=yes *' @${ECHO_MSG} '* - Irish (Gaelic) ASPELL_GA=yes *' @${ECHO_MSG} '* - Italian ASPELL_IT=yes *' @${ECHO_MSG} '* - Maori ASPELL_MI=yes *' @${ECHO_MSG} '* - Malay ASPELL_MS=yes *' - @${ECHO_MSG} '* - Norwegian ASPELL_NO=yes *' + @${ECHO_MSG} '* - Maltese ASPELL_MT=yes *' + @${ECHO_MSG} '* - Norwegian Bokmal ASPELL_NB=yes *' + @${ECHO_MSG} '* - Norwegian Nynorsk ASPELL_NN=yes *' @${ECHO_MSG} '* - Polish ASPELL_PL=yes *' @${ECHO_MSG} '* - Portuguese ASPELL_PT=yes *' @${ECHO_MSG} '* - Romanian ASPELL_RO=yes *' @${ECHO_MSG} '* - Russian ASPELL_RU=yes *' @${ECHO_MSG} '* - Slovak ASPELL_SK=yes *' @${ECHO_MSG} '* - Slovenian ASPELL_SL=yes *' + @${ECHO_MSG} '* - Swahili ASPELL_SW=yes *' @${ECHO_MSG} '* - Spanish ASPELL_ES=yes *' @${ECHO_MSG} '* - Swedish ASPELL_SV=yes *' + @${ECHO_MSG} '* - Tswana ASPELL_TN=yes *' + @${ECHO_MSG} '* - Turkish ASPELL_TR=yes *' @${ECHO_MSG} '* - Ukrainian ASPELL_UK=yes *' + @${ECHO_MSG} '* - Walloon ASPELL_WA=yes *' @${ECHO_MSG} '* - Welsh ASPELL_CY=yes *' + @${ECHO_MSG} '* - Zulu ASPELL_ZU=yes *' @${ECHO_MSG} '* *' @${ECHO_MSG} '* Example: "make ASPELL_FR=yes ASPELL_EN=yes install" *' @${ECHO_MSG} '*********************************************************' -.else -. for LG in ${AVAIL_DICT} -. if defined(ASPELL_${LG:U}) -DICTS+= ${LG} -. endif -. endfor -.endif -.if !defined(DICTS) . for LG in ${AVAIL_DICT} . if (${DEF_DICT} == ${LG}) DICTS= ${LG} diff --git a/textproc/aspell/distinfo b/textproc/aspell/distinfo index 8ab79a03eb27..293911671498 100644 --- a/textproc/aspell/distinfo +++ b/textproc/aspell/distinfo @@ -30,6 +30,8 @@ MD5 (aspell-fr-0.50-3.tar.bz2) = 53a2d05c4e8f7fabd3cefe24db977be7 SIZE (aspell-fr-0.50-3.tar.bz2) = 283086 MD5 (aspell-hr-0.50-0.tar.bz2) = 5b04a3102a58c9bb26b7a71178ad2d84 SIZE (aspell-hr-0.50-0.tar.bz2) = 425054 +MD5 (aspell-ia-0.50-1.tar.bz2) = 36846c747a4cb7874b00f37752e83f25 +SIZE (aspell-ia-0.50-1.tar.bz2) = 70883 MD5 (aspell-id-0.50-0.tar.bz2) = dc63181fcafa01e735366a70d861c1fb SIZE (aspell-id-0.50-0.tar.bz2) = 48715 MD5 (aspell-it-0.52-0.tar.bz2) = 03e14dab69e0ecb132dda02fe0c220fc @@ -44,10 +46,14 @@ MD5 (aspell-mi-0.50-0.tar.bz2) = 8b1a07032ee086662bfe44a2e0459db4 SIZE (aspell-mi-0.50-0.tar.bz2) = 57818 MD5 (aspell-ms-0.50-0.tar.bz2) = cfdd94bba4781766c5d870202abd60e0 SIZE (aspell-ms-0.50-0.tar.bz2) = 50368 +MD5 (aspell-mt-0.50-0.tar.bz2) = 6df98356e411891c956c249731b708fa +SIZE (aspell-mt-0.50-0.tar.bz2) = 124114 +MD5 (aspell-nb-0.50-0.tar.bz2) = dcc63a9f9f7f88b25e68932f692dab52 +SIZE (aspell-nb-0.50-0.tar.bz2) = 423101 MD5 (aspell-nl-0.50-2.tar.bz2) = c3ef9fd7dc4c47d816eee9ef5149c76a SIZE (aspell-nl-0.50-2.tar.bz2) = 428365 -MD5 (aspell-no-0.50-2.tar.bz2) = b24b20ad02ce2a569f71f949b48823cc -SIZE (aspell-no-0.50-2.tar.bz2) = 286696 +MD5 (aspell-nn-0.50.1-0.tar.bz2) = 20c0e69bee1d1eb50f57b63c8e4f7e2f +SIZE (aspell-nn-0.50.1-0.tar.bz2) = 335264 MD5 (aspell-pl-0.51-0.tar.bz2) = 5435be1c9c39326a02e2798d8b4d257b SIZE (aspell-pl-0.51-0.tar.bz2) = 624458 MD5 (aspell-pt-0.50-2.tar.bz2) = e4e15179f90b76ec0336b687d1293edd @@ -62,5 +68,15 @@ MD5 (aspell-sl-0.50-0.tar.bz2) = c4c11402bc834d796d1b56e711470480 SIZE (aspell-sl-0.50-0.tar.bz2) = 215463 MD5 (aspell-sv-0.51-0.tar.bz2) = d180c781f8986ea0f65b6b18f02a494e SIZE (aspell-sv-0.51-0.tar.bz2) = 93942 +MD5 (aspell-sw-0.50-0.tar.bz2) = 26ccc3500d7f7c288b74bba1c1fab38f +SIZE (aspell-sw-0.50-0.tar.bz2) = 102172 +MD5 (aspell-tn-0.50-0.tar.bz2) = 31760a27788053ebcdee58a0a6f9091e +SIZE (aspell-tn-0.50-0.tar.bz2) = 18685 +MD5 (aspell-tr-0.50-0.tar.bz2) = 432ecdc4e5233da0a4c1a52ed9103fa2 +SIZE (aspell-tr-0.50-0.tar.bz2) = 84846 MD5 (aspell-uk-0.51-0.tar.bz2) = 767bfca10c64b239b05cb8b68a78f4ad SIZE (aspell-uk-0.51-0.tar.bz2) = 382513 +MD5 (aspell-wa-0.50-0.tar.bz2) = e3817402d7be19d4b0d0342d3a5970ea +SIZE (aspell-wa-0.50-0.tar.bz2) = 50363 +MD5 (aspell-zu-0.50-0.tar.bz2) = 2478cbbb6abaf5ed74bc2da7e7152116 +SIZE (aspell-zu-0.50-0.tar.bz2) = 168226 diff --git a/textproc/aspell/pkg-plist.ia b/textproc/aspell/pkg-plist.ia new file mode 100644 index 000000000000..4705e4fa3333 --- /dev/null +++ b/textproc/aspell/pkg-plist.ia @@ -0,0 +1,4 @@ +share/aspell/ia.dat +share/aspell/ia.multi +share/aspell/ia.rws +share/aspell/interlingua.alias diff --git a/textproc/aspell/pkg-plist.mt b/textproc/aspell/pkg-plist.mt new file mode 100644 index 000000000000..0c52849d5a32 --- /dev/null +++ b/textproc/aspell/pkg-plist.mt @@ -0,0 +1,6 @@ +share/aspell/mt.dat +share/aspell/mt.multi +share/aspell/mt.rws +share/aspell/maltese.alias +share/aspell/malti.alias +share/aspell/mt_phonet.dat diff --git a/textproc/aspell/pkg-plist.nb b/textproc/aspell/pkg-plist.nb new file mode 100644 index 000000000000..43bae5cb53cf --- /dev/null +++ b/textproc/aspell/pkg-plist.nb @@ -0,0 +1,5 @@ +share/aspell/nb.dat +share/aspell/nb.multi +share/aspell/nb.rws +share/aspell/bokmal.alias +share/aspell/bokmål.alias diff --git a/textproc/aspell/pkg-plist.nn b/textproc/aspell/pkg-plist.nn new file mode 100644 index 000000000000..9ba0573b8f11 --- /dev/null +++ b/textproc/aspell/pkg-plist.nn @@ -0,0 +1,6 @@ +share/aspell/nn.dat +share/aspell/nn.multi +share/aspell/nn.rws +share/aspell/norsk.alias +share/aspell/norwegian.alias +share/aspell/nynorsk.alias diff --git a/textproc/aspell/pkg-plist.no b/textproc/aspell/pkg-plist.no deleted file mode 100644 index b20bfca91a84..000000000000 --- a/textproc/aspell/pkg-plist.no +++ /dev/null @@ -1,5 +0,0 @@ -share/aspell/no.dat -share/aspell/no.multi -share/aspell/no.rws -share/aspell/norsk.alias -share/aspell/norwegian.alias diff --git a/textproc/aspell/pkg-plist.sw b/textproc/aspell/pkg-plist.sw new file mode 100644 index 000000000000..cef4077c61c2 --- /dev/null +++ b/textproc/aspell/pkg-plist.sw @@ -0,0 +1,5 @@ +share/aspell/kiswahili.alias +share/aspell/sw.dat +share/aspell/sw.multi +share/aspell/sw.rws +share/aspell/swahili.alias diff --git a/textproc/aspell/pkg-plist.tn b/textproc/aspell/pkg-plist.tn new file mode 100644 index 000000000000..9376730ff2d6 --- /dev/null +++ b/textproc/aspell/pkg-plist.tn @@ -0,0 +1,5 @@ +share/aspell/setswana.alias +share/aspell/tn.dat +share/aspell/tn.multi +share/aspell/tn.rws +share/aspell/tswana.alias diff --git a/textproc/aspell/pkg-plist.tr b/textproc/aspell/pkg-plist.tr new file mode 100644 index 000000000000..218696680740 --- /dev/null +++ b/textproc/aspell/pkg-plist.tr @@ -0,0 +1,3 @@ +share/aspell/tr.dat +share/aspell/tr.multi +share/aspell/tr.rws diff --git a/textproc/aspell/pkg-plist.wa b/textproc/aspell/pkg-plist.wa new file mode 100644 index 000000000000..414354cfe542 --- /dev/null +++ b/textproc/aspell/pkg-plist.wa @@ -0,0 +1,6 @@ +share/aspell/wa.dat +share/aspell/wa.multi +share/aspell/wa_phonet.dat +share/aspell/wa.rws +share/aspell/walloon.alias +share/aspell/walon.alias diff --git a/textproc/aspell/pkg-plist.zu b/textproc/aspell/pkg-plist.zu new file mode 100644 index 000000000000..47ecef5717d4 --- /dev/null +++ b/textproc/aspell/pkg-plist.zu @@ -0,0 +1,4 @@ +share/aspell/zu.dat +share/aspell/zu.multi +share/aspell/zu.rws +share/aspell/zulu.alias |