mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
Revert removal of textproc/linux-aspell, wait for the tree to be tagged
for 7-EOL first. This should fix the portnap and index builds for 7.X again. Pointyhat: rene
This commit is contained in:
parent
550660ec79
commit
4ebe9933e6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=313410
1
MOVED
1
MOVED
@ -4114,4 +4114,3 @@ x11-themes/e17-theme-cthulhain||2013-03-03|Has expired: Dead upstream since 2008
|
||||
x11-servers/driglide||2013-03-03|Has expired: 3dfx is dead, fails to compile on recent versions of freebsd
|
||||
mail/gmime||2013-03-03|Has expired: Superceded with version 2.4
|
||||
archivers/bsdar||2013-03-03|Has expired: part of the base system
|
||||
textproc/linux-aspell||2013-03-04|Has expired
|
||||
|
@ -402,6 +402,7 @@
|
||||
SUBDIR += libxslt-reference
|
||||
SUBDIR += libyaml
|
||||
SUBDIR += link-grammar
|
||||
SUBDIR += linux-aspell
|
||||
SUBDIR += linux-expat
|
||||
SUBDIR += linux-f10-aspell
|
||||
SUBDIR += linux-f10-expat
|
||||
|
212
textproc/linux-aspell/Makefile
Normal file
212
textproc/linux-aspell/Makefile
Normal file
@ -0,0 +1,212 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aspell
|
||||
PORTVERSION= 0.50.4.1
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= textproc linux
|
||||
MASTER_SITES= ftp://ftp.pbone.net/mirror/ftp.ximian.com/pub/ximian-evolution/redhat-80-i386/ \
|
||||
ftp://ftp.pbone.net/mirror/ftp.ximian.com/pub/ximian-evolution/redhat-80-i386/source/ \
|
||||
ftp://ftp.is.co.za/mirror/ftp.ximian.com/ximian-evolution/redhat-80-i386/ \
|
||||
ftp://ftp.chg.ru/pub/X11/ximian/ximian-evolution/redhat-80-i386/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-0.ximian.5.1
|
||||
DISTFILES= ${DISTNAME}.i386.rpm # needed for slave ports / options
|
||||
EXTRACT_SUFX= .i386.rpm
|
||||
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
||||
|
||||
MAINTAINER= office@FreeBSD.org
|
||||
COMMENT= Spelling checker with better logic than ispell (linux version)
|
||||
|
||||
CONFLICTS= linux-f8-aspell-[0-9]* linux-f10-aspell-[0-9]*
|
||||
|
||||
# EXPIRATION_DATE is the EoL of the last 7.x release
|
||||
EXPIRATION_DATE=2013-02-28
|
||||
USE_LINUX_RPM= yes
|
||||
ONLY_FOR_ARCHS= i386 amd64
|
||||
LINUX_DIST_VER= 4
|
||||
USE_GMAKE= yes
|
||||
DISTINFO_FILE= ${MASTERDIR}/distinfo
|
||||
DIST_SUBDIR= rpm
|
||||
BRANDELF_DIRS= usr/bin
|
||||
|
||||
CONF_DICT_ENV= ASPELL="${PREFIX}/usr/bin/aspell" \
|
||||
WORD_LIST_COMPRESS="${PREFIX}/usr/bin/word-list-compress"
|
||||
AVAIL_DICT= af bg br ca cs cy da de el en eo es fo fr hr ia id it ga gd gl \
|
||||
gv 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 gd gl gv 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
|
||||
DICTVER_CS= 0.51-0
|
||||
DICTVER_CY= 0.50-3
|
||||
DICTVER_DA= 0.50.1-0
|
||||
DICTVER_EL= 0.50-3
|
||||
DICTVER_EN= 0.51-1
|
||||
DICTVER_FO= 0.51-0
|
||||
DICTVER_FR= 0.50-3
|
||||
DICTVER_GA= 0.50.1-0
|
||||
DICTVER_GD= 0.50-0
|
||||
DICTVER_GL= 0.50-0
|
||||
DICTVER_GV= 0.50-0
|
||||
DICTVER_HR= 0.51-0
|
||||
DICTVER_IA= 0.50-1
|
||||
DICTVER_ID= 0.50.1-0
|
||||
DICTVER_IS= 0.51.1-0
|
||||
DICTVER_IT= 0.53-0
|
||||
DICTVER_MI= 0.50-0
|
||||
DICTVER_MS= 0.50-0
|
||||
DICTVER_MT= 0.50-0
|
||||
DICTVER_NB= 0.50.1-0
|
||||
DICTVER_NN= 0.50.1-1
|
||||
DICTVER_PL= 0.51-0
|
||||
DICTVER_SK= 0.52-0
|
||||
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} 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
|
||||
DICO_WRKDIR= ${WRKDIR}_DICO
|
||||
|
||||
pre-everything::
|
||||
.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: *'
|
||||
@${ECHO_MSG} '* - Afrikaans ASPELL_AF=yes *'
|
||||
@${ECHO_MSG} '* - Bulgarian ASPELL_BG=yes *'
|
||||
@${ECHO_MSG} '* - Breton ASPELL_BR=yes *'
|
||||
@${ECHO_MSG} '* - Catalan 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} '* - Faroese ASPELL_FO=yes *'
|
||||
@${ECHO_MSG} '* - French ASPELL_FR=yes *'
|
||||
@${ECHO_MSG} '* - Galician ASPELL_GL=yes *'
|
||||
@${ECHO_MSG} '* - German ASPELL_DE=yes *'
|
||||
@${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} '* - Maltese ASPELL_MT=yes *'
|
||||
@${ECHO_MSG} '* - Manx Gaelic ASPELL_GV=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} '* - Scottish Gaelic ASPELL_GD=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} '*********************************************************'
|
||||
. 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}/:dict${DICO} \
|
||||
http://gnu.mirror.mcgill.ca/aspell/dict/${DICO}/:dict${DICO} \
|
||||
http://mirrors.usc.edu/pub/gnu/aspell/dict/${DICO}/:dict${DICO} \
|
||||
ftp://ftp.sunsite.org.uk/package/gnu/aspell/dict/${DICO}/:dict${DICO}
|
||||
. if (${SPECDICTS:M${DICO}*} != "")
|
||||
DISTFILES+= aspell-${DICO}-${DICTVER_${DICO:U}}${DICT_SUFFIX}:dict${DICO}
|
||||
. else
|
||||
DISTFILES+= aspell-${DICO}-${DICTVERSION}${DICT_SUFFIX}:dict${DICO}
|
||||
. endif
|
||||
.endfor
|
||||
|
||||
post-extract:
|
||||
.for DICO in ${DICTS}
|
||||
. if (${SPECDICTS:M${DICO}*} != "")
|
||||
@${MKDIR} -p ${DICO_WRKDIR} && cd ${DICO_WRKDIR} && \
|
||||
${TAR} -xjf ${DISTDIR}/${DIST_SUBDIR}/aspell-${DICO}-${DICTVER_${DICO:U}}${DICT_SUFFIX}
|
||||
. else
|
||||
@${MKDIR} -p ${DICO_WRKDIR} && cd ${DICO_WRKDIR} && \
|
||||
${TAR} -xjf ${DISTDIR}/${DIST_SUBDIR}/aspell-${DICO}-${DICTVERSION}${DICT_SUFFIX}
|
||||
. endif
|
||||
.endfor
|
||||
|
||||
post-patch:
|
||||
.for DICO in ${DICTS}
|
||||
. if (${SPECDICTS:M${DICO}*} != "")
|
||||
@${REINPLACE_CMD} -e 's|$${dictdir}|${PREFIX}$${dictdir}|g ; \
|
||||
s|$${datadir}|${PREFIX}$${datadir}|g' \
|
||||
${DICO_WRKDIR}/aspell-${DICO}-${DICTVER_${DICO:U}}/Makefile.pre
|
||||
. else
|
||||
@${REINPLACE_CMD} -e 's|$${dictdir}|${PREFIX}$${dictdir}|g ; \
|
||||
s|$${datadir}|${PREFIX}$${datadir}|g' \
|
||||
${DICO_WRKDIR}/aspell-${DICO}-${DICTVERSION}/Makefile.pre
|
||||
. endif
|
||||
.endfor
|
||||
|
||||
post-install:
|
||||
.for DICO in ${DICTS}
|
||||
@${ECHO_MSG} "===> Installing for ${DICO} dictionaries"
|
||||
. if (${SPECDICTS:M${DICO}*} != "")
|
||||
@cd ${DICO_WRKDIR}/aspell-${DICO}-${DICTVER_${DICO:U}} && \
|
||||
${CONF_DICT_ENV} ./${CONFIGURE_SCRIPT} && \
|
||||
${GMAKE} install
|
||||
. else
|
||||
@cd ${DICO_WRKDIR}/aspell-${DICO}-${DICTVERSION} && \
|
||||
${CONF_DICT_ENV} ./${CONFIGURE_SCRIPT} && \
|
||||
${GMAKE} install
|
||||
. endif
|
||||
@${CAT} ${MASTERDIR}/pkg-plist.${DICO} >> ${TMPPLIST}
|
||||
.endfor
|
||||
@${CAT} ${MASTERDIR}/pkg-plist.dirrm >> ${TMPPLIST}
|
||||
|
||||
post-clean:
|
||||
@${RM} -rf ${DICO_WRKDIR} || ${TRUE}
|
||||
|
||||
.include <bsd.port.post.mk>
|
88
textproc/linux-aspell/distinfo
Normal file
88
textproc/linux-aspell/distinfo
Normal file
@ -0,0 +1,88 @@
|
||||
SHA256 (rpm/aspell-0.50.4.1-0.ximian.5.1.i386.rpm) = 69fbb1c0819ba11d0312901e0bb72336b12a12c84179b612a210f89c387c66a6
|
||||
SIZE (rpm/aspell-0.50.4.1-0.ximian.5.1.i386.rpm) = 440242
|
||||
SHA256 (rpm/aspell-af-0.50-0.tar.bz2) = 9d6000aeca5911343278bd6ed9e21d42c8cb26247dafe94a76ff81d8ac98e602
|
||||
SIZE (rpm/aspell-af-0.50-0.tar.bz2) = 256111
|
||||
SHA256 (rpm/aspell-bg-0.50-0.tar.bz2) = 16cc1f950422dddbe713e6337d5bba11764faf3e70818b3fc87b6bb42ec46ff7
|
||||
SIZE (rpm/aspell-bg-0.50-0.tar.bz2) = 271589
|
||||
SHA256 (rpm/aspell-br-0.50-2.tar.bz2) = c2122a6dcca653c082d785f0da4bf267363182a017fea4129e8b0882aa6d2a3b
|
||||
SIZE (rpm/aspell-br-0.50-2.tar.bz2) = 68055
|
||||
SHA256 (rpm/aspell-ca-0.50-2.tar.bz2) = ef34688abf28aa5a3cb9da1428df1d88dcd595148354a3e70efbdcf16ab2084b
|
||||
SIZE (rpm/aspell-ca-0.50-2.tar.bz2) = 137626
|
||||
SHA256 (rpm/aspell-cs-0.51-0.tar.bz2) = 7c56c5cd6e74d60749e68effa9dc45cb282cb3bb6a9c56b51f7594a72216ea47
|
||||
SIZE (rpm/aspell-cs-0.51-0.tar.bz2) = 626618
|
||||
SHA256 (rpm/aspell-cy-0.50-3.tar.bz2) = d5399dcd70061e5ed5af1214eb580f62864dd35ea4fa1ec2882ffc4f03307897
|
||||
SIZE (rpm/aspell-cy-0.50-3.tar.bz2) = 117652
|
||||
SHA256 (rpm/aspell-da-0.50.1-0.tar.bz2) = 6725aa3f9699fc2ce46033ed3a7c4ef486b7fcbcd0462e6c19514da525a7c0f6
|
||||
SIZE (rpm/aspell-da-0.50.1-0.tar.bz2) = 304097
|
||||
SHA256 (rpm/aspell-de-0.50-2.tar.bz2) = f1b6f23d694fc12da193de5d5d2232797e87aecf684d8aa5872d83176eeb84ba
|
||||
SIZE (rpm/aspell-de-0.50-2.tar.bz2) = 304820
|
||||
SHA256 (rpm/aspell-el-0.50-3.tar.bz2) = 3f6508937dcaa64a6c70ee5f722f088b46b202a6409961b93b705d4ec4f56380
|
||||
SIZE (rpm/aspell-el-0.50-3.tar.bz2) = 328225
|
||||
SHA256 (rpm/aspell-en-0.51-1.tar.bz2) = 0a853f7f117a79bcc92740c19386b46a832d12eacd73cee1ceba591953486065
|
||||
SIZE (rpm/aspell-en-0.51-1.tar.bz2) = 172874
|
||||
SHA256 (rpm/aspell-eo-0.50-2.tar.bz2) = 6c61a64297804afd4ddf21660caecf1c966dd57e577789b045e9d9944a6d70a7
|
||||
SIZE (rpm/aspell-eo-0.50-2.tar.bz2) = 89703
|
||||
SHA256 (rpm/aspell-es-0.50-2.tar.bz2) = 5c0e2a32d44196fb0375e72d44e730fd365d62e53ade077fb1653ccbb8ee2645
|
||||
SIZE (rpm/aspell-es-0.50-2.tar.bz2) = 157809
|
||||
SHA256 (rpm/aspell-fo-0.51-0.tar.bz2) = 3eb16f207170f5e67f43b3bda20e3ff378a76923c1f12c686e5c0ce82cdd0c8f
|
||||
SIZE (rpm/aspell-fo-0.51-0.tar.bz2) = 161169
|
||||
SHA256 (rpm/aspell-fr-0.50-3.tar.bz2) = f9421047519d2af9a7a466e4336f6e6ea55206b356cd33c8bd18cb626bf2ce91
|
||||
SIZE (rpm/aspell-fr-0.50-3.tar.bz2) = 283086
|
||||
SHA256 (rpm/aspell-hr-0.51-0.tar.bz2) = 2ac4030354d7961e45d63b46e06e59248d59cc70dfc9e1d8ee0ae21d9c774a25
|
||||
SIZE (rpm/aspell-hr-0.51-0.tar.bz2) = 208118
|
||||
SHA256 (rpm/aspell-ia-0.50-1.tar.bz2) = 5797cb59606d007cf8fe5b9ec435de0d63b2d0e0d391ed8850ef8aa3f4bb0c2f
|
||||
SIZE (rpm/aspell-ia-0.50-1.tar.bz2) = 70883
|
||||
SHA256 (rpm/aspell-id-0.50.1-0.tar.bz2) = d47e8fb935bf19a0727edf6da671bd068ff5e8f10972334837d60a73b74d151a
|
||||
SIZE (rpm/aspell-id-0.50.1-0.tar.bz2) = 57532
|
||||
SHA256 (rpm/aspell-it-0.53-0.tar.bz2) = 3b87190b84ddba8ba2d57975e4c636ce12961b8f98162d25e8f60b086615fa6f
|
||||
SIZE (rpm/aspell-it-0.53-0.tar.bz2) = 262636
|
||||
SHA256 (rpm/aspell-ga-0.50.1-0.tar.bz2) = 09a07a5532738fc2d5a7a9ae51e2fed30b535d09714ab7a77ef1e942c7ff48d7
|
||||
SIZE (rpm/aspell-ga-0.50.1-0.tar.bz2) = 426385
|
||||
SHA256 (rpm/aspell-gd-0.50-0.tar.bz2) = 3ba97ad9d876e6ed20a7ec42f2c6bb0a66a753b0d09dd05b0f4a09ce420966a7
|
||||
SIZE (rpm/aspell-gd-0.50-0.tar.bz2) = 50400
|
||||
SHA256 (rpm/aspell-gl-0.50-0.tar.bz2) = 96833bc8301e0ff5fbb3b162f900237e0e806a204f9cae5e005998762cb48f4c
|
||||
SIZE (rpm/aspell-gl-0.50-0.tar.bz2) = 112313
|
||||
SHA256 (rpm/aspell-gv-0.50-0.tar.bz2) = bbe626feb5c81c1b7e7d3199d558bc5c560b2d4aef377d0e4b4227ae3c7176e6
|
||||
SIZE (rpm/aspell-gv-0.50-0.tar.bz2) = 69462
|
||||
SHA256 (rpm/aspell-is-0.51.1-0.tar.bz2) = 3035bd29dad929ce66e6acdc7c29670df458e0d13fe178241b212f481111e3d6
|
||||
SIZE (rpm/aspell-is-0.51.1-0.tar.bz2) = 323850
|
||||
SHA256 (rpm/aspell-mi-0.50-0.tar.bz2) = beee1e33baf6301e3ffc56558c84c3e7d29622541b232c1aea1e91d12ebd7d89
|
||||
SIZE (rpm/aspell-mi-0.50-0.tar.bz2) = 57818
|
||||
SHA256 (rpm/aspell-ms-0.50-0.tar.bz2) = 3cc4e3537bb0f455ce58b4d2fa84b03dc678e0153536a41dee1a3a7623dc246f
|
||||
SIZE (rpm/aspell-ms-0.50-0.tar.bz2) = 50368
|
||||
SHA256 (rpm/aspell-mt-0.50-0.tar.bz2) = e00fcaad60a90cfed687ba02f62be8c27b8650457dd3c5bdcb064b476da059b4
|
||||
SIZE (rpm/aspell-mt-0.50-0.tar.bz2) = 124114
|
||||
SHA256 (rpm/aspell-nb-0.50.1-0.tar.bz2) = e7746e8b617b2df576c1172399544818084524504202b16c747f52db5e5d228a
|
||||
SIZE (rpm/aspell-nb-0.50.1-0.tar.bz2) = 423161
|
||||
SHA256 (rpm/aspell-nl-0.50-2.tar.bz2) = 440e0b7df8c5903d728221fe4ba88a74658ce14c8bb04b290c41402dfd41cb39
|
||||
SIZE (rpm/aspell-nl-0.50-2.tar.bz2) = 428365
|
||||
SHA256 (rpm/aspell-nn-0.50.1-1.tar.bz2) = ac6610540c7e134f09cbebbd148f9316bef27bc491e377638ef4e2950b2d5370
|
||||
SIZE (rpm/aspell-nn-0.50.1-1.tar.bz2) = 335156
|
||||
SHA256 (rpm/aspell-pl-0.51-0.tar.bz2) = a71ce4dbc3d6d0adcf386b1776e359fff57f0ba422d338e8d1fe9569a2646ca8
|
||||
SIZE (rpm/aspell-pl-0.51-0.tar.bz2) = 624458
|
||||
SHA256 (rpm/aspell-pt-0.50-2.tar.bz2) = 4acbffe03b918cf32b340949d0f167df9073190d347a092f45d4e400a09b2fa6
|
||||
SIZE (rpm/aspell-pt-0.50-2.tar.bz2) = 201341
|
||||
SHA256 (rpm/aspell-ro-0.50-2.tar.bz2) = ba25d1aa9b6a6288e7a785a49fce81f1fbfb4269237c4730661f876d6d0cf4ec
|
||||
SIZE (rpm/aspell-ro-0.50-2.tar.bz2) = 64110
|
||||
SHA256 (rpm/aspell-ru-0.50-2.tar.bz2) = f28b21c629b2c2466f2dc368a549147dd296beaefe27587629d808e554b23998
|
||||
SIZE (rpm/aspell-ru-0.50-2.tar.bz2) = 521827
|
||||
SHA256 (rpm/aspell-sk-0.52-0.tar.bz2) = b506542d8c63d935efc9760a392b23fd5dd5683822b26a5ce724241f2c013563
|
||||
SIZE (rpm/aspell-sk-0.52-0.tar.bz2) = 383840
|
||||
SHA256 (rpm/aspell-sl-0.50-0.tar.bz2) = e566d127f7130da2df7b1f4f4cb4bc51932517b0c24299f84498ba325e6133d1
|
||||
SIZE (rpm/aspell-sl-0.50-0.tar.bz2) = 215463
|
||||
SHA256 (rpm/aspell-sv-0.51-0.tar.bz2) = 9b70573c9c8cf76f5cdb6abcdfb834a754bbaa1efd7d6f57f47b8a91a19c5c0a
|
||||
SIZE (rpm/aspell-sv-0.51-0.tar.bz2) = 93942
|
||||
SHA256 (rpm/aspell-sw-0.50-0.tar.bz2) = 7ed51f107dc57a7b3555f20d1cee2903275d63e022b055ea6b6409d9e081f297
|
||||
SIZE (rpm/aspell-sw-0.50-0.tar.bz2) = 102172
|
||||
SHA256 (rpm/aspell-tn-0.50-0.tar.bz2) = 64029bef9b8f40ca4aeab4fe074c62107e12f2d64c85b85602de7db813bdcaf5
|
||||
SIZE (rpm/aspell-tn-0.50-0.tar.bz2) = 18685
|
||||
SHA256 (rpm/aspell-tr-0.50-0.tar.bz2) = 0bc6530e5eebf8b2b53f1e8add596c62099173f62b9baa6b3efaa86752bdfb4a
|
||||
SIZE (rpm/aspell-tr-0.50-0.tar.bz2) = 84846
|
||||
SHA256 (rpm/aspell-uk-0.51-0.tar.bz2) = c5fb00ad6f3832519f56784389225833f15cf06dadf47c022c40a1110e833660
|
||||
SIZE (rpm/aspell-uk-0.51-0.tar.bz2) = 382513
|
||||
SHA256 (rpm/aspell-wa-0.50-0.tar.bz2) = 5a17aa8aa37afbcc8f52336476670b93cba16462bcb89dd46b80f4d9cfe73fe4
|
||||
SIZE (rpm/aspell-wa-0.50-0.tar.bz2) = 50363
|
||||
SHA256 (rpm/aspell-zu-0.50-0.tar.bz2) = 3fa255cd0b20e6229a53df972fd3c5ed8481db11cfd0347dd3da629bbb7a6796
|
||||
SIZE (rpm/aspell-zu-0.50-0.tar.bz2) = 168226
|
||||
SHA256 (rpm/aspell-0.50.4.1-0.ximian.5.1.src.rpm) = 884632bc4724678bb81ce951267954741d98b61b044065bc6d9893f79eec1ce7
|
||||
SIZE (rpm/aspell-0.50.4.1-0.ximian.5.1.src.rpm) = 955367
|
9
textproc/linux-aspell/pkg-descr
Normal file
9
textproc/linux-aspell/pkg-descr
Normal file
@ -0,0 +1,9 @@
|
||||
Linux version of Aspell.
|
||||
|
||||
Aspell is a spelling checker designed to eventually replace ispell, although
|
||||
it currently lacks many of ispell's basic functions. Aspell's main feature is
|
||||
that it does a much better job of coming up with possible suggestions than
|
||||
ispell. Aspell also includes a powerful C++ library with C and Perl interfaces
|
||||
in the works.
|
||||
|
||||
WWW: http://aspell.sourceforge.net/
|
84
textproc/linux-aspell/pkg-plist
Normal file
84
textproc/linux-aspell/pkg-plist
Normal file
@ -0,0 +1,84 @@
|
||||
usr/bin/aspell
|
||||
usr/bin/aspell-import
|
||||
usr/bin/pspell-config
|
||||
usr/bin/run-with-aspell
|
||||
usr/bin/word-list-compress
|
||||
usr/lib/libaspell.la
|
||||
usr/lib/libaspell.so.15
|
||||
usr/lib/libaspell.so.15.0.2
|
||||
usr/lib/libpspell.la
|
||||
usr/lib/libpspell.so.15
|
||||
usr/lib/libpspell.so.15.0.2
|
||||
usr/share/aspell/ASCII.dat
|
||||
usr/share/aspell/dvorak.kbd
|
||||
usr/share/aspell/iso8859-1.dat
|
||||
usr/share/aspell/iso8859-10.dat
|
||||
usr/share/aspell/iso8859-13.dat
|
||||
usr/share/aspell/iso8859-14.dat
|
||||
usr/share/aspell/iso8859-15.dat
|
||||
usr/share/aspell/iso8859-2.dat
|
||||
usr/share/aspell/iso8859-3.dat
|
||||
usr/share/aspell/iso8859-4.dat
|
||||
usr/share/aspell/iso8859-5.dat
|
||||
usr/share/aspell/iso8859-6.dat
|
||||
usr/share/aspell/iso8859-7.dat
|
||||
usr/share/aspell/iso8859-8.dat
|
||||
usr/share/aspell/iso8859-9.dat
|
||||
usr/share/aspell/ispell
|
||||
usr/share/aspell/koi8-f.dat
|
||||
usr/share/aspell/koi8-r.dat
|
||||
usr/share/aspell/koi8-u.dat
|
||||
usr/share/aspell/spell
|
||||
usr/share/aspell/standard.kbd
|
||||
usr/share/aspell/viscii.dat
|
||||
usr/share/doc/aspell-0.50.4.1/README
|
||||
usr/share/doc/aspell-0.50.4.1/TODO
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/1_Introduction.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/2_Getting.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/3_Basic.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/4_Customizing.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/5_Working.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/6_Writing.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/7_Adding.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/8_How.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/A_Changelog.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/About_this.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/B_Do.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/C_Credits.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/Contents.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/D_Glossary.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/E_Copyright.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/Makefile
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/Makefile.am
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/Makefile.in
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/contents.png
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/crossref.png
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/index.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/manual.css
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/manual.html
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/next.png
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/next_g.png
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/prev.png
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/prev_g.png
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/up.png
|
||||
usr/share/doc/aspell-0.50.4.1/man-html/up_g.png
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/1_Introduction.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/2_Getting.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/3_Basic.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/4_Customizing.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/5_Working.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/6_Writing.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/7_Adding.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/8_How.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/A_Changelog.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/About_this.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/B_Do.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/C_Credits.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/Contents.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/D_Glossary.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/E_Copyright.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/Makefile
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/Makefile.am
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/Makefile.in
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/index.txt
|
||||
usr/share/doc/aspell-0.50.4.1/man-text/manual.txt
|
4
textproc/linux-aspell/pkg-plist.af
Normal file
4
textproc/linux-aspell/pkg-plist.af
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/af.multi
|
||||
usr/lib/aspell/af.rws
|
||||
usr/lib/aspell/afrikaans.alias
|
||||
usr/share/aspell/af.dat
|
4
textproc/linux-aspell/pkg-plist.bg
Normal file
4
textproc/linux-aspell/pkg-plist.bg
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/bg.multi
|
||||
usr/lib/aspell/bg.rws
|
||||
usr/lib/aspell/bulgarian.alias
|
||||
usr/share/aspell/bg.dat
|
6
textproc/linux-aspell/pkg-plist.br
Normal file
6
textproc/linux-aspell/pkg-plist.br
Normal file
@ -0,0 +1,6 @@
|
||||
usr/lib/aspell/br.multi
|
||||
usr/lib/aspell/br.rws
|
||||
usr/lib/aspell/breton.alias
|
||||
usr/lib/aspell/brezhoneg.alias
|
||||
usr/share/aspell/br.dat
|
||||
usr/share/aspell/br_phonet.dat
|
4
textproc/linux-aspell/pkg-plist.ca
Normal file
4
textproc/linux-aspell/pkg-plist.ca
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/ca.multi
|
||||
usr/lib/aspell/ca.rws
|
||||
usr/lib/aspell/catalan.alias
|
||||
usr/share/aspell/ca.dat
|
4
textproc/linux-aspell/pkg-plist.cs
Normal file
4
textproc/linux-aspell/pkg-plist.cs
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/cs.multi
|
||||
usr/lib/aspell/cs.rws
|
||||
usr/lib/aspell/czech.alias
|
||||
usr/share/aspell/cs.dat
|
4
textproc/linux-aspell/pkg-plist.cy
Normal file
4
textproc/linux-aspell/pkg-plist.cy
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/cy.multi
|
||||
usr/lib/aspell/cy.rws
|
||||
usr/lib/aspell/welsh.alias
|
||||
usr/share/aspell/cy.dat
|
5
textproc/linux-aspell/pkg-plist.da
Normal file
5
textproc/linux-aspell/pkg-plist.da
Normal file
@ -0,0 +1,5 @@
|
||||
usr/lib/aspell/da.multi
|
||||
usr/lib/aspell/da.rws
|
||||
usr/lib/aspell/dansk.alias
|
||||
usr/share/aspell/da.dat
|
||||
usr/share/aspell/da_phonet.dat
|
11
textproc/linux-aspell/pkg-plist.de
Normal file
11
textproc/linux-aspell/pkg-plist.de
Normal file
@ -0,0 +1,11 @@
|
||||
usr/lib/aspell/de-only.rws
|
||||
usr/lib/aspell/de.multi
|
||||
usr/lib/aspell/de_CH-only.rws
|
||||
usr/lib/aspell/de_CH.multi
|
||||
usr/lib/aspell/de_DE-only.rws
|
||||
usr/lib/aspell/de_DE.multi
|
||||
usr/lib/aspell/deutsch.alias
|
||||
usr/lib/aspell/german.alias
|
||||
usr/lib/aspell/swiss.alias
|
||||
usr/share/aspell/de.dat
|
||||
usr/share/aspell/de_phonet.dat
|
5
textproc/linux-aspell/pkg-plist.dirrm
Normal file
5
textproc/linux-aspell/pkg-plist.dirrm
Normal file
@ -0,0 +1,5 @@
|
||||
@dirrm usr/share/doc/aspell-0.50.4.1/man-text
|
||||
@dirrm usr/share/doc/aspell-0.50.4.1/man-html
|
||||
@dirrm usr/share/doc/aspell-0.50.4.1
|
||||
@dirrm usr/share/aspell
|
||||
@dirrm usr/lib/aspell
|
5
textproc/linux-aspell/pkg-plist.el
Normal file
5
textproc/linux-aspell/pkg-plist.el
Normal file
@ -0,0 +1,5 @@
|
||||
usr/lib/aspell/el.multi
|
||||
usr/lib/aspell/el.rws
|
||||
usr/lib/aspell/greek.alias
|
||||
usr/share/aspell/el.dat
|
||||
usr/share/aspell/el_phonet.dat
|
20
textproc/linux-aspell/pkg-plist.en
Normal file
20
textproc/linux-aspell/pkg-plist.en
Normal file
@ -0,0 +1,20 @@
|
||||
usr/lib/aspell/american-w-accents.alias
|
||||
usr/lib/aspell/american.alias
|
||||
usr/lib/aspell/british-w-accents.alias
|
||||
usr/lib/aspell/british.alias
|
||||
usr/lib/aspell/canadian-w-accents.alias
|
||||
usr/lib/aspell/canadian.alias
|
||||
usr/lib/aspell/en-only.rws
|
||||
usr/lib/aspell/en.multi
|
||||
usr/lib/aspell/en_CA-only.rws
|
||||
usr/lib/aspell/en_CA-w-accents.multi
|
||||
usr/lib/aspell/en_CA.multi
|
||||
usr/lib/aspell/en_GB-only.rws
|
||||
usr/lib/aspell/en_GB-w-accents.multi
|
||||
usr/lib/aspell/en_GB.multi
|
||||
usr/lib/aspell/en_US-only.rws
|
||||
usr/lib/aspell/en_US-w-accents.multi
|
||||
usr/lib/aspell/en_US.multi
|
||||
usr/lib/aspell/english.alias
|
||||
usr/share/aspell/en.dat
|
||||
usr/share/aspell/en_phonet.dat
|
4
textproc/linux-aspell/pkg-plist.eo
Normal file
4
textproc/linux-aspell/pkg-plist.eo
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/eo.multi
|
||||
usr/lib/aspell/eo.rws
|
||||
usr/lib/aspell/esperanto.alias
|
||||
usr/share/aspell/eo.dat
|
6
textproc/linux-aspell/pkg-plist.es
Normal file
6
textproc/linux-aspell/pkg-plist.es
Normal file
@ -0,0 +1,6 @@
|
||||
usr/lib/aspell/es.multi
|
||||
usr/lib/aspell/es.rws
|
||||
usr/lib/aspell/español.alias
|
||||
usr/lib/aspell/esponol.alias
|
||||
usr/lib/aspell/spanish.alias
|
||||
usr/share/aspell/es.dat
|
6
textproc/linux-aspell/pkg-plist.fo
Normal file
6
textproc/linux-aspell/pkg-plist.fo
Normal file
@ -0,0 +1,6 @@
|
||||
usr/lib/aspell/faroese.alias
|
||||
usr/lib/aspell/fo.multi
|
||||
usr/lib/aspell/fo.rws
|
||||
usr/lib/aspell/føroyskt.alias
|
||||
usr/share/aspell/fo.dat
|
||||
usr/share/aspell/fo_phonet.dat
|
48
textproc/linux-aspell/pkg-plist.fr
Normal file
48
textproc/linux-aspell/pkg-plist.fr
Normal file
@ -0,0 +1,48 @@
|
||||
usr/lib/aspell/fr-40-only.rws
|
||||
usr/lib/aspell/fr-40.multi
|
||||
usr/lib/aspell/fr-60-only.rws
|
||||
usr/lib/aspell/fr-60.multi
|
||||
usr/lib/aspell/fr-80-only.rws
|
||||
usr/lib/aspell/fr-80.multi
|
||||
usr/lib/aspell/fr-lrg.alias
|
||||
usr/lib/aspell/fr-med.alias
|
||||
usr/lib/aspell/fr-sml.alias
|
||||
usr/lib/aspell/fr.multi
|
||||
usr/lib/aspell/fr_CH-40.multi
|
||||
usr/lib/aspell/fr_CH-60.multi
|
||||
usr/lib/aspell/fr_CH-80.multi
|
||||
usr/lib/aspell/fr_CH-lrg.alias
|
||||
usr/lib/aspell/fr_CH-med.alias
|
||||
usr/lib/aspell/fr_CH-only.rws
|
||||
usr/lib/aspell/fr_CH-sml.alias
|
||||
usr/lib/aspell/fr_CH.multi
|
||||
usr/lib/aspell/fr_FR-40.multi
|
||||
usr/lib/aspell/fr_FR-60.multi
|
||||
usr/lib/aspell/fr_FR-80.multi
|
||||
usr/lib/aspell/fr_FR-lrg.alias
|
||||
usr/lib/aspell/fr_FR-med.alias
|
||||
usr/lib/aspell/fr_FR-sml.alias
|
||||
usr/lib/aspell/fr_FR.multi
|
||||
usr/lib/aspell/francais-40.alias
|
||||
usr/lib/aspell/francais-60.alias
|
||||
usr/lib/aspell/francais-80.alias
|
||||
usr/lib/aspell/francais-lrg.alias
|
||||
usr/lib/aspell/francais-med.alias
|
||||
usr/lib/aspell/francais-sml.alias
|
||||
usr/lib/aspell/francais.alias
|
||||
usr/lib/aspell/french-40.alias
|
||||
usr/lib/aspell/french-60.alias
|
||||
usr/lib/aspell/french-80.alias
|
||||
usr/lib/aspell/french-lrg.alias
|
||||
usr/lib/aspell/french-med.alias
|
||||
usr/lib/aspell/french-sml.alias
|
||||
usr/lib/aspell/french.alias
|
||||
usr/lib/aspell/suisse-40.alias
|
||||
usr/lib/aspell/suisse-60.alias
|
||||
usr/lib/aspell/suisse-80.alias
|
||||
usr/lib/aspell/suisse-lrg.alias
|
||||
usr/lib/aspell/suisse-med.alias
|
||||
usr/lib/aspell/suisse-sml.alias
|
||||
usr/lib/aspell/suisse.alias
|
||||
usr/share/aspell/fr.dat
|
||||
usr/share/aspell/fr_phonet.dat
|
6
textproc/linux-aspell/pkg-plist.ga
Normal file
6
textproc/linux-aspell/pkg-plist.ga
Normal file
@ -0,0 +1,6 @@
|
||||
usr/lib/aspell/ga.multi
|
||||
usr/lib/aspell/ga.rws
|
||||
usr/lib/aspell/gaeilge.alias
|
||||
usr/lib/aspell/irish.alias
|
||||
usr/share/aspell/ga.dat
|
||||
usr/share/aspell/ga_phonet.dat
|
5
textproc/linux-aspell/pkg-plist.gd
Normal file
5
textproc/linux-aspell/pkg-plist.gd
Normal file
@ -0,0 +1,5 @@
|
||||
usr/lib/aspell/gaidhlig.alias
|
||||
usr/lib/aspell/gd.multi
|
||||
usr/lib/aspell/gd.rws
|
||||
usr/share/aspell/gd.dat
|
||||
usr/share/aspell/gd_phonet.dat
|
4
textproc/linux-aspell/pkg-plist.gl
Normal file
4
textproc/linux-aspell/pkg-plist.gl
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/gl.multi
|
||||
usr/lib/aspell/gl.rws
|
||||
usr/share/aspell/gl.dat
|
||||
usr/share/aspell/gl_phonet.dat
|
5
textproc/linux-aspell/pkg-plist.gv
Normal file
5
textproc/linux-aspell/pkg-plist.gv
Normal file
@ -0,0 +1,5 @@
|
||||
usr/lib/aspell/gaelg.alias
|
||||
usr/lib/aspell/gv.multi
|
||||
usr/lib/aspell/gv.rws
|
||||
usr/lib/aspell/manx.alias
|
||||
usr/share/aspell/gv.dat
|
4
textproc/linux-aspell/pkg-plist.hr
Normal file
4
textproc/linux-aspell/pkg-plist.hr
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/croatian.alias
|
||||
usr/lib/aspell/hr.multi
|
||||
usr/lib/aspell/hr.rws
|
||||
usr/share/aspell/hr.dat
|
4
textproc/linux-aspell/pkg-plist.ia
Normal file
4
textproc/linux-aspell/pkg-plist.ia
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/ia.multi
|
||||
usr/lib/aspell/ia.rws
|
||||
usr/lib/aspell/interlingua.alias
|
||||
usr/share/aspell/ia.dat
|
4
textproc/linux-aspell/pkg-plist.id
Normal file
4
textproc/linux-aspell/pkg-plist.id
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/id.multi
|
||||
usr/lib/aspell/id.rws
|
||||
usr/lib/aspell/indonesian.alias
|
||||
usr/share/aspell/id.dat
|
6
textproc/linux-aspell/pkg-plist.is
Normal file
6
textproc/linux-aspell/pkg-plist.is
Normal file
@ -0,0 +1,6 @@
|
||||
usr/lib/aspell/icelandic.alias
|
||||
usr/lib/aspell/is.multi
|
||||
usr/lib/aspell/is.rws
|
||||
usr/lib/aspell/íslenska.alias
|
||||
usr/share/aspell/is.dat
|
||||
usr/share/aspell/is_phonet.dat
|
5
textproc/linux-aspell/pkg-plist.it
Normal file
5
textproc/linux-aspell/pkg-plist.it
Normal file
@ -0,0 +1,5 @@
|
||||
usr/lib/aspell/it.multi
|
||||
usr/lib/aspell/it.rws
|
||||
usr/lib/aspell/italian.alias
|
||||
usr/lib/aspell/italiano.alias
|
||||
usr/share/aspell/it.dat
|
4
textproc/linux-aspell/pkg-plist.mi
Normal file
4
textproc/linux-aspell/pkg-plist.mi
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/maori.alias
|
||||
usr/lib/aspell/mi.multi
|
||||
usr/lib/aspell/mi.rws
|
||||
usr/share/aspell/mi.dat
|
4
textproc/linux-aspell/pkg-plist.ms
Normal file
4
textproc/linux-aspell/pkg-plist.ms
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/malay.alias
|
||||
usr/lib/aspell/ms.multi
|
||||
usr/lib/aspell/ms.rws
|
||||
usr/share/aspell/ms.dat
|
6
textproc/linux-aspell/pkg-plist.mt
Normal file
6
textproc/linux-aspell/pkg-plist.mt
Normal file
@ -0,0 +1,6 @@
|
||||
usr/lib/aspell/maltese.alias
|
||||
usr/lib/aspell/malti.alias
|
||||
usr/lib/aspell/mt.multi
|
||||
usr/lib/aspell/mt.rws
|
||||
usr/share/aspell/mt.dat
|
||||
usr/share/aspell/mt_phonet.dat
|
7
textproc/linux-aspell/pkg-plist.nb
Normal file
7
textproc/linux-aspell/pkg-plist.nb
Normal file
@ -0,0 +1,7 @@
|
||||
usr/lib/aspell/bokmal.alias
|
||||
usr/lib/aspell/bokmål.alias
|
||||
usr/lib/aspell/nb.multi
|
||||
usr/lib/aspell/nb.rws
|
||||
usr/lib/aspell/no.alias
|
||||
usr/lib/aspell/norsk.alias
|
||||
usr/share/aspell/nb.dat
|
4
textproc/linux-aspell/pkg-plist.nl
Normal file
4
textproc/linux-aspell/pkg-plist.nl
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/dutch.alias
|
||||
usr/lib/aspell/nl.multi
|
||||
usr/lib/aspell/nl.rws
|
||||
usr/share/aspell/nl.dat
|
4
textproc/linux-aspell/pkg-plist.nn
Normal file
4
textproc/linux-aspell/pkg-plist.nn
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/nn.multi
|
||||
usr/lib/aspell/nn.rws
|
||||
usr/lib/aspell/nynorsk.alias
|
||||
usr/share/aspell/nn.dat
|
4
textproc/linux-aspell/pkg-plist.pl
Normal file
4
textproc/linux-aspell/pkg-plist.pl
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/pl.multi
|
||||
usr/lib/aspell/pl.rws
|
||||
usr/lib/aspell/polish.alias
|
||||
usr/share/aspell/pl.dat
|
10
textproc/linux-aspell/pkg-plist.pt
Normal file
10
textproc/linux-aspell/pkg-plist.pt
Normal file
@ -0,0 +1,10 @@
|
||||
usr/lib/aspell/brazilian.alias
|
||||
usr/lib/aspell/português.alias
|
||||
usr/lib/aspell/portuguese.alias
|
||||
usr/lib/aspell/pt-only.rws
|
||||
usr/lib/aspell/pt.multi
|
||||
usr/lib/aspell/pt_BR-only.rws
|
||||
usr/lib/aspell/pt_BR.multi
|
||||
usr/lib/aspell/pt_PT-only.rws
|
||||
usr/lib/aspell/pt_PT.multi
|
||||
usr/share/aspell/pt.dat
|
6
textproc/linux-aspell/pkg-plist.ro
Normal file
6
textproc/linux-aspell/pkg-plist.ro
Normal file
@ -0,0 +1,6 @@
|
||||
usr/lib/aspell/ro.multi
|
||||
usr/lib/aspell/ro.rws
|
||||
usr/lib/aspell/romaneste.alias
|
||||
usr/lib/aspell/româneºte.alias
|
||||
usr/lib/aspell/romanian.alias
|
||||
usr/share/aspell/ro.dat
|
5
textproc/linux-aspell/pkg-plist.ru
Normal file
5
textproc/linux-aspell/pkg-plist.ru
Normal file
@ -0,0 +1,5 @@
|
||||
usr/lib/aspell/ru.multi
|
||||
usr/lib/aspell/ru.rws
|
||||
usr/lib/aspell/russian.alias
|
||||
usr/share/aspell/ru.dat
|
||||
usr/share/aspell/ru_phonet.dat
|
9
textproc/linux-aspell/pkg-plist.sk
Normal file
9
textproc/linux-aspell/pkg-plist.sk
Normal file
@ -0,0 +1,9 @@
|
||||
usr/lib/aspell/sk-extend.rws
|
||||
usr/lib/aspell/sk-extended.multi
|
||||
usr/lib/aspell/sk.multi
|
||||
usr/lib/aspell/sk.rws
|
||||
usr/lib/aspell/sk_SK-extended.alias
|
||||
usr/lib/aspell/sk_SK.alias
|
||||
usr/lib/aspell/slovak-extended.alias
|
||||
usr/lib/aspell/slovak.alias
|
||||
usr/share/aspell/sk.dat
|
4
textproc/linux-aspell/pkg-plist.sl
Normal file
4
textproc/linux-aspell/pkg-plist.sl
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/sl.multi
|
||||
usr/lib/aspell/sl.rws
|
||||
usr/lib/aspell/slovenian.alias
|
||||
usr/share/aspell/sl.dat
|
6
textproc/linux-aspell/pkg-plist.sv
Normal file
6
textproc/linux-aspell/pkg-plist.sv
Normal file
@ -0,0 +1,6 @@
|
||||
usr/lib/aspell/sv.multi
|
||||
usr/lib/aspell/sv.rws
|
||||
usr/lib/aspell/svenska.alias
|
||||
usr/lib/aspell/swedish.alias
|
||||
usr/share/aspell/sv.dat
|
||||
usr/share/aspell/sv_phonet.dat
|
5
textproc/linux-aspell/pkg-plist.sw
Normal file
5
textproc/linux-aspell/pkg-plist.sw
Normal file
@ -0,0 +1,5 @@
|
||||
usr/lib/aspell/kiswahili.alias
|
||||
usr/lib/aspell/sw.multi
|
||||
usr/lib/aspell/sw.rws
|
||||
usr/lib/aspell/swahili.alias
|
||||
usr/share/aspell/sw.dat
|
5
textproc/linux-aspell/pkg-plist.tn
Normal file
5
textproc/linux-aspell/pkg-plist.tn
Normal file
@ -0,0 +1,5 @@
|
||||
usr/lib/aspell/setswana.alias
|
||||
usr/lib/aspell/tn.multi
|
||||
usr/lib/aspell/tn.rws
|
||||
usr/lib/aspell/tswana.alias
|
||||
usr/share/aspell/tn.dat
|
3
textproc/linux-aspell/pkg-plist.tr
Normal file
3
textproc/linux-aspell/pkg-plist.tr
Normal file
@ -0,0 +1,3 @@
|
||||
usr/lib/aspell/tr.multi
|
||||
usr/lib/aspell/tr.rws
|
||||
usr/share/aspell/tr.dat
|
4
textproc/linux-aspell/pkg-plist.uk
Normal file
4
textproc/linux-aspell/pkg-plist.uk
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/uk.multi
|
||||
usr/lib/aspell/uk.rws
|
||||
usr/lib/aspell/ukrainian.alias
|
||||
usr/share/aspell/uk.dat
|
6
textproc/linux-aspell/pkg-plist.wa
Normal file
6
textproc/linux-aspell/pkg-plist.wa
Normal file
@ -0,0 +1,6 @@
|
||||
usr/lib/aspell/wa.multi
|
||||
usr/lib/aspell/wa.rws
|
||||
usr/lib/aspell/walloon.alias
|
||||
usr/lib/aspell/walon.alias
|
||||
usr/share/aspell/wa.dat
|
||||
usr/share/aspell/wa_phonet.dat
|
4
textproc/linux-aspell/pkg-plist.zu
Normal file
4
textproc/linux-aspell/pkg-plist.zu
Normal file
@ -0,0 +1,4 @@
|
||||
usr/lib/aspell/zu.multi
|
||||
usr/lib/aspell/zu.rws
|
||||
usr/lib/aspell/zulu.alias
|
||||
usr/share/aspell/zu.dat
|
Loading…
Reference in New Issue
Block a user