diff options
author | salo <salo> | 2003-01-17 03:53:29 +0000 |
---|---|---|
committer | salo <salo> | 2003-01-17 03:53:29 +0000 |
commit | 4d656d272650b550ac20b4775e4cc14f849cee55 (patch) | |
tree | 2a5a7cd2941576bd31e67ffa267672f9ede777be /textproc | |
parent | b5b6b07a663426849a42d1df1d0cbabd6c2f1113 (diff) | |
download | pkgsrc-4d656d272650b550ac20b4775e4cc14f849cee55.tar.gz |
Polish language support for aspell, e.g. `aspell -d polish -c $myfile'.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/aspell-polish/DESCR | 1 | ||||
-rw-r--r-- | textproc/aspell-polish/Makefile | 24 | ||||
-rw-r--r-- | textproc/aspell-polish/PLIST | 5 | ||||
-rw-r--r-- | textproc/aspell-polish/distinfo | 5 | ||||
-rw-r--r-- | textproc/aspell-polish/patches/patch-aa | 21 |
5 files changed, 56 insertions, 0 deletions
diff --git a/textproc/aspell-polish/DESCR b/textproc/aspell-polish/DESCR new file mode 100644 index 00000000000..cf1607822e3 --- /dev/null +++ b/textproc/aspell-polish/DESCR @@ -0,0 +1 @@ +Polish language support for aspell, e.g. `aspell -d polish -c $myfile'. diff --git a/textproc/aspell-polish/Makefile b/textproc/aspell-polish/Makefile new file mode 100644 index 00000000000..728b78c6508 --- /dev/null +++ b/textproc/aspell-polish/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/01/17 03:53:29 salo Exp $ +# + +DISTNAME= aspell-pl-0.50-2 +PKGNAME= ${DISTNAME:C/pl-(.*)-(.*)$/polish-\1.\2/} +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_GNU:=aspell/} +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://aspell.net/ +COMMENT= Polish language support for aspell + +USE_BUILDLINK2= YES +HAS_CONFIGURE= YES + +CONFIGURE_ENV+= ASPELL=${PREFIX}/bin/aspell +CONFIGURE_ENV+= WORD_LIST_COMPRESS=${PREFIX}/bin/word-list-compress + +MAKE_ENV+= INSTALL_DATA="${INSTALL_DATA}" +MAKE_ENV+= INSTALL_DATA_DIR="${INSTALL_DATA_DIR}" + +.include "../../textproc/aspell/buildlink2.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/textproc/aspell-polish/PLIST b/textproc/aspell-polish/PLIST new file mode 100644 index 00000000000..5ac612abbc6 --- /dev/null +++ b/textproc/aspell-polish/PLIST @@ -0,0 +1,5 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2003/01/17 03:53:29 salo Exp $ +lib/aspell/pl.multi +lib/aspell/pl.rws +lib/aspell/polish.alias +share/aspell/pl.dat diff --git a/textproc/aspell-polish/distinfo b/textproc/aspell-polish/distinfo new file mode 100644 index 00000000000..a79d32f35d4 --- /dev/null +++ b/textproc/aspell-polish/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2003/01/17 03:53:29 salo Exp $ + +SHA1 (aspell-pl-0.50-2.tar.bz2) = 57cdad1ca110638e8f1028059230233e8a68ca88 +Size (aspell-pl-0.50-2.tar.bz2) = 311840 bytes +SHA1 (patch-aa) = df35f94688de5a020875e2c3d1a6557e92923799 diff --git a/textproc/aspell-polish/patches/patch-aa b/textproc/aspell-polish/patches/patch-aa new file mode 100644 index 00000000000..8e74500176c --- /dev/null +++ b/textproc/aspell-polish/patches/patch-aa @@ -0,0 +1,21 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/01/17 03:53:29 salo Exp $ + +--- Makefile.pre.orig Fri Jan 3 18:39:33 2003 ++++ Makefile.pre Wed Jan 15 00:48:39 2003 +@@ -16,12 +16,10 @@ + all: ${rws_files} ${data_files} + + install: all +- mkdir -p ${DESTDIR}${dictdir}/ +- cp ${rws_files} ${multi_files} ${DESTDIR}${dictdir}/ +- cd ${DESTDIR}${dictdir}/ && chmod 644 ${rws_files} ${multi_files} +- mkdir -p ${DESTDIR}${datadir}/ +- cp ${data_files} ${DESTDIR}${datadir}/ +- cd ${DESTDIR}${datadir}/ && chmod 644 ${data_files} ++ ${INSTALL_DATA_DIR} ${DESTDIR}${dictdir}/ ++ ${INSTALL_DATA} ${rws_files} ${multi_files} ${DESTDIR}${dictdir}/ ++ ${INSTALL_DATA_DIR} ${DESTDIR}${datadir}/ ++ ${INSTALL_DATA} ${data_files} ${DESTDIR}${datadir}/ + + clean: + rm -f ${rws_files} |