diff options
author | salo <salo@pkgsrc.org> | 2003-01-17 03:52:04 +0000 |
---|---|---|
committer | salo <salo@pkgsrc.org> | 2003-01-17 03:52:04 +0000 |
commit | 82e504363327d36d3225f86ed6cd1dad4c004a0c (patch) | |
tree | 8330aba5230c0f4db2233e00926a3ee7f065ae60 /textproc/aspell-greek | |
parent | 408f0933047813e926bd9c346d363eb9bb380715 (diff) | |
download | pkgsrc-82e504363327d36d3225f86ed6cd1dad4c004a0c.tar.gz |
Greek language support for aspell, e.g. `aspell -d greek -c $myfile'.
Diffstat (limited to 'textproc/aspell-greek')
-rw-r--r-- | textproc/aspell-greek/DESCR | 1 | ||||
-rw-r--r-- | textproc/aspell-greek/Makefile | 24 | ||||
-rw-r--r-- | textproc/aspell-greek/PLIST | 6 | ||||
-rw-r--r-- | textproc/aspell-greek/distinfo | 5 | ||||
-rw-r--r-- | textproc/aspell-greek/patches/patch-aa | 21 |
5 files changed, 57 insertions, 0 deletions
diff --git a/textproc/aspell-greek/DESCR b/textproc/aspell-greek/DESCR new file mode 100644 index 00000000000..a253db568b6 --- /dev/null +++ b/textproc/aspell-greek/DESCR @@ -0,0 +1 @@ +Greek language support for aspell, e.g. `aspell -d greek -c $myfile'. diff --git a/textproc/aspell-greek/Makefile b/textproc/aspell-greek/Makefile new file mode 100644 index 00000000000..dd42f0bb79e --- /dev/null +++ b/textproc/aspell-greek/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/01/17 03:52:04 salo Exp $ +# + +DISTNAME= aspell-el-0.50-3 +PKGNAME= ${DISTNAME:C/el-(.*)-(.*)$/greek-\1.\2/} +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_GNU:=aspell/} +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://aspell.net/ +COMMENT= Greek 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-greek/PLIST b/textproc/aspell-greek/PLIST new file mode 100644 index 00000000000..f82281658b5 --- /dev/null +++ b/textproc/aspell-greek/PLIST @@ -0,0 +1,6 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2003/01/17 03:52:04 salo Exp $ +lib/aspell/el.multi +lib/aspell/el.rws +lib/aspell/greek.alias +share/aspell/el.dat +share/aspell/el_phonet.dat diff --git a/textproc/aspell-greek/distinfo b/textproc/aspell-greek/distinfo new file mode 100644 index 00000000000..e36704c04b6 --- /dev/null +++ b/textproc/aspell-greek/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2003/01/17 03:52:04 salo Exp $ + +SHA1 (aspell-el-0.50-3.tar.bz2) = f0242d02e45956f8fe5d8321d737ee4dc5d18931 +Size (aspell-el-0.50-3.tar.bz2) = 328225 bytes +SHA1 (patch-aa) = df35f94688de5a020875e2c3d1a6557e92923799 diff --git a/textproc/aspell-greek/patches/patch-aa b/textproc/aspell-greek/patches/patch-aa new file mode 100644 index 00000000000..4983547ad5c --- /dev/null +++ b/textproc/aspell-greek/patches/patch-aa @@ -0,0 +1,21 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/01/17 03:52:04 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} |