--- g2p-sk-0.4.2.orig/debian/dirs +++ g2p-sk-0.4.2/debian/dirs @@ -0,0 +1,3 @@ +usr/bin +usr/share/perl5/g2p_sk +usr/share/g2p_sk --- g2p-sk-0.4.2.orig/debian/control +++ g2p-sk-0.4.2/debian/control @@ -0,0 +1,16 @@ +Source: g2p-sk +Section: text +Priority: extra +Maintainer: Ďoďo Ivanecký +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: g2p-sk +Architecture: all +Depends: ${perl:Depends}, sylseg-sk (>= 0.3) +Suggests: konwert +Description: Phonetic transcription for Slovak language + g2p-sk implements rule based approach for the + phonetic transcription. Each input word represented by the + sequence of the graphemes is transcribed to the sequence of + of the phones in the SAMPA coding. --- g2p-sk-0.4.2.orig/debian/rules +++ g2p-sk-0.4.2/debian/rules @@ -0,0 +1,101 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + #$(MAKE) + #docbook-to-man debian/g2p-sk.sgml > g2p-sk.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + #-$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/g2p-sk. + #$(MAKE) install DESTDIR=$(CURDIR)/debian/g2p-sk + cp -v Trans_morfems.pm $(CURDIR)/debian/g2p-sk/usr/share/perl5/g2p_sk/ + cp -v Trans_cod.pm $(CURDIR)/debian/g2p-sk/usr/share/perl5/g2p_sk/ + cp -v -r Exceptions $(CURDIR)/debian/g2p-sk/usr/share/g2p_sk/ + cp -v g2p-sk $(CURDIR)/debian/g2p-sk/usr/bin/ + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs +# dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman g2p-sk.1 + dh_link + dh_strip + dh_compress + dh_fixperms + dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- g2p-sk-0.4.2.orig/debian/README +++ g2p-sk-0.4.2/debian/README @@ -0,0 +1,45 @@ +G2P-SK 0.2 +============= + + +ABOUT G2P-SK +--------------- + +The phonetic transcription is essential for some linguistic or speech +recognition applications. Depending on the language either rule based +or statistical approach is being used. g2p-sk implements the rule +based approach but in the future it may be replaced by statistical one. + +Each input word consisting of the sequence of graphemes is transcribed +in to the sequence of phones in the SAMPA coding. If no input file is +specified, the standard input is expected. + +The first version was written in 2003 and for syllabic segmentation +uses the statistical syllabic segmentation included in the sylseg-sk +package. For the morphematic segmentation the simple morphematic +dictionary is being used. + +Please see the man page, `g2p-sk.1', for information on how to +use it. + + +G2P-SK HOME PAGE +------------------- +For latest distributions, bug reports, and other stuff, see the +g2p-sk home page at + + http://www.ivanecky.sk/projects/g2p/ + +BUGS, SUGGESTIONS, ETC. +----------------------- +Please write me if you have trouble using or running g2p-sk, or if +you have suggestions or (preferably) patches. + + Ďoďo Ivanecký + dodo.sk@gmail.com + http://www.ivanecky.sk + +AUTHORS +------- + Ďoďo Ivanecký + --- g2p-sk-0.4.2.orig/debian/changelog +++ g2p-sk-0.4.2/debian/changelog @@ -0,0 +1,52 @@ +g2p-sk (0.4.2-1) unstable; urgency=low + + * Fixed h\->h bugs in general exceptions file + * Fixed O->o bugs in general exceptions file + + -- Ďoďo Ivanecký Sun, 17 May 2009 19:44:08 +0200 + +g2p-sk (0.4.1-1) unstable; urgency=low + + * Package changed from native to non-native. Closes: #485075 + * Added simple phone statistic option + * Fixed transcription of 'h' in case of double consonants + * Fixed typo in general exceptions file + * Fixed bug in the exception file input + + -- Ďoďo Ivanecký Sat, 04 Apr 2009 09:14:32 +0200 + +g2p-sk (0.3.2) unstable; urgency=low + + * Added missing assimilation rule for end of sentence. Closes: #435797. + * English version of debug messages. + + -- Ďoďo Ivanecký Fri, 28 Dec 2007 21:36:13 +0100 + +g2p-sk (0.3.1) unstable; urgency=low + + * Missing chars added in to lc utility. Closes: #401722. + + -- Ďoďo Ivanecký Fri, 15 Dec 2006 08:46:29 +0100 + +g2p-sk (0.3) unstable; urgency=low + + * Reduction of debug levels - compatibility with sylseg-sk package. + * Extension of the excepion dictionary. + * Added syllabic borders skipping in vowels transcription. Closes: #400003. + * Adding --ofile option. + * Extension of dipthongs checking. Closes: #400497. + + -- Ďoďo Ivanecký Sat, 2 Dec 2006 23:41:40 +0100 + +g2p-sk (0.2) unstable; urgency=low + + * Added manual. + * Minor fixes. + + -- Ďoďo Ivanecký Mon, 23 Oct 2006 16:13:25 +0200 + +g2p-sk (0.1) unstable; urgency=low + + * Initial Release. + + -- Ďoďo Ivanecký Mon, 16 Oct 2006 19:19:47 +0200 --- g2p-sk-0.4.2.orig/debian/compat +++ g2p-sk-0.4.2/debian/compat @@ -0,0 +1 @@ +5 --- g2p-sk-0.4.2.orig/debian/copyright +++ g2p-sk-0.4.2/debian/copyright @@ -0,0 +1,26 @@ +This is g2p-sk, written and maintained by Ďoďo +debianized on Mon, 28 Aug 2006 19:19:47 +0200. + +The original source can always be found at: + ftp://ftp.debian.org/dists/unstable/main/source/ + +Copyright Holder: Ďoďo Ivanecký + +License: + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'.