Description: Upstream changes introduced in version 20100526-1
 This patch has been created by dpkg-source during the package build.
 Here's the last changelog entry, hopefully it gives details on why
 those changes were made:
 .
 aspell-pl (20100526-1) unstable; urgency=low
 .
   * New upstream release
   * Switch to dpkg-source 3.0 (quilt) format
 .
 The person named in the Author field signed this changelog entry.
Author: Krzysztof Krzyżaniak (eloy) <eloy@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- /dev/null
+++ aspell-pl-20100526/Makefile
@@ -0,0 +1,81 @@
+ASPELL = /usr/bin/aspell
+ASPELL_FLAGS = 
+PREZIP = /usr/bin/prezip-bin
+DESTDIR = 
+dictdir = /usr/lib/aspell
+datadir = /usr/lib/aspell
+
+# Generated with Aspell Dicts "proc" script version 0.60.3
+
+lang = pl
+version = 6.0_20100526-0
+
+cwl_files = pl.cwl
+data_files = pl.dat pl_affix.dat
+doc_files = README Copyright
+extra_files = configure info Makefile.pre
+multi_files = pl.multi polish.alias
+rws_files = pl.rws
+
+distdir=aspell6-${lang}-${version}
+
+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}
+
+clean:
+	rm -f ${rws_files}
+
+distclean: clean
+	rm -f Makefile
+
+maintainer-clean: distclean
+	rm -f ${multi_files} configure Makefile.pre
+
+uninstall:
+	-cd ${DESTDIR}${dictdir}/ && rm ${rws_files} ${multi_files} ${link_files}
+	-cd ${DESTDIR}${datadir}/ && rm ${data_files}
+
+dist: ${cwl_files}
+	perl proc
+	./configure
+	@make dist-nogen
+
+dist-nogen:
+	-rm -r ${distdir}.tar.bz2 ${distdir}
+	mkdir ${distdir}
+	cp -p ${extra_files} ${cwl_files} ${multi_files} ${doc_files} ${data_files} ${distdir}/
+	-test -e doc  && mkdir ${distdir}/doc  && chmod 755 ${distdir}/doc  && cp -pr doc/* ${distdir}/doc/
+	-test -e misc && mkdir ${distdir}/misc && chmod 755 ${distdir}/misc && cp -pr misc/* ${distdir}/misc/
+	tar cf ${distdir}.tar ${distdir}/
+	bzip2 -9 ${distdir}.tar
+	rm -r ${distdir}/
+
+distcheck:
+	tar xfj ${distdir}.tar.bz2
+	cd ${distdir} && ./configure && make
+
+rel:
+	mv ${distdir}.tar.bz2 ../rel
+
+
+pl.rws: pl.cwl
+
+
+.SUFFIXES: .cwl .rws .wl
+
+.cwl.rws:
+	${PREZIP} -d < $< | ${ASPELL} ${ASPELL_FLAGS} --lang=pl create master ./$@
+
+.wl.cwl:
+	cat $< | LC_COLLATE=C sort -u | ${PREZIP} -z > $@
+
+.pz:
+	${PREZIP} -d < $< > $@
+
