debian/0000755000000000000000000000000012224024667007173 5ustar debian/source/0000755000000000000000000000000011650551161010467 5ustar debian/source/format0000644000000000000000000000001411650551161011675 0ustar 3.0 (quilt) debian/yudit.manpages0000644000000000000000000000010511650551161012036 0ustar debian/yudit.1 uniconv/uniconv.1 uniprint/uniprint.1 mytool/mytool.1 debian/watch0000644000000000000000000000007111650551161010216 0ustar version=3 http://yudit.org/download/yudit-(.*)\.tar\.gz debian/patches/0000755000000000000000000000000012034450672010620 5ustar debian/patches/install-png-to-pixmaps0000644000000000000000000000156312034443030015065 0ustar Description: install png file to /usr/share/pixmap not to /usr/share/yudit/data but /usr/share/pixmap to recognized by GNOME shell . Author: Hideki Yamane --- Origin: vendor Forwarded: not-needed Last-Update: 2012-10-08 Index: yudit-2.9.2/Makefile.in =================================================================== --- yudit-2.9.2.orig/Makefile.in 2012-10-08 12:12:14.302138849 +0900 +++ yudit-2.9.2/Makefile.in 2012-10-08 12:18:45.019048240 +0900 @@ -77,7 +77,7 @@ fi; \ cd ..; \ done - $(INSTALL_DATA) gnome-yudit.png $(DESTDIR)/$(datadir)/yudit/data + $(INSTALL_DATA) gnome-yudit.png $(DESTDIR)/usr/share/pixmaps/yudit.png $(INSTALL_DATA) yudit.properties $(DESTDIR)/$(datadir)/yudit/config $(INSTALL_DATA) doc/FAQ.TXT $(DESTDIR)/$(datadir)/yudit/doc $(INSTALL_DATA) doc/cs/COPYING-DOCS $(DESTDIR)/$(datadir)/yudit/doc/cs/COPYING-DOCS debian/patches/series0000644000000000000000000000031412034450363012030 0ustar #0001-direct-upstream-changes-in-yudit_2.8.1-1.diff.gz.patch #0002-Removed-the-s-option-in-INSTALL_RPOGRAM-in-Makefile..patch fix_typo.patch locale-dir-is-usr_share_locale install-png-to-pixmaps messages debian/patches/0002-Removed-the-s-option-in-INSTALL_RPOGRAM-in-Makefile..patch0000644000000000000000000000152511650551161023242 0ustar From 2224461c3691d2ce9de2256c6ddd112a393d2ed8 Mon Sep 17 00:00:00 2001 From: Mario Iseli Date: Mon, 20 Aug 2007 09:45:31 +0200 Subject: Removed the -s option in INSTALL_RPOGRAM in Makefile.conf.in to avoid automatic stripping Bug-Debian: http://bugs.debian.org/438359 --- Makefile.conf.in | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/Makefile.conf.in b/Makefile.conf.in index 3f99d57..31a00a6 100644 --- a/Makefile.conf.in +++ b/Makefile.conf.in @@ -23,8 +23,7 @@ CPPFLAGS = -I$(TOPDIR) @CPPFLAGS@ -Wall -DHAVE_MMAP $(CFLAGS) INSTALL = @INSTALL@ YUDIT_DATA = @YUDIT_DATA@ INSTALL = $(TOPDIR)/bin/install-sh -c -# Strip binary -INSTALL_PROGRAM = $(TOPDIR)/bin/install-sh -c -s +INSTALL_PROGRAM = $(TOPDIR)/bin/install-sh -c INSTALL_DATA = $(TOPDIR)/bin/install-sh -c -m 644 X_CFLAGS = @X_CFLAGS@ debian/patches/fix_typo.patch0000644000000000000000000000564412034407023013503 0ustar Description: fix typo fix some typo detected by Debian's lintian tool . Author: Hideki Yamane --- Origin: vendor Forwarded: no Last-Update: 2012-10-08 --- yudit-2.9.2.orig/stoolkit/SCluster.cpp- +++ yudit-2.9.2/stoolkit/SCluster.cpp- @@ -1442,6 +1442,6 @@ getShapeCode (unsigned int icode) "fin3", "init", }; - if (icode >= 8) return "unkown"; + if (icode >= 8) return "unknown"; return shapes[icode]; } --- yudit-2.9.2.orig/stoolkit/SCluster.cpp +++ yudit-2.9.2/stoolkit/SCluster.cpp @@ -1584,6 +1584,6 @@ getShapeCode (unsigned int icode) "fin3", "init", }; - if (icode >= 8) return "unkown"; + if (icode >= 8) return "unknown"; return shapes[icode]; } --- yudit-2.9.2.orig/uniprint/Main.cpp +++ yudit-2.9.2/uniprint/Main.cpp @@ -39,7 +39,7 @@ #define BUFFER_SIZE 512 -static const char *version="uniprint verison %s GNU(c) Gaspar Sinai\n"; +static const char *version="uniprint version %s GNU(c) Gaspar Sinai\n"; static void usage (); #define SS_UNIX 0 --- yudit-2.9.2.orig/gui/SYudit.cpp +++ yudit-2.9.2/gui/SYudit.cpp @@ -257,7 +257,7 @@ SYudit::SYudit (const SStringVector& arg } else { - fprintf (stderr, "Yudit: unkown yudit.editor.xinputs.style=%*.*s\n", + fprintf (stderr, "Yudit: unknown yudit.editor.xinputs.style=%*.*s\n", SSARGS(inputStyle)); } --- yudit-2.9.2.orig/mytool/ProcessFile.cpp +++ yudit-2.9.2/mytool/ProcessFile.cpp @@ -786,7 +786,7 @@ processKMap (const char* filename, SInpu if (error) { fprintf (stderr, "mytool: error- bad syntax in file '%s' at line %d\n", - (filename==0?"unkown":filename), lineNo); + (filename==0?"unknown":filename), lineNo); delete retVle; return 0; } @@ -798,17 +798,17 @@ processKMap (const char* filename, SInpu if (segmentCount==0) { fprintf (stderr, "mytool: error- bad syntax in file '%s' at eof\n", - (filename==0?"unkown":filename)); + (filename==0?"unknown":filename)); } else if (currentSegment!=-1) { fprintf (stderr, "mytool: bad syntax (missing end?) in file '%s' at eof\n", - (filename==0?"unkown":filename)); + (filename==0?"unknown":filename)); } else { fprintf (stderr, "mytool: error- bad syntax in file '%s' at multipart '%s'\n", - (filename==0?"unkown":filename), segments[i]); + (filename==0?"unknown":filename), segments[i]); } delete retVle; return 0; --- yudit-2.9.2.orig/mytool/Main.cpp +++ yudit-2.9.2/mytool/Main.cpp @@ -581,7 +581,7 @@ main (int argc, char* argv[]) fprintf (stdout, "%d.name...............: [%s]\n", i, nameb); map.getComment (commentb, 1024, i); fprintf (stdout, "%d.comment............: [%s]\n", i, commentb); - type = "unkown"; + type = "unknown"; if (mp->itemType == SBMapItem::SBMapNToN) type = "my"; if (mp->itemType == SBMapItem::SBMapBumap) debian/patches/locale-dir-is-usr_share_locale0000644000000000000000000000324112034450672016477 0ustar Description: set locale directory as standard /usr/share/locale . Author: Hideki Yamane --- Origin: vendor Forwarded: no Last-Update: 2012-10-08 Index: yudit-2.9.2/Makefile.conf.in =================================================================== --- yudit-2.9.2.orig/Makefile.conf.in 2012-10-08 12:12:14.334138915 +0900 +++ yudit-2.9.2/Makefile.conf.in 2012-10-08 12:18:30.327006462 +0900 @@ -49,7 +49,7 @@ #ALL_LIBS=wsock32.lib RANLIB=ranlib LD= $(CXX) $(LDFLAGS) -LOCALE_DIR=$(YUDIT_DATA)/locale +LOCALE_DIR=/usr/share/locale #INSTALL_DATA=/bin/cp #INSTALL_PROGRAM=/bin/cp MESSAGES=messages Index: yudit-2.9.2/gui/Makefile =================================================================== --- yudit-2.9.2.orig/gui/Makefile 2012-10-08 12:12:14.334138915 +0900 +++ yudit-2.9.2/gui/Makefile 2012-10-08 12:26:26.032343443 +0900 @@ -64,11 +64,11 @@ install: @for i in $(LOCALES); do \ - if test ! -d $(DESTDIR)/$(datadir)/yudit/$$i/LC_MESSAGES; then \ - mkdir -p $(DESTDIR)/$(datadir)/yudit/$$i/LC_MESSAGES; \ + if test ! -d $(DESTDIR)/$(datadir)/$$i/LC_MESSAGES; then \ + mkdir -p $(DESTDIR)/$(datadir)/$$i/LC_MESSAGES; \ fi ; \ - $(INSTALL_DATA) $$i/LC_MESSAGES/messages.[mp]o \ - $(DESTDIR)/$(datadir)/yudit/$$i/LC_MESSAGES ; \ + $(INSTALL_DATA) $$i/LC_MESSAGES/messages.mo \ + $(DESTDIR)/$(datadir)/$$i/LC_MESSAGES/yudit.mo ; \ echo installing messages for $$i; \ done rm -f $(DESTDIR)/$(bindir)/yudit @@ -88,7 +88,7 @@ exit 1; \ fi; \ mv messages.pod messages.po; \ - msgfmt -o messages.mo messages.po; \ + msgfmt -o yudit.mo messages.po; \ cd ../../..; \ done ; \ echo "end translating messages" ; \ debian/patches/messages0000644000000000000000000000077212034450451012353 0ustar Index: yudit-2.9.2/gui/Main.cpp =================================================================== --- yudit-2.9.2.orig/gui/Main.cpp 2012-10-08 12:34:27.293663601 +0900 +++ yudit-2.9.2/gui/Main.cpp 2012-10-08 13:05:59.162425145 +0900 @@ -381,7 +381,7 @@ } SString ldir (yuditdir); ldir.append ("/locale"); - initTranslate ("messages", ldir); + initTranslate ("yudit", ldir); if (allProperties.get ("yudit.default.language")) { SString lang = allProperties["yudit.default.language"]; debian/patches/0001-direct-upstream-changes-in-yudit_2.8.1-1.diff.gz.patch0000644000000000000000000000334411650551161022711 0ustar From e72887901edb91e784db6f86e3930a2c3b7c4639 Mon Sep 17 00:00:00 2001 From: Mario Iseli Date: Sat, 2 Sep 2006 21:56:22 +0200 Subject: direct upstream changes in yudit_2.8.1-1.diff.gz (without any changes coming from ./configure) --- swidget/SIconFactory.cpp | 2 +- yudit.properties.in | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/swidget/SIconFactory.cpp b/swidget/SIconFactory.cpp index 4c2c697..6f5d5b8 100644 --- a/swidget/SIconFactory.cpp +++ b/swidget/SIconFactory.cpp @@ -70,7 +70,7 @@ #include "icons/SS_LR_XPM.xpm" #include "icons/SS_Yudit_XPM.xpm" -struct _icon_map { +static struct _icon_map { const char* name; char** icon; } icon_map[] = { diff --git a/yudit.properties.in b/yudit.properties.in index 620e1bc..8bc4d7e 100644 --- a/yudit.properties.in +++ b/yudit.properties.in @@ -36,7 +36,7 @@ yudit.datapath=@YUDIT_DATA@/data # # This is where the .ttf (True Type font) files are # -yudit.fontpath=@YUDIT_DATA@/fonts,/usr/share/yudit/data +yudit.fontpath=@YUDIT_DATA@/fonts,/usr/share/yudit/data,/usr/share/fonts/truetype/freefont,/usr/share/fonts/truetype/msttcorefonts # The overall background. @@ -223,7 +223,7 @@ yudit.editor.xinputs=interxim,utf-8:en_GB,utf-8:hu_HU,kinput2:ja_JP.eucJP,xcin:z yudit.editor.xinputs.style=preedit-over-status-under yudit.editor.fontsize=18 -yudit.editor.font=default +yudit.editor.font=Misc yudit.editor.input=straight yudit.fonts=default,TrueType,Bitmap,Japanese,Courier,Times,Helvetica,Lucida,Misc @@ -391,3 +391,6 @@ yudit.command.fontsize=18 # yudit.font.Box=unifont.hex,-misc-fixed-medium-r-*--18-120-100-100-c-90-iso10646-1 + +# added for debian +yudit.font.Freefont=FreeSans.ttf,FreeSerif.ttf,FreeMono.ttf debian/copyright0000644000000000000000000000214411650553055011127 0ustar This package was debianized first by Radovan Garabík Tue, 7 Aug 2001 14:58:18 +0200. It was downloaded from http://www.yudit.org Copyright Holder: Gaspar Sinai License: Copyright (C) 1997-2006 Gaspar Sinai This package 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 package 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-2'. debian/compat0000644000000000000000000000000212034403660010362 0ustar 9 debian/yudit-doc.examples0000644000000000000000000000006711650551161012633 0ustar doc/TestPage.txt doc/UTF-8-demo.txt doc/UTF-8-test.txt debian/rules0000755000000000000000000000062712224024535010252 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 export DEB_BUILD_MAINT_OPTIONS := hardening=+all %: dh $@ # don't run autoreconf since upstream modified configure "by hand"...;-( override_dh_auto_configure: dh_auto_configure -- --prefix=/usr --with-x \ --x-includes=/usr/include/X11 \ --x-libraries="/usr/lib/lib64,/usr/lib/lib32,/usr/lib/lib" override_dh_compress: dh_compress -XHOWTO -XFAQ debian/yudit.links0000644000000000000000000000004111650551161011362 0ustar usr/share/yudit/config etc/yudit debian/yudit.dirs0000644000000000000000000000004311650551161011205 0ustar usr/bin usr/share/yudit/config etc debian/yudit.install0000644000000000000000000000014412034442765011722 0ustar usr/bin/* usr/share/yudit/config/* usr/share/pixmaps/* debian/yudit.desktop usr/share/applications/ debian/yudit.10000644000000000000000000000443311650553275010423 0ustar .\" @(#)yudit 1.1 97/11/5 .TH YUDIT 1 "Nov 5 1997" "LINUX COMMANDS" "LINUX COMMANDS" .SH NAME .LP yudit \- Unicode Editor for The X Window System .SH SYNOPSIS .LP .B yudit [ .I -e encoding ] [[ .I file-name [ .I file-name... ]] .LP .SH DESCRIPTION .LP .B yudit is an unicode text editors. .sp When a user runs yudit for the first time .B $HOME/.yudit, $HOME/.yudit/data, and .B $HOME/.yudit/fonts are created. .sp The configuration file can be edited inside yudit. For the detailed description of usage and configuration take a look at the on-line manual. .sp If you are planning to save files with yudit please note that the format preferred by edit for unicode files is UTF8. .sp yudit can convert between different encodings, but if you do not need a GUI consider .B uniconv. .LP .SH ARGUMENTS .TP .TP .BI "-e " encoding The encoding determines how yudit interacts with character streams: file input, file output, cut and paste. XInput encoding is set up to use an independent, fixed encoder. .sp If you received yudit through the yudit distribution, the following encodings are inclusively supported: .sp UTF8, UTF7, 8859_1, 8859_2, 8859_5, 8859_7, 8859_9, KOI8_R, JIS, SJIS, EUC_JP, ISO2022_KR, EUC_KR, JOHAB, UHC, GB2312_7, GB2312_8, HZ, BIG5, CTEXT_JA, 10646 JAVA. .sp For a detailed description of these please refer to .B uniconv man page. .TP .BI "file-name " is the file yudit should read into its buffer at start-up. .SH ENVIRONMENT The environment variable .B HOME should point to the user's home directory, where the yudit configuration file (.yuditrc) is kept. If the file is corrupt yudit exits with an error dialog. Errors messages are usually replicated in the standard error output of the .B yudit. .SH SEE ALSO .BR mytool, uniconv, uniprint .SH AUTHOR .LP This program was written by gsinai@iname.com (Gaspar Sinai), Tokyo, 10 November, 1997 (yutex) and was updated on 1 December 1997. Many thanks to Andrew Weeks at University of Bath for releasing his TrueType to postscript (ttf2pfa) program which formed the base of printing support in yudit. This manual page was copied from old yudit 1.6 distribution by Radovan Garabik and modified for yudit 2.4 distribution for Debian/GNU system before being edited for yudit 2.8. It may contain obsolete information. debian/yudit.docs0000644000000000000000000000002311650551161011172 0ustar FAQ.TXT README.TXT debian/yudit.menu0000644000000000000000000000014511650551161011213 0ustar ?package(yudit):needs="X11" section="Applications/Editors"\ title="yudit" command="/usr/bin/yudit" debian/yudit-doc.install0000644000000000000000000000162312056411433012460 0ustar usr/share/yudit/doc/bg/* usr/share/doc/yudit-doc/translations/bg/ usr/share/yudit/doc/cs/* usr/share/doc/yudit-doc/translations/cs/ usr/share/yudit/doc/de/* usr/share/doc/yudit-doc/translations/de/ usr/share/yudit/doc/es/* usr/share/doc/yudit-doc/translations/es/ usr/share/yudit/doc/fi/* usr/share/doc/yudit-doc/translations/fi/ usr/share/yudit/doc/hu/* usr/share/doc/yudit-doc/translations/hu/ usr/share/yudit/doc/ja/* usr/share/doc/yudit-doc/translations/ja/ usr/share/yudit/doc/ko/* usr/share/doc/yudit-doc/translations/ko/ usr/share/yudit/doc/ru/* usr/share/doc/yudit-doc/translations/ru/ usr/share/yudit/doc/sr/* usr/share/doc/yudit-doc/translations/sr/ usr/share/yudit/doc/vi/* usr/share/doc/yudit-doc/translations/vi/ usr/share/yudit/doc/yi/* usr/share/doc/yudit-doc/translations/yi/ usr/share/yudit/doc/zh/* usr/share/doc/yudit-doc/translations/zh/ usr/share/yudit/doc/HOWTO-*.txt usr/share/doc/yudit-doc/ debian/changelog0000644000000000000000000002063612224024667011054 0ustar yudit (2.9.2-4) unstable; urgency=low * debian/rules - fix build with mips* arch, thanks to YunQiang Su (Closes: #722877) -- Hideki Yamane Sun, 06 Oct 2013 00:01:09 +0900 yudit (2.9.2-3) unstable; urgency=low * debian/yudit-doc.install - minimalize lines by specifying as "HOWTO-*" * debian/control - set "Recommends: libhunspell-1.3-0" to be enable to use syntax highlight. And also add "hunspell-en-us | hunspell-dictionary" to Recommends. -- Hideki Yamane Mon, 08 Apr 2013 09:10:08 +0900 yudit (2.9.2-2) experimental; urgency=low * debian/yudit-doc.docs: remove it since duplicate with yudit.docs * debian/yudit-doc.{postinst,prerm}: remove them since it's not necessary and cause install error (Closes: #690205) -- Hideki Yamane Thu, 11 Oct 2012 16:51:13 +0900 yudit (2.9.2-1) experimental; urgency=low * New upstream release * New maintainer (Closes: #594408) * debian/control - set "Standard-Version: 3.9.4" - set "Build-Depends: debhelper (>= 9)" - move Homepage: field to correct location - yudit: add "Recommends: gv" since yudit uses it to print files by default. - yudit: set "Suggests: ttf-mscorefonts-installer" (Closes: #490032) - yudit-doc: remove "Depends: yudit (>= ${source:Version})" since it is unnecessary strict dependency * debian/compat - set 9 * debian/rules - convert to dh style - enable hardening by "export DEB_BUILD_MAINT_OPTIONS := hardening=+all" - add autoreconf line * debian/yudit.desktop: add it to display on GNOME shell * debian/yudit.install: add debian/yudit.desktop * debian/patches/install-application-png: install png file to /usr/share/applications. * debian/patches/fix_typo.patch: fix typo. * debian/patches/locale-dir-is-usr_share_locale: set locale directory as standard /usr/share/locale and put locale files under it. -- Hideki Yamane Mon, 08 Oct 2012 07:50:00 +0900 yudit (2.8.1-5) unstable; urgency=low * QA upload * debian/control - set appropriate font package (Closes: 644773) -- Hideki Yamane Fri, 14 Sep 2012 07:35:19 +0900 yudit (2.8.1-4) unstable; urgency=low * QA upload * switch to "3.0 quilt" source format * clean all configure generated files * use Homepage field in control (Closes: 615372, 615402, 615344) * fix manpage (Closes: 501658) * switch to debhelper compat 7 * modernize debian/rules - support build-arch, build-indep - use dpkg-buildflags * update suggest for ttf-kochi-gothic (Closes: 644773) -- Bernhard R. Link Sat, 22 Oct 2011 16:15:45 +0200 yudit (2.8.1-3) unstable; urgency=low * New maintainer E-Mail. * Removed the -s option in INSTALL_RPOGRAM in Makefile.conf.in to avoid automatic stripping (Closes: #438359). * Added [ ! -f Makefile ] || $(MAKE) clean to debian/rules. -- Mario Iseli Mon, 20 Aug 2007 09:45:31 +0200 yudit (2.8.1-2) unstable; urgency=medium * Added a postinst and prerm script to yudit-doc which adds or removes a symlink to /usr/share/doc/yudit-doc. Do not compress the HOWTO files (Closes: #385930). * yudit-doc depends now on yudit. -- Mario Iseli Sat, 07 Oct 2006 11:18:08 +0200 yudit (2.8.1-1) unstable; urgency=low * New upstream version -- Mario Iseli Sat, 02 Sep 2006 21:56:22 +0200 yudit (2.7.8-4) unstable; urgency=medium * Fixes build with gcc-4.1 (Closes: #357070) -- Mario Iseli Sun, 19 Mar 2006 19:09:43 +0100 yudit (2.7.8-3) unstable; urgency=medium * yudit-common doesn't longer depend on yudit, but conflicts with old versions of yudit. (Closes: #351667) -- Mario Iseli Mon, 6 Feb 2006 20:36:40 +0100 yudit (2.7.8-2) unstable; urgency=low * New Maintainer (Closes: #347570) * Separated source into 3 packages (-doc + -common) (Closes: #233464) * Removed the patch for the Makefile.conf (useless) * Overworked debian/copyright to new standards * Introduced dpatch and added the old 3 patches * Add UTF-8 Examples in debian/rules -- Mario Iseli Tue, 17 Jan 2006 23:06:28 +0100 yudit (2.7.8-1) unstable; urgency=low * new upstream version. * include /usr/share/fonts/truetype/msttcorefonts in default config path (closes: #298951) * remove /usr/share/yudit/doc/UTF-8-demo*.txt (closes: #285944) * Orphaning the package, setting Maintainer to Debian QA Group. I really do not have the time to maintain yudit, even if I find it an extremely useful tool. -- Radovan Garabík Sat, 24 Dec 2005 20:59:08 +0100 yudit (2.7.6-1.1) unstable; urgency=low * Non-maintainer upload. * Fix FTBFS with gcc-4.0. Closes: #297292 -- Andreas Barth Sun, 31 Jul 2005 08:15:13 +0200 yudit (2.7.6-1) unstable; urgency=low * new upstream version * modified font path to better reflect debian defaults -- Radovan Garabík Fri, 11 Jul 2003 11:22:19 +0200 yudit (2.7.5-1) unstable; urgency=low * new upstream version, closes: #196339 * improved description, closes: #172064 -- Radovan Garabík Fri, 11 Jul 2003 11:22:19 +0200 yudit (2.6-2) unstable; urgency=low * apply _again_ the patch to test /etc/passwd (upstream forgot). Closes: #141019, #145327 -- Radovan Garabik Thu, 2 May 2002 18:11:39 +0200 yudit (2.6-1) unstable; urgency=low * new upstream release, closes: #141227 -- Radovan Garabik Tue, 30 Apr 2002 19:33:54 +0200 yudit (2.5.4-2) unstable; urgency=low * put forgotten patch to test /etc/passwd instead of /etc/hosts to Makefile.conf.in (closes: #141019) -- Radovan Garabik Thu, 4 Apr 2002 18:41:44 +0200 yudit (2.5.4-1) unstable; urgency=low * new upstream release. -- Radovan Garabik Tue, 2 Apr 2002 18:32:38 +0200 yudit (2.5.2-2) unstable; urgency=low * applied patches found on Gaspar's site -- Radovan Garabik Sat, 9 Feb 2002 23:26:58 +0100 yudit (2.5.2-1) unstable; urgency=low * new upstream release -- Radovan Garabik Sun, 27 Jan 2002 10:56:53 +0100 yudit (2.5-1) unstable; urgency=low * new upstream release * do not test /etc/hosts but rather /etc/passwd in Makefile.in (closes: #121986) -- Radovan Garabik Tue, 18 Dec 2001 21:14:51 +0100 yudit (2.4.8-1) unstable; urgency=low * new upstream release * unifont is now recommended -- Radovan Garabik Tue, 13 Nov 2001 19:32:53 +0100 yudit (2.4-2) unstable; urgency=low * renamed Chinese locale to zh * added SK.kmap * added gettext build dependency (closes: #108353) * changed default font from unifont to default (closes: #108631) -- Radovan Garabik Fri, 10 Aug 2001 10:25:42 +0200 yudit (2.4-1) unstable; urgency=low * New maintainer * Big leap in upstream version (closes: #84312 ) * upstream does not have multiple GUI's anymore (closes: #103923) -- Radovan Garabik Tue, 7 Aug 2001 14:58:18 +0200 yudit (1.6-1) unstable; urgency=low * New Upstream version * Corrected the build-depends, upped the standards-version * Include , use newer c++ libs, closes: #99049 * Add yudit to the gnome menu -- Bart Schuller Mon, 28 May 2001 21:32:54 +0200 yudit (1.5-2) unstable; urgency=low * added the "flex" and "gettext" build-dependencies, closes: #53621 -- Bart Schuller Tue, 28 Dec 1999 12:27:57 +0100 yudit (1.5-1) unstable; urgency=low * New upstream version * compiled with current libs, closes: #53464 * moved to debian standards version 3.1.0 -- Bart Schuller Sat, 25 Dec 1999 21:28:11 +0100 yudit (1.3-1) unstable; urgency=low * new upstream version * made yuditrc a conffile -- Bart Schuller Sun, 11 Apr 1999 15:45:49 +0200 yudit (1.1-1) unstable; urgency=low * Initial Release: changed location of the yuditrc file to /etc -- Bart Schuller Sun, 13 Sep 1998 22:12:32 +0200 Local variables: mode: debian-changelog End: debian/yudit.desktop0000644000000000000000000000060412034442340011713 0ustar [Desktop Entry] Exec=yudit Icon=yudit.png Terminal=false Type=Application Name=Yudit GenericName=Text Editor Comment=View and edit files Categories=Utility;Development;TextEditor; MimeType=text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++; debian/yudit-doc.dirs0000644000000000000000000000003011650551161011744 0ustar usr/share/doc/yudit-doc debian/yudit-common.dirs0000644000000000000000000000002011650551161012466 0ustar usr/share/yudit debian/yudit-common.install0000644000000000000000000000013012034420303013163 0ustar usr/share/yudit/data/* usr/share/yudit/fonts/* usr/share/locale/* usr/share/yudit/src/* debian/control0000644000000000000000000000371312056427315010602 0ustar Source: yudit Section: editors Priority: optional Maintainer: Hideki Yamane Build-Depends: debhelper (>= 9), x11proto-core-dev, libx11-dev, gettext Standards-Version: 3.9.4 Homepage: http://www.yudit.org Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/yudit.git;a=summary Vcs-Git: git://anonscm.debian.org/collab-maint/yudit.git Package: yudit Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, yudit-common (= ${source:Version}) Recommends: unifont, gv, libhunspell-1.3-0, hunspell-en-us | hunspell-dictionary Suggests: yudit-doc, ttf-mscorefonts-installer, fonts-vlgothic | fonts-japanese-gothic, fonts-freefont-ttf Description: Unicode text editor (arch-dependent binaries) yudit is a Unicode text editor for the X Window System. It does not need localized environment or Unicode fonts. It supports simultaneous processing of many languages, conversions for local character standards, bidirectional input, has its own input methods. The package includes conversion utilities, and it also has support for PostScript printing. Package: yudit-common Architecture: all Depends: ${misc:Depends} Suggests: yudit-doc (= ${source:Version}), yudit (= ${source:Version}) Description: Unicode text editor (arch-independent files) yudit is a Unicode text editor for the X Window System. It does not need localized environment or Unicode fonts. It supports simultaneous processing of many languages, conversions for local character standards, bidirectional input, has its own input methods. The package includes conversion utilities, and it also has support for PostScript printing. . This package contains the arch-independent files in /usr/share. Package: yudit-doc Section: doc Architecture: all Depends: ${misc:Depends} Description: Unicode text editor (Documentation) The unicode editor "yudit" has got a big documentation in lots of languages. After the installation, the documentation will be available in: /usr/share/doc/yudit-doc/