diff options
author | thierry <thierry@FreeBSD.org> | 2006-07-15 22:28:44 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2006-07-15 22:28:44 +0800 |
commit | 5eef858c2a754b7bf1dbf720d451a30223c9af1f (patch) | |
tree | 37164346eec6b26fa28e22f72ce104235e0b531b /textproc/aspell | |
parent | 0a3452160835c4688277d8e1e9a09442c6c5a188 (diff) | |
download | freebsd-ports-gnome-5eef858c2a754b7bf1dbf720d451a30223c9af1f.tar.gz freebsd-ports-gnome-5eef858c2a754b7bf1dbf720d451a30223c9af1f.tar.zst freebsd-ports-gnome-5eef858c2a754b7bf1dbf720d451a30223c9af1f.zip |
All dictionaries can be installed separately:
- by default, textproc/aspell installs the English dictionaries (no
change);
- thereafter you can install any foreign dictionary;
- when you install a foreign dictionary, i.e. french/aspell or
textproc/da-aspell, it installs only the dictionaries, and depends
upon textproc/aspell for the programs;
- if you don't need the English dictionaries, you can define
WITHOUT_DICTEN or install textproc/aspell-without-dicten;
- add a new port for textproc/en-aspell: if aspell had been installed
without the English dictionaries, they can be added thereafter;
- add a missing port for german/alt-aspell;
- foreign dictionaries are almost independent from textproc/aspell,
and their maintainership is available.
Credits: special thanks to Serge Gagnon <ser_gagnon (at) sympatico.ca>
Diffstat (limited to 'textproc/aspell')
83 files changed, 83 insertions, 949 deletions
diff --git a/textproc/aspell/Makefile b/textproc/aspell/Makefile index 233ef043905b..9ce6556fb99d 100644 --- a/textproc/aspell/Makefile +++ b/textproc/aspell/Makefile @@ -5,17 +5,20 @@ # $FreeBSD$ # -PORTNAME?= aspell +PORTNAME= aspell PORTVERSION= 0.60.4 -PORTREVISION= 3 -CATEGORIES+= textproc +PORTREVISION= 4 +CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= aspell -DISTFILES= aspell-0.60.4.tar.gz # needed for slave ports / options -EXTRACT_ONLY= aspell-0.60.4.tar.gz +.if defined(WITHOUT_DICTEN) +PKGNAMESUFFIX= -without-dicten +.endif +DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} +EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} -MAINTAINER?= thierry@FreeBSD.org -COMMENT?= Spelling checker with better suggestion logic than ispell +MAINTAINER= thierry@FreeBSD.org +COMMENT= Spelling checker with better suggestion logic than ispell GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} @@ -32,12 +35,30 @@ USE_GETTEXT= yes USE_PERL5_BUILD= yes INSTALLS_SHLIB= yes +SLAVEDIRS= textproc/aspell-without-dicten + MAKE_ARGS= NOPORTDOCS=${NOPORTDOCS} VERINST= ${PORTVERSION:R} +SUB_FILES= aspell.ver PLIST_SUB= VER=${VERINST} +SUB_LIST= VERINST=${VERINST} + +.if defined(WITHOUT_DICTEN) +CONFLICTS= aspell-0.* +DICT_TARGET= +.else +VERDICT_EN= 6-en-6.0-0 +DICT_SUFFIX= .tar.bz2 +MASTER_SITES+= ${MASTER_SITE_GNU:S|%SUBDIR%/|%SUBDIR%/dict/en/:dicten|} +DISTFILES+= aspell${VERDICT_EN}${DICT_SUFFIX}:dicten +CONFLICTS= aspell-without-dicten-0.* +DICT_TARGET= inst-dicten +CONF_DICT_ENV= ASPELL="${PREFIX}/bin/aspell" \ + WORD_LIST_COMPRESS="${PREFIX}/bin/word-list-compress" +.endif .if defined(WITH_ISPELL) -CONFLICTS= ispell* ??-ispell* +CONFLICTS+= ispell* ??-ispell* SCRIPTS= ispell spell PLIST_SUB+= SCRIPTS="" .else @@ -62,170 +83,43 @@ INFO= aspell-dev aspell CFLAGS+= -O .endif -WRKSRC= ${WRKDIR}/aspell-${PORTVERSION} # needed for slave ports / options -DOCSDIR= ${PREFIX}/share/doc/aspell -DATADIR= ${PREFIX}/share/aspell -DESCR= ${.CURDIR}/pkg-descr - -CONF_DICT_ENV= ASPELL="${PREFIX}/bin/aspell" \ - WORD_LIST_COMPRESS="${PREFIX}/bin/word-list-compress" -AVAIL_DICT= af am az be bg bn br ca cs csb cy da de de-alt el en eo es et fa fi fo \ - fr ga gd gl gu gv he hi hil hr hsb hu ia id is it la lt lv mi mk mn mr \ - ms mt nb nds nl nn ny or pa pl pt qu ro ru rw sc sk sl sr sv sw ta te \ - tet tl tn tr uk uz vi wa yi zu -DICT_SUFFIX= .tar.bz2 - -.include <bsd.port.pre.mk> -.include "${FILESDIR}/verdict" - -.if defined(LANG) -. for i in ${AVAIL_DICT} no -. if ${LANG:M${i}*} != "" -DEF_DICT= ${i} -. endif -. endfor -. if defined(DEF_DICT) && ${DEF_DICT} == no -DEF_DICT= nn -. endif -.endif -DEF_DICT?= en - pre-everything:: -.if defined(ASPELL_NO) -ASPELL_NN= yes + @${ECHO_MSG} "" +.if !defined(WITH_ISPELL) + @${ECHO_MSG} "Define WITH_ISPELL to install Ispell's wrapper." + @${ECHO_MSG} "" .endif -.if defined(WITH_ALL_DICTS) -. for LG in ${AVAIL_DICT} -ASPELL_${LG:U}= yes -. endfor +.if !defined(WITHOUT_DICTEN) + @${ECHO_MSG} "Define WITHOUT_DICTEN to not install english dictionary." + @${ECHO_MSG} "" .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: *' - @${ECHO_MSG} '* - Afrikaans ASPELL_AF=yes *' - @${ECHO_MSG} '* - Amharic ASPELL_AM=yes *' - @${ECHO_MSG} '* - Azerbaijani ASPELL_AZ=yes *' - @${ECHO_MSG} '* - Belarusian ASPELL_BE=yes *' - @${ECHO_MSG} '* - Bengali ASPELL_BN=yes *' - @${ECHO_MSG} '* - Bulgarian ASPELL_BG=yes *' - @${ECHO_MSG} '* - Breton ASPELL_BR=yes *' - @${ECHO_MSG} '* - Catalan / Valencian ASPELL_CA=yes *' - @${ECHO_MSG} '* - Croatian ASPELL_HR=yes *' - @${ECHO_MSG} '* - Czech ASPELL_CS=yes *' - @${ECHO_MSG} '* - Danish ASPELL_DA=yes *' - @${ECHO_MSG} '* - Dutch ASPELL_NL=yes *' - @${ECHO_MSG} '* - English ASPELL_EN=yes *' - @${ECHO_MSG} '* - Esperanto ASPELL_EO=yes *' - @${ECHO_MSG} '* - Estonian ASPELL_ET=yes *' - @${ECHO_MSG} '* - Faroese ASPELL_FO=yes *' - @${ECHO_MSG} '* - Finnish ASPELL_FI=yes *' - @${ECHO_MSG} '* - French ASPELL_FR=yes *' - @${ECHO_MSG} '* - Galician ASPELL_GL=yes *' - @${ECHO_MSG} '* - German ASPELL_DE=yes *' - @${ECHO_MSG} '* - German (orig spelling rules) ASPELL_DE-ALT=yes *' - @${ECHO_MSG} '* - Greek ASPELL_EL=yes *' - @${ECHO_MSG} '* - Gujarati ASPELL_GU=yes *' - @${ECHO_MSG} '* - Hebrew ASPELL_HE=yes *' - @${ECHO_MSG} '* - Hiligaynon ASPELL_HIL=yes *' - @${ECHO_MSG} '* - Hindi ASPELL_HI=yes *' - @${ECHO_MSG} '* - Hungarian ASPELL_HU=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} '* - Kashubian ASPELL_CSB=yes *' - @${ECHO_MSG} '* - Kinyarwanda ASPELL_RW=yes *' - @${ECHO_MSG} '* - Latin ASPELL_LA=yes *' - @${ECHO_MSG} '* - Latvian ASPELL_LV=yes *' - @${ECHO_MSG} '* - Lithuanian ASPELL_LT=yes *' - @${ECHO_MSG} '* - Low Saxon ASPELL_NDS=yes *' - @${ECHO_MSG} '* - Macedonian ASPELL_MK=yes *' - @${ECHO_MSG} '* - Maori ASPELL_MI=yes *' - @${ECHO_MSG} '* - Malay ASPELL_MS=yes *' - @${ECHO_MSG} '* - Maltese ASPELL_MT=yes *' - @${ECHO_MSG} '* - Manx Gaelic ASPELL_GV=yes *' - @${ECHO_MSG} '* - Marathi ASPELL_MR=yes *' - @${ECHO_MSG} '* - Mongolian ASPELL_MN=yes *' - @${ECHO_MSG} '* - Norwegian Bokmal ASPELL_NB=yes *' - @${ECHO_MSG} '* - Norwegian Nynorsk ASPELL_NN=yes *' - @${ECHO_MSG} '* - Nyanja (Chichewa) ASPELL_NY=yes *' - @${ECHO_MSG} '* - Oriya ASPELL_OR=yes *' - @${ECHO_MSG} '* - Persian (Farsi) ASPELL_FA=yes *' - @${ECHO_MSG} '* - Polish ASPELL_PL=yes *' - @${ECHO_MSG} '* - Portuguese ASPELL_PT=yes *' - @${ECHO_MSG} '* - Punjabi ASPELL_PU=yes *' - @${ECHO_MSG} '* - Quechua ASPELL_QU=yes *' - @${ECHO_MSG} '* - Romanian ASPELL_RO=yes *' - @${ECHO_MSG} '* - Russian ASPELL_RU=yes *' - @${ECHO_MSG} '* - Sardinian ASPELL_SC=yes *' - @${ECHO_MSG} '* - Scottish Gaelic ASPELL_GD=yes *' - @${ECHO_MSG} '* - Serbian ASPELL_SR=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} '* - Tagalog ASPELL_TL=yes *' - @${ECHO_MSG} '* - Tamil ASPELL_TA=yes *' - @${ECHO_MSG} '* - Telugu ASPELL_TE=yes *' - @${ECHO_MSG} '* - Tetum ASPELL_TET=yes *' - @${ECHO_MSG} '* - Tswana ASPELL_TN=yes *' - @${ECHO_MSG} '* - Turkish ASPELL_TR=yes *' - @${ECHO_MSG} '* - Ukrainian ASPELL_UK=yes *' - @${ECHO_MSG} '* - Upper Sorbian ASPELL_HSB=yes *' - @${ECHO_MSG} '* - Uzbek ASPELL_UZ=yes *' - @${ECHO_MSG} '* - Vietnamese ASPELL_VI=yes *' - @${ECHO_MSG} '* - Walloon ASPELL_WA=yes *' - @${ECHO_MSG} '* - Welsh ASPELL_CY=yes *' - @${ECHO_MSG} '* - Yiddish ASPELL_YI=yes *' - @${ECHO_MSG} '* - Zulu ASPELL_ZU=yes *' - @${ECHO_MSG} '* *' - @${ECHO_MSG} '* Example: "make ASPELL_FR=yes ASPELL_EN=yes install" *' - @${ECHO_MSG} '*********************************************************' -. for LG in ${AVAIL_DICT} -. if (${DEF_DICT} == ${LG}) -DICTS= ${LG} -. endif -. endfor -.endif - -.for DICO in ${DICTS} -MASTER_SITES+= ftp://ftp.gnu.org/gnu/aspell/dict/${DICO:S/-alt//}/:dict${DICO:S/-//} \ - http://gnu.mirror.mcgill.ca/aspell/dict/${DICO:S/-alt//}/:dict${DICO:S/-//} \ - http://mirrors.usc.edu/pub/gnu/aspell/dict/${DICO:S/-alt//}/:dict${DICO:S/-//} \ - ftp://ftp.sunsite.org.uk/package/gnu/aspell/dict/${DICO:S/-alt//}/:dict${DICO:S/-//} -DISTFILES+= aspell${VERDICT_${DICO:U}}${DICT_SUFFIX}:dict${DICO:S/-//} -.endfor post-extract: -.for DICO in ${DICTS} - @cd ${WRKDIR} && \ - ${TAR} -xjf ${DISTDIR}/aspell${VERDICT_${DICO:U}}${DICT_SUFFIX} -.endfor +.if !defined(WITHOUT_DICTEN) + cd ${WRKDIR} && \ + ${TAR} -xjf ${DISTDIR}/aspell${VERDICT_EN}${DICT_SUFFIX} +.endif pre-configure: @cd ${WRKSRC} && ${ACLOCAL} -post-install: -.for DICO in ${DICTS} - @${ECHO_MSG} "===> Installing for ${DICO} dictionaries" - @cd ${WRKDIR}/aspell${VERDICT_${DICO:U}} && \ - ${CONF_DICT_ENV} ./${CONFIGURE_SCRIPT} && \ - ${GMAKE} install - @${SED} -e "s|%%VER%%|${VERINST}|" ${MASTERDIR}/pkg-plist.${DICO} \ - >> ${TMPPLIST} -.endfor - @${ECHO_CMD} "@dirrm share/aspell" >> ${TMPPLIST} - @${ECHO_CMD} "@dirrm lib/aspell-${VERINST}" >> ${TMPPLIST} +post-install: ${DICT_TARGET} + ${INSTALL_DATA} ${WRKDIR}/aspell.ver ${PREFIX}/etc .if defined(WITH_ISPELL) ${INSTALL_SCRIPT} ${SCRIPTS:S|^|${WRKSRC}/scripts/|} ${PREFIX}/bin .endif + @${ECHO_CMD} "@dirrm share/aspell" >> ${TMPPLIST} + @${ECHO_CMD} "@dirrm lib/aspell-${VERINST}" >> ${TMPPLIST} + +inst-dicten: +# Install en-aspell by default +.if !exists(${LOCALBASE}/lib/aspell-${VERINST}/en.dat) && !defined(WITHOUT_DICTEN) + @${ECHO_MSG} "===> Installing for en dictionaries" + cd ${WRKDIR}/aspell${VERDICT_EN} && \ + ${CONF_DICT_ENV} ./${CONFIGURE_SCRIPT} && \ + ${GMAKE} ${INSTALL_TARGET} + ${SED} -e "s|%%VER%%|${VERINST}|" ${MASTERDIR}/pkg-plist.en \ + >> ${TMPPLIST} +.endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/textproc/aspell/Makefile.inc b/textproc/aspell/Makefile.inc new file mode 100644 index 000000000000..eacbbf1e86bb --- /dev/null +++ b/textproc/aspell/Makefile.inc @@ -0,0 +1,23 @@ +# $FreeBSD$ +# To be included by dictionaries ports. + +MASTER_SITES?= ${MASTER_SITE_GNU} +MASTER_SITE_SUBDIR?= aspell/dict/${DICT} +DISTNAME?= aspell${DISTVERSION} + +.if ${PORTNAME} == "en-aspell" || defined(WITHOUT_DICTEN) +LIB_DEPENDS= aspell:${PORTSDIR}/textproc/aspell-without-dicten +.else +LIB_DEPENDS= aspell:${PORTSDIR}/textproc/aspell +.endif + +USE_BZIP2= yes +USE_GMAKE= yes +HAS_CONFIGURE= yes + +PLIST_SUB= VER=${VER} + +.include <bsd.port.pre.mk> +.if exists(${LOCALBASE}/etc/aspell.ver) +. include "${LOCALBASE}/etc/aspell.ver" +.endif diff --git a/textproc/aspell/distinfo b/textproc/aspell/distinfo index 8f22c3b9feea..9df7e6d7677d 100644 --- a/textproc/aspell/distinfo +++ b/textproc/aspell/distinfo @@ -1,237 +1,6 @@ MD5 (aspell-0.60.4.tar.gz) = 4f1737e726d66476b9c7388831305510 SHA256 (aspell-0.60.4.tar.gz) = 8931d8644da9a71fdd970cafe9d6c20d796ad1d8ef2aaf89a801171104e426e4 SIZE (aspell-0.60.4.tar.gz) = 1676825 -MD5 (aspell-af-0.50-0.tar.bz2) = bde617a195e70364f96eea71cf71a333 -SHA256 (aspell-af-0.50-0.tar.bz2) = 9d6000aeca5911343278bd6ed9e21d42c8cb26247dafe94a76ff81d8ac98e602 -SIZE (aspell-af-0.50-0.tar.bz2) = 256111 -MD5 (aspell6-am-0.03-1.tar.bz2) = 7e28708b53bd4bc3008dfb04237413ac -SHA256 (aspell6-am-0.03-1.tar.bz2) = bf27dd21f8871e2b3332c211b402cd46604d431a7773e599729c242cdfb9d487 -SIZE (aspell6-am-0.03-1.tar.bz2) = 40493 -MD5 (aspell6-az-0.02-0.tar.bz2) = 24d9d46c8fc23197666a43a7962a7b0d -SHA256 (aspell6-az-0.02-0.tar.bz2) = 063176ec459d61acd59450ae49b5076e42abb1dcd54c1f934bae5fa6658044c3 -SIZE (aspell6-az-0.02-0.tar.bz2) = 50588 -MD5 (aspell5-be-0.01.tar.bz2) = 61314a1672f98571b32d23486bbd43be -SHA256 (aspell5-be-0.01.tar.bz2) = 550bad0c03a142241ffe5ecc183659d80020b566003a05341cd1e97c6ed274eb -SIZE (aspell5-be-0.01.tar.bz2) = 653405 -MD5 (aspell5-bg-4.0-0.tar.bz2) = f1d9f1587cc382f10f1c7ac0a2600833 -SHA256 (aspell5-bg-4.0-0.tar.bz2) = af7091e426449d071a5d0e03bd6e231d68e26409880d91c11081631ead40da21 -SIZE (aspell5-bg-4.0-0.tar.bz2) = 176676 -MD5 (aspell6-bn-0.01.1-1.tar.bz2) = 5ea70ec74e67f49b2844d306ddf38388 -SHA256 (aspell6-bn-0.01.1-1.tar.bz2) = b03f9cc4feb00df9bfd697b032f4f4ae838ad5a6bb41db798eefc5639a1480d9 -SIZE (aspell6-bn-0.01.1-1.tar.bz2) = 117436 -MD5 (aspell-br-0.50-1.tar.bz2) = 52efaf08d791e1a0c5056e2b3f6bf47d -SHA256 (aspell-br-0.50-1.tar.bz2) = 699749933a9446a06ba78e32e4b05ae3dd41382e9b9613fb8dc2a08263972d94 -SIZE (aspell-br-0.50-1.tar.bz2) = 67834 -MD5 (aspell6-ca-20040130-1.tar.bz2) = 5dfeebdfbe68556e70abfa95dd775263 -SHA256 (aspell6-ca-20040130-1.tar.bz2) = a531b7764ebdb91655e2c5dac8a3625480b675579f16e64d1fd4409f6c6c672f -SIZE (aspell6-ca-20040130-1.tar.bz2) = 222986 -MD5 (aspell-cs-0.51-0.tar.bz2) = 4be28bef4385ef46e80547ce8cdc4535 -SHA256 (aspell-cs-0.51-0.tar.bz2) = 7c56c5cd6e74d60749e68effa9dc45cb282cb3bb6a9c56b51f7594a72216ea47 -SIZE (aspell-cs-0.51-0.tar.bz2) = 626618 -MD5 (aspell6-csb-0.02-0.tar.bz2) = 0d4b408076115b7516c68887a563be68 -SHA256 (aspell6-csb-0.02-0.tar.bz2) = c166ad07d50e9e13ac9f87d5a8938b3f675a0f8a01017bd8969c2053e7f52298 -SIZE (aspell6-csb-0.02-0.tar.bz2) = 32694 -MD5 (aspell-cy-0.50-3.tar.bz2) = d59fee193dba87973b38ac2862a090bb -SHA256 (aspell-cy-0.50-3.tar.bz2) = d5399dcd70061e5ed5af1214eb580f62864dd35ea4fa1ec2882ffc4f03307897 -SIZE (aspell-cy-0.50-3.tar.bz2) = 117652 -MD5 (aspell5-da-1.4.42-1.tar.bz2) = d14c03dca23b572606279d7317b022d0 -SHA256 (aspell5-da-1.4.42-1.tar.bz2) = f74a079617979c1623e8e7313e4ecd3bc260db92ce55b1f2a3a5e7077dacd3c1 -SIZE (aspell5-da-1.4.42-1.tar.bz2) = 317688 -MD5 (aspell6-de-20030222-1.tar.bz2) = 5950c5c8a36fc93d4d7616591bace6a6 -SHA256 (aspell6-de-20030222-1.tar.bz2) = ba6c94e11bc2e0e6e43ce0f7822c5bba5ca5ac77129ef90c190b33632416e906 -SIZE (aspell6-de-20030222-1.tar.bz2) = 274407 -MD5 (aspell6-de-alt-2.1-1.tar.bz2) = 13245374b03088608d729fd15c58cd7a -SHA256 (aspell6-de-alt-2.1-1.tar.bz2) = 36d13c6c743a6b1ff05fb1af79134e118e5a94db06ba40c076636f9d04158c73 -SIZE (aspell6-de-alt-2.1-1.tar.bz2) = 247116 -MD5 (aspell-el-0.50-3.tar.bz2) = 0ea2c42ceb9b91f7f5de2c017234ad37 -SHA256 (aspell-el-0.50-3.tar.bz2) = 3f6508937dcaa64a6c70ee5f722f088b46b202a6409961b93b705d4ec4f56380 -SIZE (aspell-el-0.50-3.tar.bz2) = 328225 MD5 (aspell6-en-6.0-0.tar.bz2) = 16449e0a266e1ecc526b2f3cd39d4bc2 SHA256 (aspell6-en-6.0-0.tar.bz2) = 24f0688711d2b893fa06c16d14d0aa3a8000e326226b839aad32611f7ace4898 SIZE (aspell6-en-6.0-0.tar.bz2) = 182442 -MD5 (aspell-eo-0.50-2.tar.bz2) = f84147f5909e1a5f7adb86f27c71eb8c -SHA256 (aspell-eo-0.50-2.tar.bz2) = 6c61a64297804afd4ddf21660caecf1c966dd57e577789b045e9d9944a6d70a7 -SIZE (aspell-eo-0.50-2.tar.bz2) = 89703 -MD5 (aspell-es-0.50-2.tar.bz2) = 4a8583e9ef9f4aed03f5a7fe09d40060 -SHA256 (aspell-es-0.50-2.tar.bz2) = 5c0e2a32d44196fb0375e72d44e730fd365d62e53ade077fb1653ccbb8ee2645 -SIZE (aspell-es-0.50-2.tar.bz2) = 157809 -MD5 (aspell6-et-0.1.21-1.tar.bz2) = 82929f49ddc1149b6ef2bde4c3c12bcd -SHA256 (aspell6-et-0.1.21-1.tar.bz2) = b1e857aa3daaea2a19462b2671e87c26a7eb7337c83b709685394eed8472b249 -SIZE (aspell6-et-0.1.21-1.tar.bz2) = 338155 -MD5 (aspell6-fa-0.02-0.tar.bz2) = 4583ef4b8b2456f737e3d60ede1e9034 -SHA256 (aspell6-fa-0.02-0.tar.bz2) = fa79312cd28f8fa948cf14b7400c3c8bd6c246e00c9204147c855028627f3486 -SIZE (aspell6-fa-0.02-0.tar.bz2) = 97168 -MD5 (aspell6-fi-0.7-0.tar.bz2) = 6d1032116982c0efab1af8fce83259c0 -SHA256 (aspell6-fi-0.7-0.tar.bz2) = f8d7f07b4511e606eb56392ddaa76fd29918006331795e5942ad11b510d0a51d -SIZE (aspell6-fi-0.7-0.tar.bz2) = 209249 -MD5 (aspell5-fo-0.2.16-1.tar.bz2) = a57e8870c272931da41cd1fc5a291f3d -SHA256 (aspell5-fo-0.2.16-1.tar.bz2) = f7e0ddc039bb4f5c142d39dab72d9dfcb951f5e46779f6e3cf1d084a69f95e08 -SIZE (aspell5-fo-0.2.16-1.tar.bz2) = 165901 -MD5 (aspell-fr-0.50-3.tar.bz2) = 53a2d05c4e8f7fabd3cefe24db977be7 -SHA256 (aspell-fr-0.50-3.tar.bz2) = f9421047519d2af9a7a466e4336f6e6ea55206b356cd33c8bd18cb626bf2ce91 -SIZE (aspell-fr-0.50-3.tar.bz2) = 283086 -MD5 (aspell5-ga-3.6-0.tar.bz2) = 69b1e0c06f039340302336506080efde -SHA256 (aspell5-ga-3.6-0.tar.bz2) = 1f87d107f7763a3e8414277663cb8aceb56521364c107c160ab64b641121fdb8 -SIZE (aspell5-ga-3.6-0.tar.bz2) = 539910 -MD5 (aspell5-gd-0.1.1-1.tar.bz2) = 171673ec92270f58f945c4317286220b -SHA256 (aspell5-gd-0.1.1-1.tar.bz2) = e316a08a75da8a0d4d15eb892023073a971e0a326382a5532db29856768e0929 -SIZE (aspell5-gd-0.1.1-1.tar.bz2) = 51167 -MD5 (aspell-gl-0.50-0.tar.bz2) = 0cd3c4e3e325e080689657f03eff8e8e -SHA256 (aspell-gl-0.50-0.tar.bz2) = 96833bc8301e0ff5fbb3b162f900237e0e806a204f9cae5e005998762cb48f4c -SIZE (aspell-gl-0.50-0.tar.bz2) = 112313 -MD5 (aspell6-gu-0.02-0.tar.bz2) = 42d3eb8a32a020aea56cd3e6ea3de0e1 -SHA256 (aspell6-gu-0.02-0.tar.bz2) = 1ab8c1337fbd8e40bcbd5f9ab18a7d3308844b1f2b269dd9cb0f4cff25a0dfa4 -SIZE (aspell6-gu-0.02-0.tar.bz2) = 30949 -MD5 (aspell-gv-0.50-0.tar.bz2) = 139b5aa1f5ea85fb7a4be0338039e959 -SHA256 (aspell-gv-0.50-0.tar.bz2) = bbe626feb5c81c1b7e7d3199d558bc5c560b2d4aef377d0e4b4227ae3c7176e6 -SIZE (aspell-gv-0.50-0.tar.bz2) = 69462 -MD5 (aspell6-he-0.9-0.tar.bz2) = f453989e1df364af9479e893c16ac9d8 -SHA256 (aspell6-he-0.9-0.tar.bz2) = 1960486db21a4ad273a0f91627c00afd9f49e5a27daf655e0ac8d6378e333b7f -SIZE (aspell6-he-0.9-0.tar.bz2) = 144899 -MD5 (aspell6-hi-0.01-0.tar.bz2) = 4c46324ec0d7d7567d266349387b373f -SHA256 (aspell6-hi-0.01-0.tar.bz2) = 274bc69601615a8e685230f641c44ecdd8390563cacb5ea1c3a85cb426ee3932 -SIZE (aspell6-hi-0.01-0.tar.bz2) = 51021 -MD5 (aspell5-hil-0.11-0.tar.bz2) = 6ce553007a773a1c2ffd68b660ddb60b -SHA256 (aspell5-hil-0.11-0.tar.bz2) = 570a374fd0b97943bc6893cf25ac7b23da815120842a80144e2c7ee8b41388e8 -SIZE (aspell5-hil-0.11-0.tar.bz2) = 46288 -MD5 (aspell-hr-0.51-0.tar.bz2) = 7d2fb9af47266884c731691123a95a8d -SHA256 (aspell-hr-0.51-0.tar.bz2) = 2ac4030354d7961e45d63b46e06e59248d59cc70dfc9e1d8ee0ae21d9c774a25 -SIZE (aspell-hr-0.51-0.tar.bz2) = 208118 -MD5 (aspell6-hsb-0.01-1.tar.bz2) = b7a0e5fa5843f080bfce2b441f46d981 -SHA256 (aspell6-hsb-0.01-1.tar.bz2) = 77d810608dd637a5f6e545b5ac36f986877778c485efdef16fcfd7d918a10e8e -SIZE (aspell6-hsb-0.01-1.tar.bz2) = 109026 -MD5 (aspell6-hu-0.99.4.2-0.tar.bz2) = 4f4e1e98019a89d0ebf43ec59ae68254 -SHA256 (aspell6-hu-0.99.4.2-0.tar.bz2) = 3335a7b45cf9774bccf03740fbddeb7ec4752dd87178fa93f92d4c71e3f236b5 -SIZE (aspell6-hu-0.99.4.2-0.tar.bz2) = 375949 -MD5 (aspell-ia-0.50-1.tar.bz2) = 36846c747a4cb7874b00f37752e83f25 -SHA256 (aspell-ia-0.50-1.tar.bz2) = 5797cb59606d007cf8fe5b9ec435de0d63b2d0e0d391ed8850ef8aa3f4bb0c2f -SIZE (aspell-ia-0.50-1.tar.bz2) = 70883 -MD5 (aspell5-id-1.2-0.tar.bz2) = 9136385a6ce0ff0d113427ab3c974254 -SHA256 (aspell5-id-1.2-0.tar.bz2) = 523912082848d891746dbb233f2ddb2cdbab6750dc76c38b3f6e000c9eb37308 -SIZE (aspell5-id-1.2-0.tar.bz2) = 76958 -MD5 (aspell-is-0.51.1-0.tar.bz2) = 1e0b6125d91d7edad710482ddcce2d23 -SHA256 (aspell-is-0.51.1-0.tar.bz2) = 3035bd29dad929ce66e6acdc7c29670df458e0d13fe178241b212f481111e3d6 -SIZE (aspell-is-0.51.1-0.tar.bz2) = 323850 -MD5 (aspell6-it-2.2_20050523-0.tar.bz2) = b1217299a0b67d1e121494d7ec18a88d -SHA256 (aspell6-it-2.2_20050523-0.tar.bz2) = 3b19dc709924783c8d87111aa9653dc6c000e845183778abee750215d83aaebd -SIZE (aspell6-it-2.2_20050523-0.tar.bz2) = 216189 -MD5 (aspell6-la-20020503-0.tar.bz2) = d42c679b95ba9b094aaa65f118834bf6 -SHA256 (aspell6-la-20020503-0.tar.bz2) = d486b048d1c3056d3a555744584a81873a63ecd4641f04e8b7bf9910b98d2985 -SIZE (aspell6-la-20020503-0.tar.bz2) = 42722 -MD5 (aspell6-lt-1.1+cvs20060103-0.tar.bz2) = ee034ad7cefa51e8b6b531f5ade527a6 -SHA256 (aspell6-lt-1.1+cvs20060103-0.tar.bz2) = dd846ada7cfb42b6106543163d045adc78dfe938b3f32ae1da2525bb82b0fa9f -SIZE (aspell6-lt-1.1+cvs20060103-0.tar.bz2) = 153912 -MD5 (aspell6-lv-0.5.5-1.tar.bz2) = cd120047c0b160a40361cbf03913e91f -SHA256 (aspell6-lv-0.5.5-1.tar.bz2) = 3c30e206ea562b2e759fb7467680e1a01d5deec5edbd66653c83184550d1fb8a -SIZE (aspell6-lv-0.5.5-1.tar.bz2) = 72416 -MD5 (aspell-mi-0.50-0.tar.bz2) = 8b1a07032ee086662bfe44a2e0459db4 -SHA256 (aspell-mi-0.50-0.tar.bz2) = beee1e33baf6301e3ffc56558c84c3e7d29622541b232c1aea1e91d12ebd7d89 -SIZE (aspell-mi-0.50-0.tar.bz2) = 57818 -MD5 (aspell-mk-0.50-0.tar.bz2) = 50e15df6b68e78d1baa789f517b2401b -SHA256 (aspell-mk-0.50-0.tar.bz2) = 15fc2380fb673d2003d8075d8cef2b0dbb4d30b430587ad459257681904d9971 -SIZE (aspell-mk-0.50-0.tar.bz2) = 122690 -MD5 (aspell6-mn-0.01-0.tar.bz2) = 20aa91b99ce5e7a2b4168711398f5dfe -SHA256 (aspell6-mn-0.01-0.tar.bz2) = aadf3a7b93a5d36ea9c045cfcb3b0dc7916fbb08e09117f56c055eb6c485b047 -SIZE (aspell6-mn-0.01-0.tar.bz2) = 35446 -MD5 (aspell6-mr-0.10-0.tar.bz2) = 489ac0c368d3012525134758f8572cac -SHA256 (aspell6-mr-0.10-0.tar.bz2) = d3a35a40bee0234a5b388375485ab8bf0ba8edbf3b0a82e2c2f76a40a8586f33 -SIZE (aspell6-mr-0.10-0.tar.bz2) = 151720 -MD5 (aspell-ms-0.50-0.tar.bz2) = cfdd94bba4781766c5d870202abd60e0 -SHA256 (aspell-ms-0.50-0.tar.bz2) = 3cc4e3537bb0f455ce58b4d2fa84b03dc678e0153536a41dee1a3a7623dc246f -SIZE (aspell-ms-0.50-0.tar.bz2) = 50368 -MD5 (aspell-mt-0.50-0.tar.bz2) = 6df98356e411891c956c249731b708fa -SHA256 (aspell-mt-0.50-0.tar.bz2) = e00fcaad60a90cfed687ba02f62be8c27b8650457dd3c5bdcb064b476da059b4 -SIZE (aspell-mt-0.50-0.tar.bz2) = 124114 -MD5 (aspell-nb-0.50.1-0.tar.bz2) = d1173a5ce04f39e9c93183da691e7ce8 -SHA256 (aspell-nb-0.50.1-0.tar.bz2) = e7746e8b617b2df576c1172399544818084524504202b16c747f52db5e5d228a -SIZE (aspell-nb-0.50.1-0.tar.bz2) = 423161 -MD5 (aspell6-nds-0.01-0.tar.bz2) = 76b2b3f2bdeefdfc6ce75ae11c9ae149 -SHA256 (aspell6-nds-0.01-0.tar.bz2) = ce381e869def56e54a31f965df518deca0e6f12238859650fcb115623f8772da -SIZE (aspell6-nds-0.01-0.tar.bz2) = 32658 -MD5 (aspell-nl-0.50-2.tar.bz2) = c3ef9fd7dc4c47d816eee9ef5149c76a -SHA256 (aspell-nl-0.50-2.tar.bz2) = 440e0b7df8c5903d728221fe4ba88a74658ce14c8bb04b290c41402dfd41cb39 -SIZE (aspell-nl-0.50-2.tar.bz2) = 428365 -MD5 (aspell-nn-0.50.1-1.tar.bz2) = 3711eb9df68f25262af10119579239bc -SHA256 (aspell-nn-0.50.1-1.tar.bz2) = ac6610540c7e134f09cbebbd148f9316bef27bc491e377638ef4e2950b2d5370 -SIZE (aspell-nn-0.50.1-1.tar.bz2) = 335156 -MD5 (aspell5-ny-0.01-0.tar.bz2) = 856906a424fcbc50cc925d692d294215 -SHA256 (aspell5-ny-0.01-0.tar.bz2) = 176f970f6ba3bb448c7e946fa8d209eb4da7138ac6899af7731a98c7b6484b3e -SIZE (aspell5-ny-0.01-0.tar.bz2) = 22952 -MD5 (aspell6-or-0.03-1.tar.bz2) = 6c9d702607eaa43ef665007c4b857ba4 -SHA256 (aspell6-or-0.03-1.tar.bz2) = d6ffa369f8918d74cdea966112bc5cb700e09dca5ac6b968660cfc22044ef24f -SIZE (aspell6-or-0.03-1.tar.bz2) = 20525 -MD5 (aspell6-pa-0.01-1.tar.bz2) = de336d6ef55ad6fa81f8903765c6c95d -SHA256 (aspell6-pa-0.01-1.tar.bz2) = c7f3abb1c5efe62e072ca8bef44b0d0506501bbb7b48ced1d0d95f10e61fc945 -SIZE (aspell6-pa-0.01-1.tar.bz2) = 22143 -MD5 (aspell-pl-0.51-0.tar.bz2) = 5435be1c9c39326a02e2798d8b4d257b -SHA256 (aspell-pl-0.51-0.tar.bz2) = a71ce4dbc3d6d0adcf386b1776e359fff57f0ba422d338e8d1fe9569a2646ca8 -SIZE (aspell-pl-0.51-0.tar.bz2) = 624458 -MD5 (aspell-pt-0.50-2.tar.bz2) = e4e15179f90b76ec0336b687d1293edd -SHA256 (aspell-pt-0.50-2.tar.bz2) = 4acbffe03b918cf32b340949d0f167df9073190d347a092f45d4e400a09b2fa6 -SIZE (aspell-pt-0.50-2.tar.bz2) = 201341 -MD5 (aspell6-qu-0.02-0.tar.bz2) = b1c4a68fd5f46cadb600d925b0764fa5 -SHA256 (aspell6-qu-0.02-0.tar.bz2) = 80977629b8425bda7ffd951628d23a6793a457f4948151c71ff9e0bff5073f01 -SIZE (aspell6-qu-0.02-0.tar.bz2) = 85541 -MD5 (aspell-ro-0.50-2.tar.bz2) = 96d97a79a0a0e04c580e0d0671d650c9 -SHA256 (aspell-ro-0.50-2.tar.bz2) = ba25d1aa9b6a6288e7a785a49fce81f1fbfb4269237c4730661f876d6d0cf4ec -SIZE (aspell-ro-0.50-2.tar.bz2) = 64110 -MD5 (aspell6-ru-0.99f7-1.tar.bz2) = c4c98eaa5e77ad3adccbc5c96cb57cb3 -SHA256 (aspell6-ru-0.99f7-1.tar.bz2) = 5c29b6ccce57bc3f7c4fb0510d330446b9c769e59c92bdfede27333808b6e646 -SIZE (aspell6-ru-0.99f7-1.tar.bz2) = 427312 -MD5 (aspell-rw-0.50-0.tar.bz2) = d369916c4f4159b04e43daf31dde60c9 -SHA256 (aspell-rw-0.50-0.tar.bz2) = 3406102e0e33344b6eae73dbfaf86d8e411b7c97775827a6db79c943ce43f081 -SIZE (aspell-rw-0.50-0.tar.bz2) = 21821 -MD5 (aspell5-sc-1.0.tar.bz2) = 05284890c3445c5850a3c1410790a057 -SHA256 (aspell5-sc-1.0.tar.bz2) = 591ae22f712b472182b41b8bc97dce1e5ecd240c75eccc25f59ab15c60be8742 -SIZE (aspell5-sc-1.0.tar.bz2) = 281538 -MD5 (aspell-sk-0.52-0.tar.bz2) = ce90b109f7c602bde949880920bbbbfd -SHA256 (aspell-sk-0.52-0.tar.bz2) = b506542d8c63d935efc9760a392b23fd5dd5683822b26a5ce724241f2c013563 -SIZE (aspell-sk-0.52-0.tar.bz2) = 383840 -MD5 (aspell-sl-0.50-0.tar.bz2) = c4c11402bc834d796d1b56e711470480 -SHA256 (aspell-sl-0.50-0.tar.bz2) = e566d127f7130da2df7b1f4f4cb4bc51932517b0c24299f84498ba325e6133d1 -SIZE (aspell-sl-0.50-0.tar.bz2) = 215463 -MD5 (aspell6-sr-0.02.tar.bz2) = a068ba095e7246fd3bbc92e7d0287998 -SHA256 (aspell6-sr-0.02.tar.bz2) = 705e58fb390633c89c4cb224a1cfb34e67e09496448f7adc6500494b6e009289 -SIZE (aspell6-sr-0.02.tar.bz2) = 574923 -MD5 (aspell-sv-0.51-0.tar.bz2) = d180c781f8986ea0f65b6b18f02a494e -SHA256 (aspell-sv-0.51-0.tar.bz2) = 9b70573c9c8cf76f5cdb6abcdfb834a754bbaa1efd7d6f57f47b8a91a19c5c0a -SIZE (aspell-sv-0.51-0.tar.bz2) = 93942 -MD5 (aspell-sw-0.50-0.tar.bz2) = 26ccc3500d7f7c288b74bba1c1fab38f -SHA256 (aspell-sw-0.50-0.tar.bz2) = 7ed51f107dc57a7b3555f20d1cee2903275d63e022b055ea6b6409d9e081f297 -SIZE (aspell-sw-0.50-0.tar.bz2) = 102172 -MD5 (aspell6-ta-20040424-1.tar.bz2) = fc98b0b8d79291448d3a4f48ebbf2bd0 -SHA256 (aspell6-ta-20040424-1.tar.bz2) = 52f552f1a2c0fc53ed4eac75990ff75bccf3d5f1440ca3d948d96eafe5f3486a -SIZE (aspell6-ta-20040424-1.tar.bz2) = 44452 -MD5 (aspell6-te-0.01-2.tar.bz2) = 645f7f7204520552cddbe1c9ae64df2a -SHA256 (aspell6-te-0.01-2.tar.bz2) = 3682638a757a65afcc770e565e68347e8eb7be94052d9d6eff64fc767e7fec5d -SIZE (aspell6-te-0.01-2.tar.bz2) = 310738 -MD5 (aspell5-tet-0.1.1.tar.bz2) = 6a18e0253d7d6baa49daca513b0d782b -SHA256 (aspell5-tet-0.1.1.tar.bz2) = 9dd546c9c48f42085e3c17f22c8e6d46e56f3ea9c4618b933c642a091df1c09e -SIZE (aspell5-tet-0.1.1.tar.bz2) = 33044 -MD5 (aspell5-tl-0.02-1.tar.bz2) = 126437909424021a553055b1b96fdf73 -SHA256 (aspell5-tl-0.02-1.tar.bz2) = 48b65d2c6886f353d1e1756a93bcd4d8ab2b88b021176c25dfdb5d8bcf348acd -SIZE (aspell5-tl-0.02-1.tar.bz2) = 40642 -MD5 (aspell5-tn-1.0.1-0.tar.bz2) = 6e5ef98452b36a211a4fc1fdbadda322 -SHA256 (aspell5-tn-1.0.1-0.tar.bz2) = 41a0c20e1d2acaa28a647d74b40778e491815566019f79e7049621f40d3bbd60 -SIZE (aspell5-tn-1.0.1-0.tar.bz2) = 22127 -MD5 (aspell-tr-0.50-0.tar.bz2) = 432ecdc4e5233da0a4c1a52ed9103fa2 -SHA256 (aspell-tr-0.50-0.tar.bz2) = 0bc6530e5eebf8b2b53f1e8add596c62099173f62b9baa6b3efaa86752bdfb4a -SIZE (aspell-tr-0.50-0.tar.bz2) = 84846 -MD5 (aspell6-uk-1.1-0.tar.bz2) = f3ffe52d86b83a394ce29e88bd3ef9d2 -SHA256 (aspell6-uk-1.1-0.tar.bz2) = dcd569dd0bae8060a39769dd353556bf042b1e2d074e5c57fe53e6b1210560b8 -SIZE (aspell6-uk-1.1-0.tar.bz2) = 179098 -MD5 (aspell6-uz-0.5-0.tar.bz2) = 6115c0cf725964c6f1eaa21040824b86 -SHA256 (aspell6-uz-0.5-0.tar.bz2) = aa6eb06169f885c309aa6d7d48ff0a0c4a39ee87eb2937166fcb76708e791565 -SIZE (aspell6-uz-0.5-0.tar.bz2) = 71160 -MD5 (aspell6-vi-0.01.1-1.tar.bz2) = 314185e521900df0fab8375fa609bba2 -SHA256 (aspell6-vi-0.01.1-1.tar.bz2) = 3cd85d53bb62b0d104cb5c03e142c3bbe1ad64329d7beae057854816dc7e7c17 -SIZE (aspell6-vi-0.01.1-1.tar.bz2) = 30843 -MD5 (aspell-wa-0.50-0.tar.bz2) = e3817402d7be19d4b0d0342d3a5970ea -SHA256 (aspell-wa-0.50-0.tar.bz2) = 5a17aa8aa37afbcc8f52336476670b93cba16462bcb89dd46b80f4d9cfe73fe4 -SIZE (aspell-wa-0.50-0.tar.bz2) = 50363 -MD5 (aspell6-yi-0.01.1-1.tar.bz2) = 9d514384bf00cfb9ceb0d5f78f998d93 -SHA256 (aspell6-yi-0.01.1-1.tar.bz2) = 9879d35a5b0b86f8e217601568480f2f634bc8b7a97341e9e80b0d40a8202856 -SIZE (aspell6-yi-0.01.1-1.tar.bz2) = 74382 -MD5 (aspell-zu-0.50-0.tar.bz2) = 2478cbbb6abaf5ed74bc2da7e7152116 -SHA256 (aspell-zu-0.50-0.tar.bz2) = 3fa255cd0b20e6229a53df972fd3c5ed8481db11cfd0347dd3da629bbb7a6796 -SIZE (aspell-zu-0.50-0.tar.bz2) = 168226 diff --git a/textproc/aspell/files/aspell.ver.in b/textproc/aspell/files/aspell.ver.in new file mode 100644 index 000000000000..6c43688340e7 --- /dev/null +++ b/textproc/aspell/files/aspell.ver.in @@ -0,0 +1,3 @@ +# $FreeBSD$ +# Installed by textproc/aspell, please don't edit manually! +VER= %%VERINST%% diff --git a/textproc/aspell/files/verdict b/textproc/aspell/files/verdict deleted file mode 100644 index 0d1195320e5b..000000000000 --- a/textproc/aspell/files/verdict +++ /dev/null @@ -1,78 +0,0 @@ -VERDICT_AF= -af-0.50-0 -VERDICT_AM= 6-am-0.03-1 -VERDICT_AZ= 6-az-0.02-0 -VERDICT_BE= 5-be-0.01 -VERDICT_BG= 5-bg-4.0-0 -VERDICT_BN= 6-bn-0.01.1-1 -VERDICT_BR= -br-0.50-1 -VERDICT_CA= 6-ca-20040130-1 -VERDICT_CS= -cs-0.51-0 -VERDICT_CSB= 6-csb-0.02-0 -VERDICT_CY= -cy-0.50-3 -VERDICT_DA= 5-da-1.4.42-1 -VERDICT_DE= 6-de-20030222-1 -VERDICT_DE-ALT= 6-de-alt-2.1-1 -VERDICT_EL= -el-0.50-3 -VERDICT_EN= 6-en-6.0-0 -VERDICT_EO= -eo-0.50-2 -VERDICT_ES= -es-0.50-2 -VERDICT_ET= 6-et-0.1.21-1 -VERDICT_FA= 6-fa-0.02-0 -VERDICT_FI= 6-fi-0.7-0 -VERDICT_FO= 5-fo-0.2.16-1 -VERDICT_FR= -fr-0.50-3 -VERDICT_GA= 5-ga-3.6-0 -VERDICT_GD= 5-gd-0.1.1-1 -VERDICT_GL= -gl-0.50-0 -VERDICT_GU= 6-gu-0.02-0 -VERDICT_GV= -gv-0.50-0 -VERDICT_HE= 6-he-0.9-0 -VERDICT_HI= 6-hi-0.01-0 -VERDICT_HIL= 5-hil-0.11-0 -VERDICT_HR= -hr-0.51-0 -VERDICT_HSB= 6-hsb-0.01-1 -VERDICT_HU= 6-hu-0.99.4.2-0 -VERDICT_IA= -ia-0.50-1 -VERDICT_ID= 5-id-1.2-0 -VERDICT_IS= -is-0.51.1-0 -VERDICT_IT= 6-it-2.2_20050523-0 -VERDICT_LA= 6-la-20020503-0 -VERDICT_LT= 6-lt-1.1+cvs20060103-0 -VERDICT_LV= 6-lv-0.5.5-1 -VERDICT_MI= -mi-0.50-0 -VERDICT_MK= -mk-0.50-0 -VERDICT_MN= 6-mn-0.01-0 -VERDICT_MR= 6-mr-0.10-0 -VERDICT_MS= -ms-0.50-0 -VERDICT_MT= -mt-0.50-0 -VERDICT_NB= -nb-0.50.1-0 -VERDICT_NDS= 6-nds-0.01-0 -VERDICT_NL= -nl-0.50-2 -VERDICT_NN= -nn-0.50.1-1 -VERDICT_NY= 5-ny-0.01-0 -VERDICT_OR= 6-or-0.03-1 -VERDICT_PA= 6-pa-0.01-1 -VERDICT_PL= -pl-0.51-0 -VERDICT_PT= -pt-0.50-2 -VERDICT_QU= 6-qu-0.02-0 -VERDICT_RO= -ro-0.50-2 -VERDICT_RU= 6-ru-0.99f7-1 -VERDICT_RW= -rw-0.50-0 -VERDICT_SC= 5-sc-1.0 -VERDICT_SK= -sk-0.52-0 -VERDICT_SL= -sl-0.50-0 -VERDICT_SR= 6-sr-0.02 -VERDICT_SV= -sv-0.51-0 -VERDICT_SW= -sw-0.50-0 -VERDICT_TA= 6-ta-20040424-1 -VERDICT_TE= 6-te-0.01-2 -VERDICT_TET= 5-tet-0.1.1 -VERDICT_TL= 5-tl-0.02-1 -VERDICT_TN= 5-tn-1.0.1-0 -VERDICT_TR= -tr-0.50-0 -VERDICT_UK= 6-uk-1.1-0 -VERDICT_UZ= 6-uz-0.5-0 -VERDICT_VI= 6-vi-0.01.1-1 -VERDICT_WA= -wa-0.50-0 -VERDICT_YI= 6-yi-0.01.1-1 -VERDICT_ZU= -zu-0.50-0 diff --git a/textproc/aspell/pkg-plist b/textproc/aspell/pkg-plist index 84f0aa000b31..6f530105f193 100644 --- a/textproc/aspell/pkg-plist +++ b/textproc/aspell/pkg-plist @@ -9,6 +9,7 @@ bin/pspell-config bin/run-with-aspell %%SCRIPTS%%bin/spell bin/word-list-compress +etc/aspell.ver include/aspell.h include/pspell/pspell.h lib/aspell-%%VER%%/cp1250.cmap diff --git a/textproc/aspell/pkg-plist.af b/textproc/aspell/pkg-plist.af deleted file mode 100644 index 65f26b856490..000000000000 --- a/textproc/aspell/pkg-plist.af +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/af.dat -share/aspell/af.multi -share/aspell/af.rws -share/aspell/afrikaans.alias diff --git a/textproc/aspell/pkg-plist.am b/textproc/aspell/pkg-plist.am deleted file mode 100644 index 8f43d1637f96..000000000000 --- a/textproc/aspell/pkg-plist.am +++ /dev/null @@ -1,8 +0,0 @@ -lib/aspell-%%VER%%/am.dat -lib/aspell-%%VER%%/am_affix.dat -lib/aspell-%%VER%%/am_phonet.dat -lib/aspell-%%VER%%/s-ethi.cmap -lib/aspell-%%VER%%/s-ethi.cset -share/aspell/am.multi -share/aspell/am.rws -share/aspell/amharic.alias diff --git a/textproc/aspell/pkg-plist.az b/textproc/aspell/pkg-plist.az deleted file mode 100644 index 12e222d04a63..000000000000 --- a/textproc/aspell/pkg-plist.az +++ /dev/null @@ -1,7 +0,0 @@ -lib/aspell-%%VER%%/az.dat -lib/aspell-%%VER%%/l-az.cmap -lib/aspell-%%VER%%/l-az.cset -share/aspell/az.multi -share/aspell/az.rws -share/aspell/azerbaijani.alias -share/aspell/azeri.alias diff --git a/textproc/aspell/pkg-plist.be b/textproc/aspell/pkg-plist.be deleted file mode 100644 index 3c3e579459f6..000000000000 --- a/textproc/aspell/pkg-plist.be +++ /dev/null @@ -1,9 +0,0 @@ -lib/aspell-%%VER%%/be.dat -share/aspell/be-common.rws -share/aspell/be-only.rws -share/aspell/be.multi -share/aspell/be_BY.alias -share/aspell/be_SU-only.rws -share/aspell/be_SU.multi -share/aspell/belarusian-soviet.alias -share/aspell/belarusian.alias diff --git a/textproc/aspell/pkg-plist.bg b/textproc/aspell/pkg-plist.bg deleted file mode 100644 index 023dedb85efd..000000000000 --- a/textproc/aspell/pkg-plist.bg +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/bg_phonet.dat -lib/aspell-%%VER%%/bulgarian.kbd -lib/aspell-%%VER%%/bg.dat -share/aspell/bg.multi -share/aspell/bg.rws -share/aspell/bulgarian.alias diff --git a/textproc/aspell/pkg-plist.bn b/textproc/aspell/pkg-plist.bn deleted file mode 100644 index a8a91be6b16b..000000000000 --- a/textproc/aspell/pkg-plist.bn +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/u-beng.cmap -lib/aspell-%%VER%%/u-beng.cset -lib/aspell-%%VER%%/bn.dat -share/aspell/bengali.alias -share/aspell/bn.multi -share/aspell/bn.rws diff --git a/textproc/aspell/pkg-plist.br b/textproc/aspell/pkg-plist.br deleted file mode 100644 index 7c0979b7524b..000000000000 --- a/textproc/aspell/pkg-plist.br +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/br.dat -lib/aspell-%%VER%%/br_phonet.dat -share/aspell/br.multi -share/aspell/br.rws -share/aspell/breton.alias -share/aspell/brezhoneg.alias diff --git a/textproc/aspell/pkg-plist.ca b/textproc/aspell/pkg-plist.ca deleted file mode 100644 index f17f86aa572d..000000000000 --- a/textproc/aspell/pkg-plist.ca +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/ca.dat -lib/aspell-%%VER%%/ca_affix.dat -share/aspell/ca.multi -share/aspell/ca.rws -share/aspell/catalan.alias diff --git a/textproc/aspell/pkg-plist.cs b/textproc/aspell/pkg-plist.cs deleted file mode 100644 index 70f3f2fbfdcc..000000000000 --- a/textproc/aspell/pkg-plist.cs +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/cs.dat -share/aspell/cs.multi -share/aspell/cs.rws -share/aspell/czech.alias diff --git a/textproc/aspell/pkg-plist.csb b/textproc/aspell/pkg-plist.csb deleted file mode 100644 index aa664391983f..000000000000 --- a/textproc/aspell/pkg-plist.csb +++ /dev/null @@ -1,7 +0,0 @@ -lib/aspell-%%VER%%/csb.dat -lib/aspell-%%VER%%/l-csb.cmap -lib/aspell-%%VER%%/l-csb.cset -share/aspell/csb.multi -share/aspell/csb.rws -share/aspell/kashubian.alias -share/aspell/kaszĂ«bsczi.alias diff --git a/textproc/aspell/pkg-plist.cy b/textproc/aspell/pkg-plist.cy deleted file mode 100644 index be6f939ae494..000000000000 --- a/textproc/aspell/pkg-plist.cy +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/cy.dat -share/aspell/cy.multi -share/aspell/cy.rws -share/aspell/welsh.alias diff --git a/textproc/aspell/pkg-plist.da b/textproc/aspell/pkg-plist.da deleted file mode 100644 index 87f680834102..000000000000 --- a/textproc/aspell/pkg-plist.da +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/da_phonet.dat -lib/aspell-%%VER%%/da.dat -share/aspell/da.multi -share/aspell/da.rws -share/aspell/dansk.alias diff --git a/textproc/aspell/pkg-plist.de b/textproc/aspell/pkg-plist.de deleted file mode 100644 index e11f30c6942d..000000000000 --- a/textproc/aspell/pkg-plist.de +++ /dev/null @@ -1,14 +0,0 @@ -lib/aspell-%%VER%%/de_affix.dat -lib/aspell-%%VER%%/de_phonet.dat -lib/aspell-%%VER%%/de.dat -share/aspell/de-common.rws -share/aspell/de.multi -share/aspell/de_AT-only.rws -share/aspell/de_AT.multi -share/aspell/de_CH-only.rws -share/aspell/de_CH.multi -share/aspell/de_DE-only.rws -share/aspell/de_DE.multi -share/aspell/deutsch.alias -share/aspell/german.alias -share/aspell/swiss.alias diff --git a/textproc/aspell/pkg-plist.de-alt b/textproc/aspell/pkg-plist.de-alt deleted file mode 100644 index 470cbdb016d9..000000000000 --- a/textproc/aspell/pkg-plist.de-alt +++ /dev/null @@ -1,7 +0,0 @@ -lib/aspell-%%VER%%/de-alt.dat -lib/aspell-%%VER%%/de-alt_affix.dat -lib/aspell-%%VER%%/de-alt_phonet.dat -share/aspell/de-alt.multi -share/aspell/de-alt.rws -share/aspell/deutsch-alt.alias -share/aspell/german-old.alias diff --git a/textproc/aspell/pkg-plist.el b/textproc/aspell/pkg-plist.el deleted file mode 100644 index 8c9961a8091a..000000000000 --- a/textproc/aspell/pkg-plist.el +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/el_phonet.dat -lib/aspell-%%VER%%/el.dat -share/aspell/el.multi -share/aspell/el.rws -share/aspell/greek.alias diff --git a/textproc/aspell/pkg-plist.eo b/textproc/aspell/pkg-plist.eo deleted file mode 100644 index a49e02c6a52c..000000000000 --- a/textproc/aspell/pkg-plist.eo +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/eo.dat -share/aspell/eo.multi -share/aspell/eo.rws -share/aspell/esperanto.alias diff --git a/textproc/aspell/pkg-plist.es b/textproc/aspell/pkg-plist.es deleted file mode 100644 index 68c0eea3a729..000000000000 --- a/textproc/aspell/pkg-plist.es +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/es.dat -share/aspell/es.multi -share/aspell/es.rws -share/aspell/espańol.alias -share/aspell/esponol.alias -share/aspell/spanish.alias diff --git a/textproc/aspell/pkg-plist.et b/textproc/aspell/pkg-plist.et deleted file mode 100644 index b8b9d8301d2e..000000000000 --- a/textproc/aspell/pkg-plist.et +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/et_affix.dat -lib/aspell-%%VER%%/et.dat -share/aspell/estonian.alias -share/aspell/et.multi -share/aspell/et.rws diff --git a/textproc/aspell/pkg-plist.fa b/textproc/aspell/pkg-plist.fa deleted file mode 100644 index 2367ddbd2dad..000000000000 --- a/textproc/aspell/pkg-plist.fa +++ /dev/null @@ -1,7 +0,0 @@ -lib/aspell-%%VER%%/fa.dat -lib/aspell-%%VER%%/l-fa.cmap -lib/aspell-%%VER%%/l-fa.cset -share/aspell/fa.multi -share/aspell/fa.rws -share/aspell/farsi.alias -share/aspell/persian.alias diff --git a/textproc/aspell/pkg-plist.fi b/textproc/aspell/pkg-plist.fi deleted file mode 100644 index 90efed69f784..000000000000 --- a/textproc/aspell/pkg-plist.fi +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/fi.dat -lib/aspell-%%VER%%/fi_affix.dat -share/aspell/fi.multi -share/aspell/fi.rws -share/aspell/finnish.alias diff --git a/textproc/aspell/pkg-plist.fo b/textproc/aspell/pkg-plist.fo deleted file mode 100644 index 07d971435f0f..000000000000 --- a/textproc/aspell/pkg-plist.fo +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/fo.dat -lib/aspell-%%VER%%/fo_phonet.dat -share/aspell/fĂžroyskt.alias -share/aspell/faroese.alias -share/aspell/fo.multi -share/aspell/fo.rws diff --git a/textproc/aspell/pkg-plist.fr b/textproc/aspell/pkg-plist.fr deleted file mode 100644 index fa74ce9fe10e..000000000000 --- a/textproc/aspell/pkg-plist.fr +++ /dev/null @@ -1,48 +0,0 @@ -lib/aspell-%%VER%%/fr.dat -lib/aspell-%%VER%%/fr_phonet.dat -share/aspell/fr-40-only.rws -share/aspell/fr-40.multi -share/aspell/fr-60-only.rws -share/aspell/fr-60.multi -share/aspell/fr-80-only.rws -share/aspell/fr-80.multi -share/aspell/fr-lrg.alias -share/aspell/fr-med.alias -share/aspell/fr-sml.alias -share/aspell/fr.multi -share/aspell/fr_CH-40.multi -share/aspell/fr_CH-60.multi -share/aspell/fr_CH-80.multi -share/aspell/fr_CH-lrg.alias -share/aspell/fr_CH-med.alias -share/aspell/fr_CH-only.rws -share/aspell/fr_CH-sml.alias -share/aspell/fr_CH.multi -share/aspell/fr_FR-40.multi -share/aspell/fr_FR-60.multi -share/aspell/fr_FR-80.multi -share/aspell/fr_FR-lrg.alias -share/aspell/fr_FR-med.alias -share/aspell/fr_FR-sml.alias -share/aspell/fr_FR.multi -share/aspell/francais-40.alias -share/aspell/francais-60.alias -share/aspell/francais-80.alias -share/aspell/francais-lrg.alias -share/aspell/francais-med.alias -share/aspell/francais-sml.alias -share/aspell/francais.alias -share/aspell/french-40.alias -share/aspell/french-60.alias -share/aspell/french-80.alias -share/aspell/french-lrg.alias -share/aspell/french-med.alias -share/aspell/french-sml.alias -share/aspell/french.alias -share/aspell/suisse-40.alias -share/aspell/suisse-60.alias -share/aspell/suisse-80.alias -share/aspell/suisse-lrg.alias -share/aspell/suisse-med.alias -share/aspell/suisse-sml.alias -share/aspell/suisse.alias diff --git a/textproc/aspell/pkg-plist.ga b/textproc/aspell/pkg-plist.ga deleted file mode 100644 index 52a9d7e311df..000000000000 --- a/textproc/aspell/pkg-plist.ga +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/ga_phonet.dat -lib/aspell-%%VER%%/ga.dat -share/aspell/ga.multi -share/aspell/ga.rws -share/aspell/gaeilge.alias -share/aspell/irish.alias diff --git a/textproc/aspell/pkg-plist.gd b/textproc/aspell/pkg-plist.gd deleted file mode 100644 index daacc274a7ee..000000000000 --- a/textproc/aspell/pkg-plist.gd +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/gd_phonet.dat -lib/aspell-%%VER%%/gd.dat -share/aspell/gaidhlig.alias -share/aspell/gd.multi -share/aspell/gd.rws diff --git a/textproc/aspell/pkg-plist.gl b/textproc/aspell/pkg-plist.gl deleted file mode 100644 index 298c2ddfdf6c..000000000000 --- a/textproc/aspell/pkg-plist.gl +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/gl_phonet.dat -lib/aspell-%%VER%%/gl.dat -share/aspell/gl.multi -share/aspell/gl.rws diff --git a/textproc/aspell/pkg-plist.gu b/textproc/aspell/pkg-plist.gu deleted file mode 100644 index 18bba28978af..000000000000 --- a/textproc/aspell/pkg-plist.gu +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/u-gujr.cmap -lib/aspell-%%VER%%/u-gujr.cset -lib/aspell-%%VER%%/gu.dat -share/aspell/gu.multi -share/aspell/gu.rws -share/aspell/gujarati.alias diff --git a/textproc/aspell/pkg-plist.gv b/textproc/aspell/pkg-plist.gv deleted file mode 100644 index 15e2665c7b99..000000000000 --- a/textproc/aspell/pkg-plist.gv +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/gv.dat -share/aspell/gaelg.alias -share/aspell/gv.multi -share/aspell/gv.rws -share/aspell/manx.alias diff --git a/textproc/aspell/pkg-plist.he b/textproc/aspell/pkg-plist.he deleted file mode 100644 index a0c57884de62..000000000000 --- a/textproc/aspell/pkg-plist.he +++ /dev/null @@ -1,7 +0,0 @@ -lib/aspell-%%VER%%/he.dat -lib/aspell-%%VER%%/he_affix.dat -lib/aspell-%%VER%%/iso-8859-8-nl.cmap -lib/aspell-%%VER%%/iso-8859-8-nl.cset -share/aspell/he.multi -share/aspell/he.rws -share/aspell/hebrew.alias diff --git a/textproc/aspell/pkg-plist.hi b/textproc/aspell/pkg-plist.hi deleted file mode 100644 index 39d3c12b2a4a..000000000000 --- a/textproc/aspell/pkg-plist.hi +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/hi.dat -lib/aspell-%%VER%%/u-deva.cmap -lib/aspell-%%VER%%/u-deva.cset -share/aspell/hi.multi -share/aspell/hi.rws -share/aspell/hindi.alias diff --git a/textproc/aspell/pkg-plist.hil b/textproc/aspell/pkg-plist.hil deleted file mode 100644 index 55e7e50c1cf9..000000000000 --- a/textproc/aspell/pkg-plist.hil +++ /dev/null @@ -1,3 +0,0 @@ -lib/aspell-%%VER%%/hil.dat -share/aspell/hil.multi -share/aspell/hil.rws diff --git a/textproc/aspell/pkg-plist.hr b/textproc/aspell/pkg-plist.hr deleted file mode 100644 index c1b874210bab..000000000000 --- a/textproc/aspell/pkg-plist.hr +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/hr.dat -share/aspell/hr.multi -share/aspell/hr.rws -share/aspell/croatian.alias diff --git a/textproc/aspell/pkg-plist.hsb b/textproc/aspell/pkg-plist.hsb deleted file mode 100644 index aa3dfa462c37..000000000000 --- a/textproc/aspell/pkg-plist.hsb +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/hsb_affix.dat -lib/aspell-%%VER%%/hsb.dat -share/aspell/hsb.multi -share/aspell/hsb.rws diff --git a/textproc/aspell/pkg-plist.hu b/textproc/aspell/pkg-plist.hu deleted file mode 100644 index 6cbe45739c03..000000000000 --- a/textproc/aspell/pkg-plist.hu +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/hu.dat -lib/aspell-%%VER%%/hu_affix.dat -share/aspell/hu.multi -share/aspell/hu.rws -share/aspell/hungarian.alias diff --git a/textproc/aspell/pkg-plist.ia b/textproc/aspell/pkg-plist.ia deleted file mode 100644 index d4ecd6592e73..000000000000 --- a/textproc/aspell/pkg-plist.ia +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/ia.dat -share/aspell/ia.multi -share/aspell/ia.rws -share/aspell/interlingua.alias diff --git a/textproc/aspell/pkg-plist.id b/textproc/aspell/pkg-plist.id deleted file mode 100644 index ae153899bc35..000000000000 --- a/textproc/aspell/pkg-plist.id +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/id.dat -share/aspell/id.multi -share/aspell/id.rws -share/aspell/indonesian.alias diff --git a/textproc/aspell/pkg-plist.is b/textproc/aspell/pkg-plist.is deleted file mode 100644 index 6ffb2e838624..000000000000 --- a/textproc/aspell/pkg-plist.is +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/is_phonet.dat -lib/aspell-%%VER%%/is.dat -share/aspell/icelandic.alias -share/aspell/is.multi -share/aspell/is.rws -share/aspell/íslenska.alias diff --git a/textproc/aspell/pkg-plist.it b/textproc/aspell/pkg-plist.it deleted file mode 100644 index 767f4d48bbd4..000000000000 --- a/textproc/aspell/pkg-plist.it +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/it.dat -lib/aspell-%%VER%%/it_affix.dat -share/aspell/it.multi -share/aspell/it.rws -share/aspell/italian.alias -share/aspell/italiano.alias diff --git a/textproc/aspell/pkg-plist.la b/textproc/aspell/pkg-plist.la deleted file mode 100644 index 6eb382f064f7..000000000000 --- a/textproc/aspell/pkg-plist.la +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/la.dat -lib/aspell-%%VER%%/la_affix.dat -share/aspell/la.multi -share/aspell/la.rws -share/aspell/latin.alias diff --git a/textproc/aspell/pkg-plist.lt b/textproc/aspell/pkg-plist.lt deleted file mode 100644 index 6c15c89a7510..000000000000 --- a/textproc/aspell/pkg-plist.lt +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/lt.dat -lib/aspell-%%VER%%/lt_affix.dat -share/aspell/lietuviu.alias -share/aspell/lithuanian.alias -share/aspell/lt.multi -share/aspell/lt.rws diff --git a/textproc/aspell/pkg-plist.lv b/textproc/aspell/pkg-plist.lv deleted file mode 100644 index f76361767a44..000000000000 --- a/textproc/aspell/pkg-plist.lv +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/lv_affix.dat -lib/aspell-%%VER%%/lv.dat -share/aspell/latvian.alias -share/aspell/lv.multi -share/aspell/lv.rws diff --git a/textproc/aspell/pkg-plist.mi b/textproc/aspell/pkg-plist.mi deleted file mode 100644 index abd80a872297..000000000000 --- a/textproc/aspell/pkg-plist.mi +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/mi.dat -share/aspell/maori.alias -share/aspell/mi.multi -share/aspell/mi.rws diff --git a/textproc/aspell/pkg-plist.mk b/textproc/aspell/pkg-plist.mk deleted file mode 100644 index 42c3c36fac48..000000000000 --- a/textproc/aspell/pkg-plist.mk +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/mk.dat -share/aspell/macedonian.alias -share/aspell/mk.multi -share/aspell/mk.rws diff --git a/textproc/aspell/pkg-plist.mn b/textproc/aspell/pkg-plist.mn deleted file mode 100644 index 7d0f001e4f0e..000000000000 --- a/textproc/aspell/pkg-plist.mn +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/l-mn.cmap -lib/aspell-%%VER%%/l-mn.cset -lib/aspell-%%VER%%/mn.dat -share/aspell/mn.multi -share/aspell/mn.rws -share/aspell/mongolian.alias diff --git a/textproc/aspell/pkg-plist.mr b/textproc/aspell/pkg-plist.mr deleted file mode 100644 index 1ce7cc3bcf18..000000000000 --- a/textproc/aspell/pkg-plist.mr +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/mr.dat -lib/aspell-%%VER%%/u-deva.cmap -lib/aspell-%%VER%%/u-deva.cset -share/aspell/mr.multi -share/aspell/mr.rws -share/aspell/marathi.alias diff --git a/textproc/aspell/pkg-plist.ms b/textproc/aspell/pkg-plist.ms deleted file mode 100644 index cbc22a5434d0..000000000000 --- a/textproc/aspell/pkg-plist.ms +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/ms.dat -share/aspell/malay.alias -share/aspell/ms.multi -share/aspell/ms.rws diff --git a/textproc/aspell/pkg-plist.mt b/textproc/aspell/pkg-plist.mt deleted file mode 100644 index 4434f2ca8468..000000000000 --- a/textproc/aspell/pkg-plist.mt +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/mt_phonet.dat -lib/aspell-%%VER%%/mt.dat -share/aspell/mt.multi -share/aspell/mt.rws -share/aspell/maltese.alias -share/aspell/malti.alias diff --git a/textproc/aspell/pkg-plist.nb b/textproc/aspell/pkg-plist.nb deleted file mode 100644 index 557e957ca9ef..000000000000 --- a/textproc/aspell/pkg-plist.nb +++ /dev/null @@ -1,7 +0,0 @@ -lib/aspell-%%VER%%/nb.dat -share/aspell/bokmal.alias -share/aspell/bokmćl.alias -share/aspell/nb.multi -share/aspell/nb.rws -share/aspell/no.alias -share/aspell/norsk.alias diff --git a/textproc/aspell/pkg-plist.nds b/textproc/aspell/pkg-plist.nds deleted file mode 100644 index 2a2c453e897c..000000000000 --- a/textproc/aspell/pkg-plist.nds +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/nds.dat -lib/aspell-%%VER%%/nds_affix.dat -lib/aspell-%%VER%%/nds_phonet.dat -share/aspell/lowsaxon.alias -share/aspell/nds.multi -share/aspell/nds.rws diff --git a/textproc/aspell/pkg-plist.nl b/textproc/aspell/pkg-plist.nl deleted file mode 100644 index 2ea928e7220b..000000000000 --- a/textproc/aspell/pkg-plist.nl +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/nl.dat -share/aspell/dutch.alias -share/aspell/nl.multi -share/aspell/nl.rws diff --git a/textproc/aspell/pkg-plist.nn b/textproc/aspell/pkg-plist.nn deleted file mode 100644 index 4de0e5db9ebc..000000000000 --- a/textproc/aspell/pkg-plist.nn +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/nn.dat -share/aspell/nn.multi -share/aspell/nn.rws -share/aspell/nynorsk.alias diff --git a/textproc/aspell/pkg-plist.ny b/textproc/aspell/pkg-plist.ny deleted file mode 100644 index 5aefd8df84b6..000000000000 --- a/textproc/aspell/pkg-plist.ny +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/ny.dat -share/aspell/chewa.alias -share/aspell/chichewa.alias -share/aspell/ny.multi -share/aspell/ny.rws -share/aspell/nyanja.alias diff --git a/textproc/aspell/pkg-plist.or b/textproc/aspell/pkg-plist.or deleted file mode 100644 index b7133293a90b..000000000000 --- a/textproc/aspell/pkg-plist.or +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/or.dat -lib/aspell-%%VER%%/u-orya.cmap -lib/aspell-%%VER%%/u-orya.cset -share/aspell/or.multi -share/aspell/or.rws -share/aspell/oriya.alias diff --git a/textproc/aspell/pkg-plist.pa b/textproc/aspell/pkg-plist.pa deleted file mode 100644 index 83dc3419d197..000000000000 --- a/textproc/aspell/pkg-plist.pa +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/pa.dat -lib/aspell-%%VER%%/u-guru.cmap -lib/aspell-%%VER%%/u-guru.cset -share/aspell/pa.multi -share/aspell/pa.rws -share/aspell/punjabi.alias diff --git a/textproc/aspell/pkg-plist.pl b/textproc/aspell/pkg-plist.pl deleted file mode 100644 index 590dba24d214..000000000000 --- a/textproc/aspell/pkg-plist.pl +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/pl.dat -share/aspell/pl.multi -share/aspell/pl.rws -share/aspell/polish.alias diff --git a/textproc/aspell/pkg-plist.pt b/textproc/aspell/pkg-plist.pt deleted file mode 100644 index 485942b2c486..000000000000 --- a/textproc/aspell/pkg-plist.pt +++ /dev/null @@ -1,10 +0,0 @@ -lib/aspell-%%VER%%/pt.dat -share/aspell/brazilian.alias -share/aspell/português.alias -share/aspell/portuguese.alias -share/aspell/pt-only.rws -share/aspell/pt.multi -share/aspell/pt_BR-only.rws -share/aspell/pt_BR.multi -share/aspell/pt_PT-only.rws -share/aspell/pt_PT.multi diff --git a/textproc/aspell/pkg-plist.qu b/textproc/aspell/pkg-plist.qu deleted file mode 100644 index 20f34dafa850..000000000000 --- a/textproc/aspell/pkg-plist.qu +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/qu.dat -lib/aspell-%%VER%%/qu_affix.dat -share/aspell/qu.multi -share/aspell/qu.rws -share/aspell/quechua.alias diff --git a/textproc/aspell/pkg-plist.ro b/textproc/aspell/pkg-plist.ro deleted file mode 100644 index 2f8a3d3872f8..000000000000 --- a/textproc/aspell/pkg-plist.ro +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/ro.dat -share/aspell/ro.multi -share/aspell/ro.rws -share/aspell/romaneste.alias -share/aspell/românește.alias -share/aspell/romanian.alias diff --git a/textproc/aspell/pkg-plist.ru b/textproc/aspell/pkg-plist.ru deleted file mode 100644 index 5a0567da6456..000000000000 --- a/textproc/aspell/pkg-plist.ru +++ /dev/null @@ -1,8 +0,0 @@ -lib/aspell-%%VER%%/ru.dat -lib/aspell-%%VER%%/ru_affix.dat -share/aspell/ru-ye.multi -share/aspell/ru-ye.rws -share/aspell/ru-yeyo.multi -share/aspell/ru-yo.multi -share/aspell/ru-yo.rws -share/aspell/ru.multi diff --git a/textproc/aspell/pkg-plist.rw b/textproc/aspell/pkg-plist.rw deleted file mode 100644 index b2484c8c7d44..000000000000 --- a/textproc/aspell/pkg-plist.rw +++ /dev/null @@ -1,3 +0,0 @@ -lib/aspell-%%VER%%/rw.dat -share/aspell/rw.multi -share/aspell/rw.rws diff --git a/textproc/aspell/pkg-plist.sc b/textproc/aspell/pkg-plist.sc deleted file mode 100644 index 96089647a1d5..000000000000 --- a/textproc/aspell/pkg-plist.sc +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/sc.dat -share/aspell/sardinian.alias -share/aspell/sc.multi -share/aspell/sc.rws -share/aspell/srd.alias diff --git a/textproc/aspell/pkg-plist.sk b/textproc/aspell/pkg-plist.sk deleted file mode 100644 index 6e7f82f3e99c..000000000000 --- a/textproc/aspell/pkg-plist.sk +++ /dev/null @@ -1,9 +0,0 @@ -lib/aspell-%%VER%%/sk.dat -share/aspell/sk-extend.rws -share/aspell/sk-extended.multi -share/aspell/sk.multi -share/aspell/sk.rws -share/aspell/sk_SK-extended.alias -share/aspell/sk_SK.alias -share/aspell/slovak-extended.alias -share/aspell/slovak.alias diff --git a/textproc/aspell/pkg-plist.sl b/textproc/aspell/pkg-plist.sl deleted file mode 100644 index 65b1aa943df3..000000000000 --- a/textproc/aspell/pkg-plist.sl +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/sl.dat -share/aspell/sl.multi -share/aspell/sl.rws -share/aspell/slovenian.alias diff --git a/textproc/aspell/pkg-plist.sr b/textproc/aspell/pkg-plist.sr deleted file mode 100644 index 97309fc3dd1f..000000000000 --- a/textproc/aspell/pkg-plist.sr +++ /dev/null @@ -1,8 +0,0 @@ -lib/aspell-%%VER%%/l-sr.cmap -lib/aspell-%%VER%%/l-sr.cset -lib/aspell-%%VER%%/sr.dat -share/aspell/sr-cyrl-only.rws -share/aspell/sr-cyrl.multi -share/aspell/sr-latn-only.rws -share/aspell/sr-latn.multi -share/aspell/sr.multi diff --git a/textproc/aspell/pkg-plist.sv b/textproc/aspell/pkg-plist.sv deleted file mode 100644 index a930ce39c72b..000000000000 --- a/textproc/aspell/pkg-plist.sv +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/sv_phonet.dat -lib/aspell-%%VER%%/sv.dat -share/aspell/sv.multi -share/aspell/sv.rws -share/aspell/svenska.alias -share/aspell/swedish.alias diff --git a/textproc/aspell/pkg-plist.sw b/textproc/aspell/pkg-plist.sw deleted file mode 100644 index 4f01f770f087..000000000000 --- a/textproc/aspell/pkg-plist.sw +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/sw.dat -share/aspell/kiswahili.alias -share/aspell/sw.multi -share/aspell/sw.rws -share/aspell/swahili.alias diff --git a/textproc/aspell/pkg-plist.ta b/textproc/aspell/pkg-plist.ta deleted file mode 100644 index f666d4e557dc..000000000000 --- a/textproc/aspell/pkg-plist.ta +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/ta.dat -lib/aspell-%%VER%%/u-taml.cmap -lib/aspell-%%VER%%/u-taml.cset -share/aspell/ta.multi -share/aspell/ta.rws -share/aspell/tamil.alias diff --git a/textproc/aspell/pkg-plist.te b/textproc/aspell/pkg-plist.te deleted file mode 100644 index 3dec360a6b51..000000000000 --- a/textproc/aspell/pkg-plist.te +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/te.dat -lib/aspell-%%VER%%/u-telu.cmap -lib/aspell-%%VER%%/u-telu.cset -share/aspell/te.multi -share/aspell/te.rws -share/aspell/telugu.alias diff --git a/textproc/aspell/pkg-plist.tet b/textproc/aspell/pkg-plist.tet deleted file mode 100644 index 517ef020e887..000000000000 --- a/textproc/aspell/pkg-plist.tet +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/tet.dat -share/aspell/tet.multi -share/aspell/tet.rws -share/aspell/tetum.alias -share/aspell/tetun.alias diff --git a/textproc/aspell/pkg-plist.tl b/textproc/aspell/pkg-plist.tl deleted file mode 100644 index 5cfcfe184a8f..000000000000 --- a/textproc/aspell/pkg-plist.tl +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/tl.dat -share/aspell/tagalog.alias -share/aspell/tl.multi -share/aspell/tl.rws diff --git a/textproc/aspell/pkg-plist.tn b/textproc/aspell/pkg-plist.tn deleted file mode 100644 index 2b80b4bfcac0..000000000000 --- a/textproc/aspell/pkg-plist.tn +++ /dev/null @@ -1,5 +0,0 @@ -lib/aspell-%%VER%%/tn.dat -share/aspell/setswana.alias -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 deleted file mode 100644 index c4fa6b9a4a0d..000000000000 --- a/textproc/aspell/pkg-plist.tr +++ /dev/null @@ -1,3 +0,0 @@ -lib/aspell-%%VER%%/tr.dat -share/aspell/tr.multi -share/aspell/tr.rws diff --git a/textproc/aspell/pkg-plist.uk b/textproc/aspell/pkg-plist.uk deleted file mode 100644 index 81ebab95fa26..000000000000 --- a/textproc/aspell/pkg-plist.uk +++ /dev/null @@ -1,8 +0,0 @@ -lib/aspell-%%VER%%/koi8-u-nl.cmap -lib/aspell-%%VER%%/koi8-u-nl.cset -lib/aspell-%%VER%%/uk.dat -lib/aspell-%%VER%%/uk_affix.dat -lib/aspell-%%VER%%/ukrainian.kbd -share/aspell/uk.multi -share/aspell/uk.rws -share/aspell/ukrainian.alias diff --git a/textproc/aspell/pkg-plist.uz b/textproc/aspell/pkg-plist.uz deleted file mode 100644 index 592c84122ea8..000000000000 --- a/textproc/aspell/pkg-plist.uz +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/l-uz.cmap -lib/aspell-%%VER%%/l-uz.cset -lib/aspell-%%VER%%/uz.dat -share/aspell/uz.multi -share/aspell/uz.rws -share/aspell/uzbek.alias diff --git a/textproc/aspell/pkg-plist.vi b/textproc/aspell/pkg-plist.vi deleted file mode 100644 index da4192b3bad1..000000000000 --- a/textproc/aspell/pkg-plist.vi +++ /dev/null @@ -1,8 +0,0 @@ -lib/aspell-%%VER%%/tcvn3.cmap -lib/aspell-%%VER%%/tcvn3.cset -lib/aspell-%%VER%%/vi.dat -lib/aspell-%%VER%%/viscii.cmap -lib/aspell-%%VER%%/viscii.cset -share/aspell/vi.multi -share/aspell/vi.rws -share/aspell/viet.alias diff --git a/textproc/aspell/pkg-plist.wa b/textproc/aspell/pkg-plist.wa deleted file mode 100644 index 19206207a372..000000000000 --- a/textproc/aspell/pkg-plist.wa +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/wa_phonet.dat -lib/aspell-%%VER%%/wa.dat -share/aspell/wa.multi -share/aspell/wa.rws -share/aspell/walloon.alias -share/aspell/walon.alias diff --git a/textproc/aspell/pkg-plist.yi b/textproc/aspell/pkg-plist.yi deleted file mode 100644 index e8764018ec00..000000000000 --- a/textproc/aspell/pkg-plist.yi +++ /dev/null @@ -1,6 +0,0 @@ -lib/aspell-%%VER%%/u-hebr.cmap -lib/aspell-%%VER%%/u-hebr.cset -lib/aspell-%%VER%%/yi.dat -share/aspell/yi.multi -share/aspell/yi.rws -share/aspell/yiddish.alias diff --git a/textproc/aspell/pkg-plist.zu b/textproc/aspell/pkg-plist.zu deleted file mode 100644 index 0874f70992fe..000000000000 --- a/textproc/aspell/pkg-plist.zu +++ /dev/null @@ -1,4 +0,0 @@ -lib/aspell-%%VER%%/zu.dat -share/aspell/zu.multi -share/aspell/zu.rws -share/aspell/zulu.alias |