1
0
forked from ports/opt

hunspell: Moved from kde4 to opt

This commit is contained in:
Alan Mizrahi 2013-09-28 08:25:47 +09:00
parent c798c675d8
commit 89f4990049
3 changed files with 75 additions and 0 deletions

51
hunspell/.footprint Normal file
View File

@ -0,0 +1,51 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/affixcompress
-rwxr-xr-x root/root usr/bin/analyze
-rwxr-xr-x root/root usr/bin/chmorph
-rwxr-xr-x root/root usr/bin/hunspell
-rwxr-xr-x root/root usr/bin/hunzip
-rwxr-xr-x root/root usr/bin/hzip
-rwxr-xr-x root/root usr/bin/ispellaff2myspell
-rwxr-xr-x root/root usr/bin/makealias
-rwxr-xr-x root/root usr/bin/munch
-rwxr-xr-x root/root usr/bin/unmunch
-rwxr-xr-x root/root usr/bin/wordforms
-rwxr-xr-x root/root usr/bin/wordlist2hunspell
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/hunspell/
-rw-r--r-- root/root usr/include/hunspell/affentry.hxx
-rw-r--r-- root/root usr/include/hunspell/affixmgr.hxx
-rw-r--r-- root/root usr/include/hunspell/atypes.hxx
-rw-r--r-- root/root usr/include/hunspell/baseaffix.hxx
-rw-r--r-- root/root usr/include/hunspell/csutil.hxx
-rw-r--r-- root/root usr/include/hunspell/dictmgr.hxx
-rw-r--r-- root/root usr/include/hunspell/filemgr.hxx
-rw-r--r-- root/root usr/include/hunspell/hashmgr.hxx
-rw-r--r-- root/root usr/include/hunspell/htypes.hxx
-rw-r--r-- root/root usr/include/hunspell/hunspell.h
-rw-r--r-- root/root usr/include/hunspell/hunspell.hxx
-rw-r--r-- root/root usr/include/hunspell/hunvisapi.h
-rw-r--r-- root/root usr/include/hunspell/hunzip.hxx
-rw-r--r-- root/root usr/include/hunspell/langnum.hxx
-rw-r--r-- root/root usr/include/hunspell/phonet.hxx
-rw-r--r-- root/root usr/include/hunspell/replist.hxx
-rw-r--r-- root/root usr/include/hunspell/suggestmgr.hxx
-rw-r--r-- root/root usr/include/hunspell/w_char.hxx
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libhunspell-1.3.la
lrwxrwxrwx root/root usr/lib/libhunspell-1.3.so -> libhunspell-1.3.so.0.0.0
lrwxrwxrwx root/root usr/lib/libhunspell-1.3.so.0 -> libhunspell-1.3.so.0.0.0
-rwxr-xr-x root/root usr/lib/libhunspell-1.3.so.0.0.0
-rw-r--r-- root/root usr/lib/libparsers.a
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/hunspell.pc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/hunspell.1.gz
-rw-r--r-- root/root usr/man/man1/hunzip.1.gz
-rw-r--r-- root/root usr/man/man1/hzip.1.gz
drwxr-xr-x root/root usr/man/man3/
-rw-r--r-- root/root usr/man/man3/hunspell.3.gz
drwxr-xr-x root/root usr/man/man4/
-rw-r--r-- root/root usr/man/man4/hunspell.4.gz

1
hunspell/.md5sum Normal file
View File

@ -0,0 +1 @@
3121aaf3e13e5d88dfff13fb4a5f1ab8 hunspell-1.3.2.tar.gz

23
hunspell/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: Advanced spell checker
# URL: http://hunspell.sourceforge.net/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
name=hunspell
version=1.3.2
release=1
source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls \
--disable-static
make
make prefix=$PKG/usr install
rm -rf $PKG/usr/share/man/hu
mv $PKG/usr/share/man $PKG/usr/man
rmdir $PKG/usr/share
}