diff options
author | rodent <rodent> | 2013-04-09 02:33:36 +0000 |
---|---|---|
committer | rodent <rodent> | 2013-04-09 02:33:36 +0000 |
commit | 232af31a8f8a0fad63d4d37bb2ed690d22c9083f (patch) | |
tree | 212dfe5db624559179d35275be8e0b146bd1bd95 /textproc/aspell-cs | |
parent | 3fca35a64148b0c91c8ce2377301672b7c03c3ba (diff) | |
download | pkgsrc-232af31a8f8a0fad63d4d37bb2ed690d22c9083f.tar.gz |
Moved aspell-* packages as discussed. Reasons being:
1) Shorter package name;
2) Be consistent with kde3-i18n-*, kde4-l10n-*, hunspell-*, lang-*
PKG_OPTIONS;
3) Simplify modifications to PKGNAME in their Makefiles;
4) Accordance with international language naming standards;
5) Facilitate the addition of other dictionaries which are variants of the
same language (ex. Portuguese and Norwegian);
May this commit not cause anything to explode, hairs to gray, nerds to rage
Diffstat (limited to 'textproc/aspell-cs')
-rw-r--r-- | textproc/aspell-cs/DESCR | 1 | ||||
-rw-r--r-- | textproc/aspell-cs/Makefile | 20 | ||||
-rw-r--r-- | textproc/aspell-cs/PLIST | 6 | ||||
-rw-r--r-- | textproc/aspell-cs/distinfo | 6 | ||||
-rw-r--r-- | textproc/aspell-cs/patches/patch-aa | 21 |
5 files changed, 54 insertions, 0 deletions
diff --git a/textproc/aspell-cs/DESCR b/textproc/aspell-cs/DESCR new file mode 100644 index 00000000000..1e1985ea1d0 --- /dev/null +++ b/textproc/aspell-cs/DESCR @@ -0,0 +1 @@ +Czech language support for aspell, e.g. `aspell -d czech -c $myfile'. diff --git a/textproc/aspell-cs/Makefile b/textproc/aspell-cs/Makefile new file mode 100644 index 00000000000..69363409d83 --- /dev/null +++ b/textproc/aspell-cs/Makefile @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1 2013/04/09 02:33:37 rodent Exp $ +# + +DISTNAME= aspell6-cs-20040614-1 +PKGNAME= ${DISTNAME:S/6-/-/1:S/-1/.1/1} +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_GNU:=aspell/dict/cs/} +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://aspell.net/ +COMMENT= Czech language support for aspell + +# earlier versions core-dumped on the input +BUILDLINK_API_DEPENDS.aspell+= aspell>=0.60.2nb1 + +HAS_CONFIGURE= yes + +.include "../../textproc/aspell/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/textproc/aspell-cs/PLIST b/textproc/aspell-cs/PLIST new file mode 100644 index 00000000000..49743b43f31 --- /dev/null +++ b/textproc/aspell-cs/PLIST @@ -0,0 +1,6 @@ +@comment $NetBSD: PLIST,v 1.1 2013/04/09 02:33:37 rodent Exp $ +lib/aspell/cs.multi +lib/aspell/cs.rws +lib/aspell/czech.alias +share/aspell/cs.dat +share/aspell/cs_affix.dat diff --git a/textproc/aspell-cs/distinfo b/textproc/aspell-cs/distinfo new file mode 100644 index 00000000000..f295028ae16 --- /dev/null +++ b/textproc/aspell-cs/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2013/04/09 02:33:37 rodent Exp $ + +SHA1 (aspell6-cs-20040614-1.tar.bz2) = 83756c070c1444f06c779a350d0bdad1d31e2b98 +RMD160 (aspell6-cs-20040614-1.tar.bz2) = a1d285ef6438fa164f837c7d07aea7ca35365035 +Size (aspell6-cs-20040614-1.tar.bz2) = 451507 bytes +SHA1 (patch-aa) = e22211d1b77a79d16e2334630dc171245bb15677 diff --git a/textproc/aspell-cs/patches/patch-aa b/textproc/aspell-cs/patches/patch-aa new file mode 100644 index 00000000000..4e7d1099dcc --- /dev/null +++ b/textproc/aspell-cs/patches/patch-aa @@ -0,0 +1,21 @@ +$NetBSD: patch-aa,v 1.1 2013/04/09 02:33:37 rodent 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} ++ ${BSD_INSTALL_DATA_DIR} ${DESTDIR}${dictdir}/ ++ ${BSD_INSTALL_DATA} ${rws_files} ${multi_files} ${DESTDIR}${dictdir}/ ++ ${BSD_INSTALL_DATA_DIR} ${DESTDIR}${datadir}/ ++ ${BSD_INSTALL_DATA} ${data_files} ${DESTDIR}${datadir}/ + + clean: + rm -f ${rws_files} |