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 | 5a65cc333f2c54f752e138ab6dda7ecd7c51a19d (patch) | |
tree | 212dfe5db624559179d35275be8e0b146bd1bd95 /textproc/aspell-eo | |
parent | 9cd16a36e65f1cf26f86fc34a611f483c0e3b36c (diff) | |
download | pkgsrc-5a65cc333f2c54f752e138ab6dda7ecd7c51a19d.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-eo')
-rw-r--r-- | textproc/aspell-eo/DESCR | 1 | ||||
-rw-r--r-- | textproc/aspell-eo/Makefile | 17 | ||||
-rw-r--r-- | textproc/aspell-eo/PLIST | 5 | ||||
-rw-r--r-- | textproc/aspell-eo/distinfo | 6 | ||||
-rw-r--r-- | textproc/aspell-eo/patches/patch-aa | 21 |
5 files changed, 50 insertions, 0 deletions
diff --git a/textproc/aspell-eo/DESCR b/textproc/aspell-eo/DESCR new file mode 100644 index 00000000000..60972d36387 --- /dev/null +++ b/textproc/aspell-eo/DESCR @@ -0,0 +1 @@ +Esperanto language support for aspell, e.g. `aspell -d esperanto -c $myfile'. diff --git a/textproc/aspell-eo/Makefile b/textproc/aspell-eo/Makefile new file mode 100644 index 00000000000..03e9f13c2b7 --- /dev/null +++ b/textproc/aspell-eo/Makefile @@ -0,0 +1,17 @@ +# $NetBSD: Makefile,v 1.1 2013/04/09 02:33:41 rodent Exp $ +# + +DISTNAME= aspell-eo-0.50-2 +PKGNAME= ${DISTNAME:S/-2/.2/1} +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_GNU:=aspell/dict/eo/} +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://aspell.net/ +COMMENT= Esperanto language support for aspell + +HAS_CONFIGURE= yes + +.include "../../textproc/aspell/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/textproc/aspell-eo/PLIST b/textproc/aspell-eo/PLIST new file mode 100644 index 00000000000..5ef777626bf --- /dev/null +++ b/textproc/aspell-eo/PLIST @@ -0,0 +1,5 @@ +@comment $NetBSD: PLIST,v 1.1 2013/04/09 02:33:41 rodent Exp $ +lib/aspell/eo.multi +lib/aspell/eo.rws +lib/aspell/esperanto.alias +share/aspell/eo.dat diff --git a/textproc/aspell-eo/distinfo b/textproc/aspell-eo/distinfo new file mode 100644 index 00000000000..ee86ef4fd86 --- /dev/null +++ b/textproc/aspell-eo/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2013/04/09 02:33:41 rodent Exp $ + +SHA1 (aspell-eo-0.50-2.tar.bz2) = 51d73239d0c2253b962e7caa1563ee7abcbc443d +RMD160 (aspell-eo-0.50-2.tar.bz2) = 9f392cb057a7774b4605a0498ebd6a34208b437c +Size (aspell-eo-0.50-2.tar.bz2) = 89703 bytes +SHA1 (patch-aa) = e22211d1b77a79d16e2334630dc171245bb15677 diff --git a/textproc/aspell-eo/patches/patch-aa b/textproc/aspell-eo/patches/patch-aa new file mode 100644 index 00000000000..816e8721bf8 --- /dev/null +++ b/textproc/aspell-eo/patches/patch-aa @@ -0,0 +1,21 @@ +$NetBSD: patch-aa,v 1.1 2013/04/09 02:33:41 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} |