diff options
author | rodent <rodent@pkgsrc.org> | 2013-04-09 02:33:36 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2013-04-09 02:33:36 +0000 |
commit | ee3b5b270cc47eedaf3de3fc24245a4948cd2042 (patch) | |
tree | 212dfe5db624559179d35275be8e0b146bd1bd95 /textproc/aspell-de | |
parent | 632ca0791a26581b386194ea4b085daf87f4fa2e (diff) | |
download | pkgsrc-ee3b5b270cc47eedaf3de3fc24245a4948cd2042.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-de')
-rw-r--r-- | textproc/aspell-de/DESCR | 2 | ||||
-rw-r--r-- | textproc/aspell-de/Makefile | 17 | ||||
-rw-r--r-- | textproc/aspell-de/PLIST | 15 | ||||
-rw-r--r-- | textproc/aspell-de/distinfo | 6 | ||||
-rw-r--r-- | textproc/aspell-de/patches/patch-aa | 21 |
5 files changed, 61 insertions, 0 deletions
diff --git a/textproc/aspell-de/DESCR b/textproc/aspell-de/DESCR new file mode 100644 index 00000000000..0d23d830187 --- /dev/null +++ b/textproc/aspell-de/DESCR @@ -0,0 +1,2 @@ +German language support for aspell, e.g. `aspell -d german -c $myfile'. +Other sub-dictionary available in this package: swiss. diff --git a/textproc/aspell-de/Makefile b/textproc/aspell-de/Makefile new file mode 100644 index 00000000000..3f77bd0f293 --- /dev/null +++ b/textproc/aspell-de/Makefile @@ -0,0 +1,17 @@ +# $NetBSD: Makefile,v 1.1 2013/04/09 02:33:39 rodent Exp $ +# + +DISTNAME= aspell6-de-20030222-1 +PKGNAME= ${DISTNAME:S/6-/-/1:S/-1/.1/1} +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_GNU:=aspell/dict/de/} +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://aspell.net/ +COMMENT= German language support for aspell + +HAS_CONFIGURE= yes + +.include "../../textproc/aspell/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/textproc/aspell-de/PLIST b/textproc/aspell-de/PLIST new file mode 100644 index 00000000000..9a3c3b926eb --- /dev/null +++ b/textproc/aspell-de/PLIST @@ -0,0 +1,15 @@ +@comment $NetBSD: PLIST,v 1.1 2013/04/09 02:33:39 rodent Exp $ +lib/aspell/de-common.rws +lib/aspell/de.multi +lib/aspell/de_AT-only.rws +lib/aspell/de_AT.multi +lib/aspell/de_CH-only.rws +lib/aspell/de_CH.multi +lib/aspell/de_DE-only.rws +lib/aspell/de_DE.multi +lib/aspell/deutsch.alias +lib/aspell/german.alias +lib/aspell/swiss.alias +share/aspell/de.dat +share/aspell/de_affix.dat +share/aspell/de_phonet.dat diff --git a/textproc/aspell-de/distinfo b/textproc/aspell-de/distinfo new file mode 100644 index 00000000000..7eb6a2fbd8a --- /dev/null +++ b/textproc/aspell-de/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2013/04/09 02:33:39 rodent Exp $ + +SHA1 (aspell6-de-20030222-1.tar.bz2) = a06b1153404f6d1f9bd8aa03d596c14093e561c7 +RMD160 (aspell6-de-20030222-1.tar.bz2) = e590afd004f64329688eb7ef57455db1b2515683 +Size (aspell6-de-20030222-1.tar.bz2) = 274407 bytes +SHA1 (patch-aa) = e22211d1b77a79d16e2334630dc171245bb15677 diff --git a/textproc/aspell-de/patches/patch-aa b/textproc/aspell-de/patches/patch-aa new file mode 100644 index 00000000000..c5a50d23c77 --- /dev/null +++ b/textproc/aspell-de/patches/patch-aa @@ -0,0 +1,21 @@ +$NetBSD: patch-aa,v 1.1 2013/04/09 02:33:39 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} |