--- jove-4.16.0.72.orig/Makefile +++ jove-4.16.0.72/Makefile @@ -21,13 +21,14 @@ # If they don't exist, this makefile will try to create the directories # LIBDIR and SHAREDIR. All others must already exist. -JOVEHOME = /usr/local +JOVEHOME = ${DESTDIR}/usr SHAREDIR = $(JOVEHOME)/lib/jove LIBDIR = $(JOVEHOME)/lib/jove BINDIR = $(JOVEHOME)/bin XEXT= -MANDIR = $(JOVEHOME)/man/man$(MANEXT) +MANDIR = $(JOVEHOME)/share/man/man$(MANEXT) MANEXT = 1 +CONFIGDIR=${DESTDIR}/etc/jove # TMPDIR is where the tmp files get stored, usually /tmp, /var/tmp, or # /usr/tmp. If you wish to be able to recover buffers after a system @@ -38,11 +39,11 @@ # (in case the system startup salvages tempfiles by moving them, # which is probably a good idea). -TMPDIR = /tmp -RECDIR = /var/preserve +TMPDIR = /var/tmp +RECDIR = ${DESTDIR}/var/lib/jove/preserve # DFLTSHELL is the default shell invoked by JOVE and TEACHJOVE. -DFLTSHELL = /bin/csh +DFLTSHELL = /bin/sh # The install commands of BSD and System V differ in unpleasant ways: # -c: copy (BSD); -c dir: destination directory (SysV) @@ -56,15 +57,21 @@ INSTALLFLAGS = # -g bin -o root # to install executable files -XINSTALL=cp +XINSTALL=install -m 755 +#XINSTALL=cp #XINSTALL=/usr/ucb/install $(INSTALLFLAGS) -c -m 755 # -s #CYGWIN32: XINSTALL=install $(INSTALLFLAGS) -c -m 755 # to install text files -TINSTALL=cp +TINSTALL=install -m 644 +#TINSTALL=cp #TINSTALL=/usr/ucb/install $(INSTALLFLAGS) -c -m 644 #CYGWIN32: TINSTALL=install $(INSTALLFLAGS) -c -m 644 +# to install directories +DINSTALL=install -d 755 +#DINSTALL=mkdir -p + # These should all just be right if the above ones are. # You will confuse JOVE if you move anything from LIBDIR or SHAREDIR. @@ -72,7 +79,7 @@ TEACHJOVE = $(BINDIR)/teachjove$(XEXT) RECOVER = $(LIBDIR)/recover$(XEXT) PORTSRV = $(LIBDIR)/portsrv$(XEXT) -JOVERC = $(SHAREDIR)/jove.rc +JOVERC = $(CONFIGDIR)/jove.rc TERMSDIR = $(SHAREDIR) CMDS.DOC = $(SHAREDIR)/cmds.doc TEACH-JOVE = $(SHAREDIR)/teach-jove @@ -146,7 +153,7 @@ # On DEC OSF/1 and Digital UNIX VV4.0, add -std1 to enable ANSI C features # and perhaps -g3 for more debugging info with optimization. -OPTFLAGS = -O +OPTFLAGS = -O2 -Wall # For making dependencies under BSD systems DEPENDFLAG = -M @@ -235,7 +242,8 @@ TROFF = troff -Tpost TROFFPOST = | /usr/lib/lp/postscript/dpost - -MANUALS = $(JOVEM) $(TEACHJOVEM) $(XJOVEM) $(JOVETOOLM) +MANUALS = $(JOVEM) $(TEACHJOVEM) +# $(XJOVEM) $(JOVETOOLM) C_SRC = commands.c commands.tab abbrev.c argcount.c ask.c buf.c c.c case.c jctype.c \ delete.c disp.c extend.c fp.c fmt.c insert.c io.c iproc.c \ @@ -268,6 +276,7 @@ DOCS = doc/README doc/teach-jove doc/jove.qref \ doc/intro.nr doc/cmds.macros.nr doc/cmds.nr doc/contents.nr \ doc/jove.nr doc/teachjove.nr doc/xjove.nr doc/jovetool.nr \ + doc/jem.rc doc/jem1.txt doc/jem1.hlp \ doc/jove.rc doc/example.rc $(DOCTERMS) MISC = Makefile Makefile.bcc Makefile.msc Makefile.wat Makefile.zor \ @@ -282,8 +291,7 @@ # all: default target. # Builds everything that "install" needs. all: jjove$(XEXT) recover$(XEXT) teachjove$(XEXT) portsrv$(XEXT) \ - doc/cmds.doc doc/jove.$(MANEXT) doc/teachjove.$(MANEXT) \ - doc/jovetool.$(MANEXT) + doc/cmds.doc doc/jove.$(MANEXT) doc/teachjove.$(MANEXT) jjove$(XEXT): $(OBJECTS) $(LDCC) $(LDFLAGS) $(OPTFLAGS) -o jjove$(XEXT) $(OBJECTS) $(TERMCAPLIB) $(EXTRALIBS) @@ -340,6 +348,7 @@ @echo \#define LIBDIR \"$(LIBDIR)\" >> paths.h @echo \#define SHAREDIR \"$(SHAREDIR)\" >> paths.h @echo \#define DFLTSHELL \"$(DFLTSHELL)\" >> paths.h + @echo \#define CONFIGDIR \"$(CONFIGDIR)\" >> paths.h makexjove: ( cd xjove ; make CC="$(CC)" OPTFLAGS="$(OPTFLAGS)" SYSDEFS="$(SYSDEFS)" $(TOOLMAKEEXTRAS) xjove ) @@ -347,6 +356,9 @@ installxjove: ( cd xjove ; make CC="$(CC)" OPTFLAGS="$(OPTFLAGS)" SYSDEFS="$(SYSDEFS)" XINSTALL="$(XINSTALL)" BINDIR="$(BINDIR)" INSTALLFLAGS="$(INSTALLFLAGS)" $(TOOLMAKEEXTRAS) installxjove ) +cleanxjove: + ( cd xjove ; make CC="$(CC)" OPTFLAGS="$(OPTFLAGS)" SYSDEFS="$(SYSDEFS)" XINSTALL="$(XINSTALL)" BINDIR="$(BINDIR)" INSTALLFLAGS="$(INSTALLFLAGS)" $(TOOLMAKEEXTRAS) clean ) + makejovetool: ( cd xjove ; make CC="$(CC)" OPTFLAGS="$(OPTFLAGS)" SYSDEFS="$(SYSDEFS)" DEFINES=-DSUNVIEW $(TOOLMAKEEXTRAS) jovetool ) @@ -357,18 +369,32 @@ # Thus, if "all" is done first, "install" can be invoked with # JOVEHOME pointing at a playpen where files are to be marshalled. # This property is fragile. -install: $(LIBDIR) $(SHAREDIR) \ +install: $(BINDIR) $(LIBDIR) $(SHAREDIR) $(CONFIGDIR) $(RECDIR)\ $(TEACH-JOVE) $(CMDS.DOC) $(TERMSDIR)docs \ $(PORTSRVINST) $(RECOVER) $(JOVE) $(TEACHJOVE) $(MANUALS) - $(TINSTALL) doc/jove.rc $(JOVERC) + $(TINSTALL) doc/jem.rc doc/jem1.txt doc/jem1.hlp $(SHAREDIR) + $(TINSTALL) doc/jove.rc $(CONFIGDIR) @echo See the README about changes to /etc/rc or /etc/rc.local @echo so that the system recovers jove files on reboot after a crash +$(BINDIR):: + $(DINSTALL) $(BINDIR) + $(LIBDIR):: - test -d $(LIBDIR) || mkdir -p $(LIBDIR) + $(DINSTALL) $(LIBDIR) $(SHAREDIR):: - test -d $(SHAREDIR) || mkdir -p $(SHAREDIR) + $(DINSTALL) $(SHAREDIR) + +$(CONFIGDIR):: + $(DINSTALL) $(CONFIGDIR) + +$(RECDIR):: + $(DINSTALL) $(RECDIR) + chmod 1777 $(RECDIR) + +$(MANDIR):: + $(DINSTALL) $(MANDIR) $(TEACH-JOVE): doc/teach-jove $(TINSTALL) doc/teach-jove $(TEACH-JOVE) @@ -409,7 +435,7 @@ -e 's;;$(SHAREDIR);' \ -e 's;;$(DFLTSHELL);' doc/jove.nr > doc/jove.$(MANEXT) -$(JOVEM): doc/jove.$(MANEXT) +$(JOVEM): $(MANDIR) doc/jove.$(MANEXT) $(TINSTALL) doc/jove.$(MANEXT) $(JOVEM) # doc/jove.doc is the formatted manpage (only needed by DOS) --- jove-4.16.0.72.orig/recover.c +++ jove-4.16.0.72/recover.c @@ -776,7 +776,7 @@ last_update = ctime(&(rec->UpdTime)); /* Start up mail */ - sprintf(mail_cmd, "/bin/mail %s", pw->pw_name); + sprintf(mail_cmd, "/usr/sbin/sendmail -t %s", pw->pw_name); setuid(getuid()); if ((mail_pipe = popen(mail_cmd, "w")) == NULL) return; @@ -787,6 +787,7 @@ buf_string = "buffer"; else buf_string = "buffers"; + fprintf(mail_pipe, "To: %s\n", pw->pw_name); fprintf(mail_pipe, "Subject: System crash\n"); fprintf(mail_pipe, " \n"); fprintf(mail_pipe, "Jove saved %d %s when the system \"%s\"\n", --- jove-4.16.0.72.orig/jove.c +++ jove-4.16.0.72/jove.c @@ -1576,7 +1576,7 @@ char Joverc[FILESIZE]; if (dosys) { - PathCat(Joverc, sizeof(Joverc), ShareDir, "jove.rc"); + PathCat(Joverc, sizeof(Joverc), CONFIGDIR, "jove.rc"); (void) joverc(Joverc); /* system wide jove.rc */ } --- jove-4.16.0.72.orig/xjove/Makefile +++ jove-4.16.0.72/xjove/Makefile @@ -25,23 +25,31 @@ # For SunView: # DEFINES=-DSUNVIEW -DEFINES= +# DEFINES= # for Solaris 2.x: -SYSDEFS=-DSYSVR4 +#SYSDEFS=-DSYSVR4 # -i: ignore any LD_LIBRARY_PATH setting # -L: add to library search path # -R: specify library search directories to dynamic linker -XJLDFLAGS= -i -L$$OPENWINHOME/lib -R$$OPENWINHOME/lib +#XJLDFLAGS= -i -L$$OPENWINHOME/lib -R$$OPENWINHOME/lib # for Sun0s4.x: # XJLDFLAGS=-L$$OPENWINHOME/lib # SYSDEFS=-DSUNOS41 +# XJCFLAGS = -I$$OPENWINHOME/include + +# for Debian Linux +SYSDEFS=-DBSDPOSIX +XJLDFLAGS=-L/usr/lib +XJCFLAGS=-I/usr/include CFLAGS = $(OPTFLAGS) -I.. $(SYSDEFS) $(DEFINES) -XJCFLAGS = -I$$OPENWINHOME/include -BINDIR = /usr/local/bin +XJOVEHOME = ${DESTDIR}/usr +XBINDIR = ${XJOVEHOME}/bin +MANDIR = $(XJOVEHOME)/share/man/man$(MANEXT) +MANEXT = 1 # The install commands of BSD and System V differ in unpleasant ways: # -c: copy (BSD); -c dir: destination directory (SysV) @@ -55,15 +63,28 @@ INSTALLFLAGS = # -g bin -o root # to install executable files -XINSTALL=cp +#XINSTALL=cp #XINSTALL=/usr/ucb/install $(INSTALLFLAGS) -c -m 755 # -s +XINSTALL=install -s -m 755 + +# to install text files +TINSTALL=install -m 644 +#TINSTALL=cp +#TINSTALL=/usr/ucb/install $(INSTALLFLAGS) -c -m 644 +#CYGWIN32: TINSTALL=install $(INSTALLFLAGS) -c -m 644 + +XJOVEM = $(MANDIR)/xjove.$(MANEXT) +XMANUAL = $(XJOVEM) C_SRC = jovetool.c xjove.c jovewindows.c xjovewindows.c jovemenu.c \ exts.h jovewindows.h mousemsg.h xjovewindows.h ICONS = jove.icon jove.cursor copy.cursor cut.cursor paste.cursor MISC = Makefile README +DOCS = ../doc/xjove.nr BACKUPS = $(C_SRC) $(ICONS) $(MISC) +all: xjove ../doc/xjove.$(MANEXT) + default: xjove install: installxjove @@ -71,8 +92,10 @@ .filelist: $(BACKUPS) @ls $(BACKUPS) >.filelist -installxjove: xjove - $(XINSTALL) xjove $(BINDIR)/xjove +installxjove: $(XBINDIR) xjove $(XMANUALS) + $(XINSTALL) xjove $(XBINDIR)/xjove + test -d $(MANDIR) || mkdir -p $(MANDIR) + $(TINSTALL) ../doc/xjove.nr $(XJOVEM) installjovetool: jovetool $(XINSTALL) jovetool $(BINDIR)/jovetool @@ -85,7 +108,7 @@ jovewindows.o: jovewindows.c jovemenu.c exts.h jovewindows.h ../tune.h xjove: xjove.o xjovewindows.o - $(CC) $(OPTFLAGS) $(LDFLAGS) $(XJLDFLAGS) -o xjove xjove.o xjovewindows.o -lxview -lolgx -lX11 + $(CC) $(OPTFLAGS) $(LDFLAGS) $(XJLDFLAGS) -o xjove xjove.o xjovewindows.o -lxview -lX11 xjove.o: xjove.c exts.h mousemsg.h $(ICONS) $(CC) $(CFLAGS) $(XJCFLAGS) -c xjove.c @@ -96,6 +119,9 @@ tags: $(C_SRC) ctags -w $(C_SRC) +$(XMANUALS): doc/xjove.nr + $(TINSTALL) doc/xjove.nr $(XJOVEM) + # override CIFLAGS with something like: # CIFLAGS = -m'some reason for change' -u4.14.10.n -q @@ -107,3 +133,9 @@ clobber: clean rm -f *.orig *.rej + + +# + +$(XBINDIR):: + test -d $(XBINDIR) || mkdir -p $(XBINDIR) --- jove-4.16.0.72.orig/doc/jem.rc +++ jove-4.16.0.72/doc/jem.rc @@ -0,0 +1,61 @@ +# Jove Einsteiger Menue +# +# $Id: jem.rc,v 1.2 1995/03/03 16:46:44 gerold Exp $ +# $Log: jem.rc,v $ +# Revision 1.2 1995/03/03 16:46:44 gerold +# Use "pushlibd" to locate JEM related files. +# +# Revision 1.1 1995/03/03 16:43:11 gerold +# Initial revision +# +#################################################################### +# Macro definitions +# +define-macro help-window ^[xselect-buffer *hilfe*^M^[xpushlibd^M^[xinsert-file jem1.txt^M^[xmake-buffer-unmodified^M^[xread-only-mode^M^[xwindow-find^Mb^M^[8^[xgrow-window^M^[xpopd^M +# +define-macro save-and-exit ^[xsave-file^M^[xexit-jove^M +# +define-macro about-jove ^[xpushlibd^M^[xshell-command-with-typeout cat jem1.hlp^M^[xpopd^M +# +define-macro abort-jove ^[xmake-buffer-unmodified^M^[xexit-jove^My^M +# +#################################################################### +# functionkeys for vt100, these are always defined +# +# F1 +bind-macro-to-key save-and-exit OP +# F2 +bind-to-key save-file OQ +# F3 +bind-macro-to-key about-jove OR +# F4 +bind-macro-to-key abort-jove OS +# +#################################################################### +# +# funktionkeys for xterm +ifenv TERM xterm\|xterms + # F1 + bind-macro-to-key save-and-exit [11~ + # F2 + bind-to-key save-file [12~ + # F3 + bind-macro-to-key about-jove [13~ + # F4 + bind-macro-to-key abort-jove [14~ +endif +#################################################################### +# funktionkeys for sun / sun-cmd +# +ifenv TERM sun\|sun-cmd + # F1 + bind-macro-to-key save-and-exit  + # F2 + bind-to-key save-file  + # F3 + bind-macro-to-key about-jove  + # F4 + bind-macro-to-key abort-jove  +endif +# +execute-macro help-window --- jove-4.16.0.72.orig/doc/intro.nr +++ jove-4.16.0.72/doc/intro.nr @@ -55,10 +55,9 @@ .ps \\n(PS .. . -.\" Change the extra vertical spacing around .DS/.DE -.\" Does not work with groff's version of MS (GS is 1 iff groff MS) -.if !\n(GS .if n .nr DD 0v -.if !\n(GS .if t .nr DD \n(PD/2u +.\" Set the extra vertical spacing around .DS/.DE +.if n .nr DD 0v +.if t .nr DD \n(PD/2u . .nr LL 6.5i .nr LT 6.5i @@ -152,7 +151,7 @@ } _ -\fBJOVE\ (C OvrWt)\ \ \ [Main:1]\ \ "hello.c"\ \ \(**\ \ /home/foo\fP <\ the Mode Line +\fBJOVE\ (C OvrWt)\ \ \ [Main:1]\ \ "hello.c"\ \ \(**\ \ /home/foo\ \ \ \ 15:23\fP <\ the Mode Line _ : write-file (default hello.c) aloha.c\^\(sq <\ the Message Line = @@ -1978,7 +1977,7 @@ \ \ \ \ return 0; <\ second Window }\^\(sq _ -\fBJOVE\ (C OvrWt)\ \ \ [Main:1]\ \ "aloha.c"\ \ \-\-\ \ /home/foo\fP <\ the Mode Line +\fBJOVE\ (C OvrWt)\ \ \ [Main:1]\ \ "aloha.c"\ \ \-\-\ \ /home/foo\ \ \ \ 15:28\fP <\ the Mode Line _ [Point pushed] <\ the Message Line = @@ -3132,9 +3131,9 @@ .LP The format of the mode line is controlled by the variable \fImode-line\fP. Here is a suggested setting. -.DS -%[Jove%]%w%w%c(%M)%3c[%b:%n]%2c"%f"%2c%m\(**-%m\(**-%2c%p%2s%(%d%e(%t)%) -.DE +.RS +set mode-line %[Jove%]%w%w%c(%M)%3c[%b:%n]%2c"%f"%2c%m\(**-%m\(**-%2c%p%2s%(%d%e(%t)%) +.RE .LP and here is what it all means. .IP %[\^...\^%] 12n --- jove-4.16.0.72.orig/doc/jove.nr +++ jove-4.16.0.72/doc/jove.nr @@ -158,7 +158,7 @@ .I n windows (if .I n -is ommitted, it is taken to be 2). +is omitted, it is taken to be 2). Subsequent files in the list are read in and displayed in succeeding windows. .SH "RECOVERING BUFFERS AFTER A CRASH" The @@ -257,7 +257,7 @@ terminal, it should also be possible to view the keyboard layout with the keychart macro. .LP -If you're not familar with the EMACS command set, it would be worth your +If you're not familiar with the EMACS command set, it would be worth your while to use run TEACHJOVE. Do do that, just type ``teachjove'' to your shell and you will be placed in JOVE in a file which contains directions. I highly recommend this for beginners; you may save yourself a lot of time and --- jove-4.16.0.72.orig/doc/jove.rc +++ jove-4.16.0.72/doc/jove.rc @@ -11,9 +11,15 @@ # It is placed in the kill ring for subsequent yanking. define-macro kill-line ^[xbeginning-of-line^M^[xset-mark^M^[xnext-line^M^[xkill-region^M^[xpop-mark^M +# This macro sets a right margin, used below for setting a maximum row length. +define-macro nice-right-margin ^[xset right-margin 70^M + # Set fill mode when Jove is fired up automatically by certain # mail/news readers. -1 auto-execute-command auto-fill-mode /tmp/\{Re\|article\|rnmail\|pn\} +1 auto-execute-command auto-fill-mode /tmp/\{Re\|article\|rnmail\|snd\.\|nn\.\|post\|mutt\|pn\} + +# Set right margin for mail, to prevent long lines. +1 auto-execute-macro nice-right-margin /tmp/\{Re\|article\|rnmail\|snd\.\|nn\.\|post\|mutt\|pn\} # The following is if you prefer fill-mode to be on for all # files except the ones you want it off for (but on the other hand it could @@ -22,13 +28,13 @@ # Sets auto-fill-mode for every file and then turns it off as required. # 1 auto-execute-command auto-fill-mode .* -# 0 auto-execute-command auto-fill-mode .*\.[lcChyfp]$\|.*\.lisp$\|.*\.scm$\|.*\.c++$ +# 0 auto-execute-command auto-fill-mode .*\.[lcChyfp]$\|.*\.lisp$\|.*\.pl$\|.*\.scm$\|.*\.c++$ # set various language modes. -1 auto-execute-command c-mode .*\.[cChy]$\|.*\.c++$ +1 auto-execute-command c-mode .*\.[cChy]$\|.*\.c++$\|.*\.pl$ 1 auto-execute-command lisp-mode .*\.l$\|.*\.lisp$\|.*\.scm$ # all the languages need show-match-mode. -1 auto-execute-command show-match-mode .*\.[lcChyfp]$\|.*\.lisp$\|.*\.scm$\|.*\.c++$ +1 auto-execute-command show-match-mode .*\.[lcChyfp]$\|.*\.lisp$\|.*\.scm$\|.*\.c++$\|.*\.pl$ # if you have job control, this puts Jove out of the way temporarily. bind-to-key pause-jove ^[S @@ -70,10 +76,16 @@ # This causes the previous file version to remain as '#filename~'. # set make-backup-files on +if sh -c 'test ! -f $HOME/.joverc' + source jem.rc + auto-execute-command delete-other-windows .*/teach-jove +endif + + # source any TERMinal-specific rc file 1 source jove.rc.$TERM # source local custom rc file, if present -1 source jove-local.rc +1 source /etc/jove/jove-local.rc popd --- jove-4.16.0.72.orig/doc/jem1.txt +++ jove-4.16.0.72/doc/jem1.txt @@ -0,0 +1,3 @@ + ====================== JOVE Beginners-Menu ====================== +F1: Save and Exit (C-X s C-X C-C) F2: Save (C-X S) +F3: Information about JOVE F4: Exit without Saving (C-X C-C) --- jove-4.16.0.72.orig/doc/jem1.hlp +++ jove-4.16.0.72/doc/jem1.hlp @@ -0,0 +1,16 @@ +What is JOVE? + +JOVE is Jonathan's Own Version of Emacs. It is based on the original EMACS +editor written at MIT by Richard Stallman. Although JOVE is meant to be +compatible with EMACS, there are some major differences between the two +editors and you shouldn't rely on their behaving identically. + +It is configured to enable novices to edit Email, programs and other text, +because the UNIX-Standard-Editor 'vi' isn't the best choice for Newbies. +Other, easy to use editors often require a graphical Desktop, which can't be +provided everywhere. + +To start learning about the functions of JOVE run the Tutorial 'teachjove'. + +To disable the Beginners Menu, you can simply type 'touch $HOME/.joverc'. You +can also define your personal configuration in that file. --- jove-4.16.0.72.orig/doc/xjove.nr +++ jove-4.16.0.72/doc/xjove.nr @@ -1,6 +1,6 @@ .TH XJOVE 1 "8 July 1993" .SH NAME -Xjove, Jovetool \- run JOVE under X-windows or Sunview with function-key and mouse support. +Xjove \- run JOVE under X-windows with function-key and mouse support. .SH SYNOPSIS .B xjove [ @@ -13,23 +13,10 @@ [ args \&.\|.\|. ] -.br -.B jovetool -[ -.I window_args -] [ -.B \-nf -] [ -.BI \-rc \ run_command_path -]\&.\|.\|. -[ -.I args -\&.\|.\|. ] + .SH DESCRIPTION .I Xjove -(or -.IR Jovetool ) -creates an XView or SunView frame and a tty subwindow within which mouse events +creates an XView frame and a tty subwindow within which mouse events and function keys are translated to ASCII sequences which JOVE can parse. The translated input events are sent to the process running in the tty subwindow, which is typically JOVE. --- jove-4.16.0.72.orig/debian/watch +++ jove-4.16.0.72/debian/watch @@ -0,0 +1,18 @@ +# Example watch control file for uscan +# Rename this file to "watch" and then you can run the "uscan" command +# to check for upstream updates and more. +# Site Directory Pattern Version Script +# sunsite.unc.edu /pub/Linux/Incomingu jove-*.tar.gz debian uupdate +# ftp.cs.toronto.edu /pub/hugh/jove-dev (4.*).tgz debian uupdate +version=3 +# +ftp://ftp.cs.toronto.edu/pub/hugh/jove-dev/jove(.*)\.tgz +# debian uupdate + + + + + + + + --- jove-4.16.0.72.orig/debian/copyright +++ jove-4.16.0.72/debian/copyright @@ -0,0 +1,13 @@ +This package was debianized by Cord Beermann debian@cord.de on +Sun, 17 Dec 2000 14:36:36 +0100. + +It was downloaded from ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/ + +Copyright: + +########################################################################## +# This program is Copyright (C) 1986-2002 by Jonathan Payne. JOVE is # +# provided by Jonathan and Jovehacks without charge and without # +# warranty. You may copy, modify, and/or distribute JOVE, provided that # +# this notice is included in all the source files and documentation. # +########################################################################## --- jove-4.16.0.72.orig/debian/init.d +++ jove-4.16.0.72/debian/init.d @@ -0,0 +1,38 @@ +#!/bin/sh -e +# +# This file was automatically customized by debmake on Sun, 17 Dec 2000 14:36:36 +0100 +# +# Written by Miquel van Smoorenburg . +# Modified for Debian GNU/Linux by Ian Murdock . +# Modified for Debian by Christoph Lameter + +### BEGIN INIT INFO +# Provides: jove +# Required-Start: $remote_fs +# Required-Stop: +# Default-Start: 2 3 4 5 +# Default-Stop: +# Short-Description: Recovers broken jove sessions. +# Description: Recovers broken jove sessions. +### END INIT INFO + +PATH=/bin:/usr/bin:/sbin:/usr/sbin +# The following value is extracted by debstd to figure out how to generate +# the postinst script. Edit the field to change the way the script is +# registered through update-rc.d (see the manpage for update-rc.d!) +FLAGS="start 50 S ." +# NO_RESTART_ON_UPGRADE + +case "$1" in + start) + /usr/lib/jove/recover -syscrash + ;; + stop|reload|restart|force-reload) + ;; + *) + echo "Usage: /etc/init.d/jove {start|stop|restart|force-reload}" + exit 1 + ;; +esac + +exit 0 --- jove-4.16.0.72.orig/debian/docs +++ jove-4.16.0.72/debian/docs @@ -0,0 +1,3 @@ +README +sysdep.doc +tune.doc --- jove-4.16.0.72.orig/debian/changelog +++ jove-4.16.0.72/debian/changelog @@ -0,0 +1,364 @@ +jove (4.16.0.72-2.2) unstable; urgency=low + + * Non-maintainer upload. + * Drop xjove binary removal, xview is being removed from the archive + (Closes: #596569, #478558) + + -- Moritz Muehlenhoff Tue, 24 May 2011 23:07:41 +0200 + +jove (4.16.0.72-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix pending l10n issues. Debconf translations: + - Danish (Joe Hansen). Closes: #583662 + + -- Christian Perrier Thu, 07 Apr 2011 08:30:00 +0200 + +jove (4.16.0.72-2) unstable; urgency=low + + * Rebuild with reworked Architectures. + + Modified debian/rules so it simply looks for xviewg to + + Now use a whitelist for Architectures in debian/control (Please file a + bug if your architecture has xview so xjove can be build) + + -- Cord Beermann Tue, 25 May 2010 15:48:36 +0200 + +jove (4.16.0.72-1) unstable; urgency=low + + * New upstream release + + fixes a bug that shows up on 64-bit Ubuntu 10.4 + * Make Lintian Happy + + Bumped Policy-version + + Depends on dh 7 + + Adding Source-Format + * Dropped linking against libolgx (not used by xjove) + * Fixed a typo in the manpage + * Acknowledge the NMUs + + -- Cord Beermann Tue, 25 May 2010 08:04:56 +0200 + +jove (4.16.0.70-3.2) unstable; urgency=low + + * Non-maintainer upload with maintainer approval to fix release + goal. + * Correct init.d script dependencies and move from rcS.d/ to + runlevels 2-5 (Closes: 548312). + + -- Petter Reinholdtsen Thu, 18 Mar 2010 19:07:01 +0100 + +jove (4.16.0.70-3.1) unstable; urgency=low + + * Non-maintainer upload to fix pending l10n issues. + * Debconf translations: + - Dutch. Closes: #418402 + - Brazilian Portuguese. Closes: #447798 + - Spanish. Closes: #465159 + - Finnish. Closes: #476318 + - Galician. Closes: #478059 + - Vietnamese. Closes: #478148 + - Basque. Closes: #479082 + * Use "linux-any" in the architectures list instead of a long pile of + arches while we really want to exclude non Linux arches + Closes: #470034 + * Do not uncoditionnally strip binaries. Closes: #437241 + * [Lintian] Remove generic sentences from README.Debian + * [Lintian] Correct menu section to Applications/Editors + * [Lintian] Set debhelper compatibility with debian/compat + + -- Christian Perrier Thu, 10 Apr 2008 08:23:23 +0200 + +jove (4.16.0.70-3) unstable; urgency=medium + + * Updated ja.po (closes: #402611) + * Updated ru.po (closes: #404429) + * adding build-dependency po-debconf + * no more changes, should be safe for release. + + -- Cord Beermann Wed, 3 Jan 2007 22:02:12 +0100 + +jove (4.16.0.70-2) unstable; urgency=low + + * added provides for 'editor' (closes: #398749) + * debconf translations + + updated french translation (closes: #374528) + + added portugese translation (closes: #381195) + + added swedish translation (closes: #387507) + + updated czech translation (closes: #389213) + + updated german translation (closes: #396421) + + -- Cord Beermann Sun, 19 Nov 2006 14:12:47 +0100 + +jove (4.16.0.70-1) unstable; urgency=low + + * New upstream release + * bumped Standard to 3.7.2 + + removed references on /usr/X11R6 + + no more changes + * made lintian (mostly) happy by modifying debconf-templates + + -- Cord Beermann Wed, 31 May 2006 22:43:51 +0200 + +jove (4.16.0.69-5) unstable; urgency=low + + * Re-upload without change to trigger buildd. (last time there was + a missing dependency on xviewg-dev, so buildds failed.) + + -- Cord Beermann Thu, 19 Jan 2006 21:10:07 +0100 + +jove (4.16.0.69-4) unstable; urgency=low + + * dpkg-sig signature aren't acccepted by ftp-master anymore. + this sucks. + (still closes: #333417, #346620) + + -- Cord Beermann Tue, 10 Jan 2006 21:12:24 +0100 + +jove (4.16.0.69-3) unstable; urgency=low + + * Upload failed, as the xviewg-Maintainer promised an upload for the + xlib-dev Transition i add xjove back. + (closes: #333417, #346620) + + -- Cord Beermann Mon, 9 Jan 2006 21:49:15 +0100 + +jove (4.16.0.69-2) unstable; urgency=low + + * added swedish debconf template sv.po (closes: #333417) + * I rebuild the package now without the X dependency. this also means that + xjove will be no longer available. If xview, which is unmaintained for + many years now, comes back to life, i will add xjove again. + (closes: #346620) + + -- Cord Beermann Mon, 9 Jan 2006 21:46:47 +0100 + +jove (4.16.0.69-1) unstable; urgency=low + + * New upstream release + * Updated watch-File + + -- Cord Beermann Sat, 1 Oct 2005 12:07:09 +0200 + +jove (4.16.0.68-1) unstable; urgency=low + + * New upstream release + * Workarounds a problem which garbles the display if you scroll up. + + -- Cord Beermann Thu, 29 Sep 2005 22:54:05 +0200 + +jove (4.16.0.67-2) unstable; urgency=low + + * Fixed debconf-dependency + + -- Cord Beermann Thu, 29 Sep 2005 21:13:42 +0200 + +jove (4.16.0.67-1) unstable; urgency=low + + * New upstream release + * debhelper compatibility 2 -> 4 + * po-debconf-usage has been introduced some time ago (closes: #237464) + * added czech debconf template cs.po (closes: #298214) + * added japanese debconf template ja.po (closes: #310163) + * added vietnamese debconf template vi.po (closes: #314259) + * fixed alternatives-handling (closes: #327537) + + -- Cord Beermann Sat, 17 Sep 2005 20:45:35 +0200 + +jove (4.16.0.65-4) unstable; urgency=low + + * added frensch debconf tmeplate (closes: #303018) + * disabled building of xjove for amd64, ppc64, because no xview there. + (closes: #299943) + * reintroduced the same handling for hurd-i386 + + -- Cord Beermann Thu, 7 Apr 2005 20:52:07 +0200 + +jove (4.16.0.65-3) unstable; urgency=medium + + * Madeexcludes to not try to build ia64 + * added amd64 and ppc64 to build architectures (closes #299943) + * urgency medium, because of bug #271313 + + -- Cord Beermann Sun, 20 Mar 2005 21:05:01 +0100 + +jove (4.16.0.65-2) unstable; urgency=low + + * xjove doesn't build/work on ia64 because of a missing + xviewg-Package. see + bug 228957. I fixed Build-Deps and Architecture, so this shouldn't + stop jove to go to testing. + * deleted Provides: emacsen, as this seems to have another meaning + according to + http://www.debian.org/doc/packaging-manuals/debian-emacs-policy + + -- Cord Beermann Sat, 12 Mar 2005 14:03:05 +0100 + +jove (4.16.0.65-1) unstable; urgency=low + + * New upstream release + * added Provides: emacsen (it is emacs compatible) + * added emacs alternative + * made lintian happy + + added sendmail as alternative for mail-transport-agent + + switched to po-debconf + + moved xjove from /usr/X11R6 to /usr + + -- Cord Beermann Sat, 26 Feb 2005 22:57:41 +0100 + +jove (4.16.0.64-1) unstable; urgency=low + + * New upstream release + * bumped Standard to 3.6.1. (no change) + + -- Cord Beermann Fri, 27 Feb 2004 17:30:28 +0100 + +jove (4.16.0.58-1) unstable; urgency=low + + * New upstream release + * Fixed references of jove.rc in the manpage (closes: #162636) + * I would like to remove the /usr/doc -> /usr/share/doc link, but the + debhelper-version currently in testing isn't able to. So it remains for + now. (and lintian is unhappy.) + * As we don't need to restart the temp-file recovery after a + dpkg-reconfigure i don't see a sense in adding a debconf-versioning. + (lintian is unhappy.) + * removed 'full stop' from descriptons. (lintian is a little happier.) + * bumped Standard to 3.5.8.0. (no change) + + -- Cord Beermann Wed, 29 Jan 2003 20:43:11 +0100 + +jove (4.16.0.56-1) unstable; urgency=low + + * New upstream release + + License update. jove is now DFSG-free again (closes: #120759) + * added russian debconf template (closes: #136926) + + -- Cord Beermann Thu, 21 Mar 2002 19:54:43 +0100 + +jove (4.16.0.52-3) unstable; urgency=low + + * fixed template. (closes: #123774, #123810) + + -- Cord Beermann Thu, 13 Dec 2001 19:37:54 +0100 + +jove (4.16.0.52-2) unstable; urgency=low + + * added german template by Sebastian Feltel + (closes: #109144) + * moved jove to non-free (closes: #120759) + i'll reopen this bug as wishlist item, the Original Author Jonathan Payne + said 'I've always personally considered it a "do whatever the hell you + want with it" piece of code, as long as you don't try to sell it.'. Sadly + the people at jovehacks@cs.toronto.edu, who now maintain that project + haven't yet answered my mail or released a copyright-fixed version. + + -- Cord Beermann Mon, 10 Dec 2001 22:00:28 +0100 + +jove (4.16.0.52-1) unstable; urgency=low + + * New upstream release + * Standards: 3.5.6.0 + + -- Cord Beermann Sun, 12 Aug 2001 11:35:40 +0200 + +jove (4.16.0.50-1) unstable; urgency=low + + * new upstream + * recompile with current testing including XFree86 V4.x + * removed Hurdish-excludes from Build-depends, because + 1. it stops Autobuilders from working correctly + 2. as xlibs/Xview gets available for the Hurd, jove should be compile + fine there. Since then i'll port it myself. + + -- Cord Beermann Sun, 18 Feb 2001 14:54:16 +0100 + +jove (4.16.0.49-4) unstable; urgency=low + + * debconf'ed + + -- Cord Beermann Wed, 17 Jan 2001 20:40:09 +0100 + +jove (4.16.0.49-3) unstable; urgency=low + + * fixed bug in preinst-script (Closes: #82374) (Thanks to Nathaniel Smith) + * changed my address, as i'm now in the project. + + -- Cord Beermann Mon, 15 Jan 2001 08:58:51 +0100 + +jove (4.16.0.49-2) unstable; urgency=low + + * fixed a 'cannot build from source' bug. (Closes: #81878) + * removed a tailing space from the menu-file. + (patches supplied by Martin Michlmayr) + + -- Cord Beermann Thu, 11 Jan 2001 08:04:57 +0100 + +jove (4.16.0.49-1) unstable; urgency=low + + * previous Maintainer Loic Prylli gives now Package away to me. Thanks. + * New Maintainer: Cord Beermann + * New Upstream version. + * started packaging up from scratch. + * activated mouse and scrollbar + * split off xjove as seperate package (depending on jove) + * finally closing bugs from previous NMU-Release (Closes: #79015, #50917) + * Standards-Version: 3.2.1 + + -- Cord Beermann Sun, 21 Dec 2000 13:38:50 +0100 + +jove (4.16-5.1) unstable; urgency=low + + * NMU + * Patches for compiling on the Hurd (Fixes #79015) + * Update to Standards-Version: 3.1.1.1 (Fixes #50917) + * Added script to recover crashed jove buffers + * changed CONFIGDIR to /etc/jove + * Added Beginners Menu (adapted from Gerold Meerkoetter) + * Added update-alternatives + * Added menu-entry + * fixed problem with 'make install' + + -- Cord Beermann Tue, 12 Dec 2000 23:36:36 +0100 + +jove (4.16-5) frozen unstable; urgency=low + + * recompile for ncurses3.4 + * fix wrong path in manpages (bug #21457) + * remove irrelevant jovetool and xjove manpages (bug #22312,#22313) + + -- Loic Prylli Wed, 11 Nov 1998 19:09:28 +0100 + +jove (4.16-4) unstable; urgency=low + + * fix Bug#25308: jove 4.16-3 requires /usr/tmp + + -- Loic Prylli Wed, 14 Oct 1998 01:12:02 +0200 + +jove (4.16-3) unstable; urgency=low + + * use dh_testdir and dh_testroot + * change buf.c, with glibc stat modifies its args even when failing + * change CONFIGDIR, now /etc/jove.rc + + -- Loic Prylli Fri, 20 Feb 1998 00:27:17 +0100 + +jove (4.16-2) unstable; urgency=low + + * removed unneeded patches + * cleaned configuration + + -- Loic Prylli Mon, 9 Feb 1998 23:59:02 +0100 + +jove (4.16-1) unstable; urgency=low + + * Initial Release. + + -- Loic Prylli Tue, 31 Dec 1996 00:41:08 +0100 +jove (4.16.0.70-3.1) unstable; urgency=medium + + * Updated ja.po (closes: #402611) + * Updated ru.po (closes: #404429) + * adding build-dependency po-debconf + * no more changes, should be safe for release. + * Dutch. Closes: #418402 + + -- Cord Beermann Wed, 3 Jan 2007 22:02:12 +0100 --- jove-4.16.0.72.orig/debian/compat +++ jove-4.16.0.72/debian/compat @@ -0,0 +1 @@ +7 --- jove-4.16.0.72.orig/debian/jove.menu +++ jove-4.16.0.72/debian/jove.menu @@ -0,0 +1,7 @@ +?package(jove):\ + needs="text"\ + hints="small, useful, featureful"\ + section="Applications/Editors"\ + title="jove"\ + longtitle="Jove, Jonathan's Own Version of EMACS"\ + command="/usr/bin/jove" --- jove-4.16.0.72.orig/debian/xjove.README.debian +++ jove-4.16.0.72/debian/xjove.README.debian @@ -0,0 +1,4 @@ +This is a X-Frontend for jove. For more information you should check +/usr/share/doc/jove + +Cord Beermann , Sun, 17 Dec 2000 14:36:36 +0100 --- jove-4.16.0.72.orig/debian/jove-doc.files +++ jove-4.16.0.72/debian/jove-doc.files @@ -0,0 +1 @@ +usr/share/doc --- jove-4.16.0.72.orig/debian/README.debian +++ jove-4.16.0.72/debian/README.debian @@ -0,0 +1,4 @@ +xjove depends on xview, which fails to build on some new architectures, +and which is unmaintained Upstream for years. + +Cord Beermann , Sun, 9 Jan 2006 21:52:36 +0100 --- jove-4.16.0.72.orig/debian/jove.postinst +++ jove-4.16.0.72/debian/jove.postinst @@ -0,0 +1,20 @@ +#!/bin/sh -e + +. /usr/share/debconf/confmodule + +# These are for the generic editor links +update-alternatives --install /usr/bin/editor editor /usr/bin/jove 60 \ + --slave /usr/share/man/man1/editor.1.gz editor.1.gz \ + /usr/share/man/man1/jove.1.gz +update-alternatives --install /usr/bin/emacs emacs /usr/bin/jove 0 \ + --slave /usr/share/man/man1/emacs.1.gz emacs.1.gz \ + /usr/share/man/man1/jove.1.gz + +if dpkg --compare-versions "$2" le 4.16.0.70-3.1 ; then + echo "Reinstalling init script for new runlevels ..." >&2 + # remove old init script symlinks; dh_installinit adds the proper + # update-rc.d snippet later on + update-rc.d -f jove remove >/dev/null +fi + +#DEBHELPER# --- jove-4.16.0.72.orig/debian/jove.config +++ jove-4.16.0.72/debian/jove.config @@ -0,0 +1,23 @@ +#!/bin/sh + +set -e + +# We need debconf. +. /usr/share/debconf/confmodule + +go=0 + +if [ -f /etc/jove.rc ] +then + if [ ! -f /etc/jove/jove.rc ] + then + db_input high jove/upgradewarn-1 || true + mkdir /etc/jove + mv /etc/jove.rc /etc/jove/jove.rc + else + db_input high jove/upgradewarn-2 || true + mv /etc/jove.rc /etc/jove/jove.rc.old + fi +fi + +exit 0 --- jove-4.16.0.72.orig/debian/jove.templates +++ jove-4.16.0.72/debian/jove.templates @@ -0,0 +1,8 @@ +Template: jove/upgradewarn-1 +Type: note +_Description: Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc + +Template: jove/upgradewarn-2 +Type: note +_Description: Old version of /etc/jove.rc and new version /etc/jove/jove.rc found + Moving old version to /etc/jove/jove.rc.old --- jove-4.16.0.72.orig/debian/rules +++ jove-4.16.0.72/debian/rules @@ -0,0 +1,63 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +# export DH_VERBOSE=1 + +# This has to be exported to make some magic below work. +export DH_OPTIONS + +build: +# does nothing. + +build-jove: + dh_testdir +# $(MAKE) + $(MAKE) SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500" + +binary: binary-arch binary-indep + +binary-arch: build install + dh_testdir + dh_testroot + dh_installdebconf + dh_installdocs +# dh_installexamples + dh_installmenu + dh_installinit -r -- start 20 2 3 4 5 . +# dh_installcron + dh_installchangelogs -k version.h + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol -pjove + dh_md5sums -pjove + dh_builddeb -pjove +# dh_gencontrol or something seem to not honour DH_OPTIONS + +binary-indep: build install +# does nothing. + +install: build install-jove + +install-jove: build-jove + export DH_OPTIONS=-pjove + dh_testdir + dh_testroot + dh_installdirs + $(MAKE) install DESTDIR=`pwd`/debian/jove + +clean: + dh_testdir + dh_testroot + $(MAKE) clean + debconf-updatepo + dh_clean + +# Local Variables: +# mode: makefile +# End variables + + + --- jove-4.16.0.72.orig/debian/control +++ jove-4.16.0.72/debian/control @@ -0,0 +1,18 @@ +Source: jove +Section: editors +Build-Depends: debhelper (>= 7), po-debconf, libncurses-dev, groff +Priority: optional +Maintainer: Cord Beermann +Standards-Version: 3.8.4 + +Package: jove +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Provides: editor +Recommends: sendmail | mail-transport-agent +Description: Jonathan's Own Version of Emacs - a compact, powerful editor + Jove is a compact, powerful Emacs-style text-editor. It provides the common + emacs keyboard bindings, together with a reasonable assortment of the most + popular advanced features (e.g. interactive shell windows, compile-it, + language specific modes) while weighing in with CPU, memory, and disk + requirements comparable to vi(1). \ No newline at end of file --- jove-4.16.0.72.orig/debian/jove.prerm +++ jove-4.16.0.72/debian/jove.prerm @@ -0,0 +1,9 @@ +#!/bin/sh -e + +if [ "$1" != "upgrade" ] +then + update-alternatives --remove editor /usr/bin/jove + update-alternatives --remove emacs /usr/bin/jove +fi + +#DEBHELPER# --- jove-4.16.0.72.orig/debian/po/sv.po +++ jove-4.16.0.72/debian/po/sv.po @@ -0,0 +1,38 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: jove 4.16.0.70-1\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2006-09-14 21:07+0100\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"Hittade en gammal version av /etc/jove.rc. Flyttade den till /etc/jove/jove." +"rc" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" +"Gammal version av /etc/jove.rc och nya versionen /etc/jove/jove.rc hittades" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "Flyttar gammal version till /etc/jove/jove.rc.old" --- jove-4.16.0.72.orig/debian/po/de.po +++ jove-4.16.0.72/debian/po/de.po @@ -0,0 +1,46 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2006-10-31 18:09+0100\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: de \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"Alte Version von /etc/jove.rc gefunden. Datei wird nach /etc/jove/jove.rc " +"verschoben" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" +"Alte Version von /etc/jove.rc und neue Version von /etc/jove/jove.rc gefunden" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "Die alte Version wird nach /etc/jove/jove.rc.old verschoben" --- jove-4.16.0.72.orig/debian/po/pt_BR.po +++ jove-4.16.0.72/debian/po/pt_BR.po @@ -0,0 +1,42 @@ +# jove Brazilian Portuguese translation +# Copyright (C) 2007 jove'S PACKAGE COPYRIGHT HOLDER +# This file is distributed under the same license as the jove package. +# Eder L. Marques (frolic) , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: jove 4.16.0.70-3\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2007-10-19 16:53-0300\n" +"Last-Translator: Eder L. Marques (frolic) \n" +"Language-Team: l10n Portuguese \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"pt_BR utf-8\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"Uma versão antiga do /etc/jove.rc foi encontrada. Ela foi movida para /etc/" +"jove/jove.rc" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" +"Uma versão antiga do /etc/jove.rc e uma versão nova do /etc/jove/jove.rc " +"foram encontradas" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "Movendo a versão antiga para /etc/jove/jove.rc.old" --- jove-4.16.0.72.orig/debian/po/vi.po +++ jove-4.16.0.72/debian/po/vi.po @@ -0,0 +1,40 @@ +# Vietnamese translation for jove. +# Copyright © 2008 Free Software Foundation, Inc. +# Clytie Siddall , 2005-2008. +# +msgid "" +msgstr "" +"Project-Id-Version: jove 4.16.0.70-3.1\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2008-04-27 23:41+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.7b3\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"Tìm thấy phiên bản « /etc/jove.rc » cũ. Đã di chuyển nó vào « /etc/jove/jove." +"rc »." + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" +"Tìm thấy cả hai phiên bản cũ « /etc/jove.rc » và phiên bản mới « /etc/jove/" +"jove.rc »." + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "Đang di chuyển phiên bản cũ vào « /etc/jove/jove.rc.old »." --- jove-4.16.0.72.orig/debian/po/da.po +++ jove-4.16.0.72/debian/po/da.po @@ -0,0 +1,36 @@ +# Danish translation jove. +# Copyright (C) 2010 jove & Joe Hansen. +# This file is distributed under the same license as the jove package. +# Joe Hansen , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: jove\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2010-05-29 17:30+01:00\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"Fandt gammel version af /etc/jove.rc. Flyttede den til /etc/jove/jove.rc" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "Gammel version af /etc/jove.rc og ny version /etc/jove/jove.rc fundet" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "Flytter gammel version til /etc/jove/jove.rc.old" --- jove-4.16.0.72.orig/debian/po/nl.po +++ jove-4.16.0.72/debian/po/nl.po @@ -0,0 +1,39 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: jove\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2007-04-04 17:25+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"Er is een oudere /etc/jove.rc gevonden; deze is verplaatst naar /etc/jove/" +"jove.rc" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" +"Er is zowel een oude /etc/jove.rc als een nieuwe /etc/jove/jove.rc gevonden" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "De oude versie wordt verplaatst naar /etc/jove/jove.rc.old" --- jove-4.16.0.72.orig/debian/po/fi.po +++ jove-4.16.0.72/debian/po/fi.po @@ -0,0 +1,35 @@ +msgid "" +msgstr "" +"Project-Id-Version: jove\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2008-04-15 23:04+0200\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-Language: Finnish\n" +"X-Poedit-Country: FINLAND\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"Löydettiin vanha tiedosto /etc/jove.rc. Se siirrettiin nimelle /etc/jove/" +"jove.rc." + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "Löydettiin vanha versio /etc/jove.rc ja uusi versio /etc/jove/jove.rc." + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "Vanha versio siirrettiin nimelle /etc/jove/jove.rc.old." --- jove-4.16.0.72.orig/debian/po/POTFILES.in +++ jove-4.16.0.72/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] jove.templates --- jove-4.16.0.72.orig/debian/po/es.po +++ jove-4.16.0.72/debian/po/es.po @@ -0,0 +1,62 @@ +# jove po-debconf translation to Spanish +# Copyright (C) 2005 Software in the Public Interest +# This file is distributed under the same license as the jove package. +# +# Changes: +# - Initial translation +# César Gómez Martín +# +# Traductores, si no conoce el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Equipo de traducción al español, por favor, lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/ +# especialmente las notas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +# +msgid "" +msgstr "" +"Project-Id-Version: jove 4.16.0.69-1\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2008-02-10 19:09-0500\n" +"Last-Translator: César Gómez Martín \n" +"Language-Team: Debian l10n spanish \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Spanish\n" +"X-Poedit-Country: SPAIN\n" +"X-Poedit-SourceCharset: utf-8\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"Se ha encontrado una versión antigua de /etc/jove.rc y se ha movido a /etc/" +"jove/jove.rc." + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" +"Se ha encontrado tanto la versión antigua de /etc/jove.rc como la nueva /etc/" +"jove/jove.rc." + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "Se va a mover la versión antigua del fichero a /etc/jove/jove.rc.old." --- jove-4.16.0.72.orig/debian/po/ru.po +++ jove-4.16.0.72/debian/po/ru.po @@ -0,0 +1,46 @@ +# translation of jove_4.16.0.70-2_ru.po to Russian +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Yuri Kozlov , 2006. +msgid "" +msgstr "" +"Project-Id-Version: 4.16.0.70-2\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2006-12-24 21:22+0300\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "Найдена старая версия /etc/jove.rc. Переносится в /etc/jove/jove.rc" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "Найдены старая версия /etc/jove.rc и новая версия /etc/jove/jove.rc" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "Старая версия переносится в /etc/jove/jove.rc.old" --- jove-4.16.0.72.orig/debian/po/pt.po +++ jove-4.16.0.72/debian/po/pt.po @@ -0,0 +1,37 @@ +# Portuguese translation for clamav-data debconf messages +# This file is distributed under the same license as the clamav-data package. +# Ricardo Silva , 2006 +# +# +msgid "" +msgstr "" +"Project-Id-Version: jove 4.16.0.70-1\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2006-08-02 14:40+0100\n" +"Last-Translator: Ricardo Silva \n" +"Language-Team: Native Portuguese \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"Encontrada uma versão antida de /etc/jove.rc. Movida para /etc/jove/jove.rc" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" +"Versão antiga de /etc/jove.rc e versão nova de /etc/jove/jove.rc encontradas" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "Movendo versão antiga para /etc/jove/jove.rc.old" --- jove-4.16.0.72.orig/debian/po/fr.po +++ jove-4.16.0.72/debian/po/fr.po @@ -0,0 +1,46 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: jove 4.16.0.0.70-1\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2006-06-15 23:52+0200\n" +"Last-Translator: Christophe Masson \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "Ancien fichier /etc/jove.rc renomm en /etc/jove/jove.rc" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "Ancien /etc/jove.rc et nouveau /etc/jove/jove.rc trouvs simultanment" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "" +"Une ancienne version de /etc/jove.rc et une nouvelle version /etc/jove/jove." +"rc existaient dj sur votre systme. L'ancienne version est renomme /etc/" +"jove/jove.rc.old" --- jove-4.16.0.72.orig/debian/po/ja.po +++ jove-4.16.0.72/debian/po/ja.po @@ -0,0 +1,47 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: jove 4.16.0.70-2\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2006-11-28 19:41+0900\n" +"Last-Translator: Atsushi Shimono \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"古いバージョンである /etc/jove.rc が検出されました。これは /etc/jove/jove.rc " +"に移動されます。" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" +"古いバージョンである /etc/jove.rc と新しいバージョンである /etc/jove/jove.rc " +"が検出されました。" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "古いバージョンを /etc/jove/jove.rc.old に移動します。" --- jove-4.16.0.72.orig/debian/po/templates.pot +++ jove-4.16.0.72/debian/po/templates.pot @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "" --- jove-4.16.0.72.orig/debian/po/eu.po +++ jove-4.16.0.72/debian/po/eu.po @@ -0,0 +1,39 @@ +# translation of jove-eu.po to Euskara +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Piarres Beobide , 2008. +msgid "" +msgstr "" +"Project-Id-Version: jove-eu\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2008-05-02 18:01+0200\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: Euskara \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"/etc/jove.rc-ren bertsio zaharra aurkitu da. /etc/jove/jove.rc-ra mugitua" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" +"/etc/jove.rc bertsio zaharra eta /etc/jove/jove.rc bertsio berria aurkitu " +"dira" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "Bertsio zaharra /etc/jove/jove.rc.old-ra mugitzen" --- jove-4.16.0.72.orig/debian/po/gl.po +++ jove-4.16.0.72/debian/po/gl.po @@ -0,0 +1,37 @@ +# Galician translation of jove's debconf templates +# This file is distributed under the same license as the jove package. +# Jacobo Tarrio , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: jove\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2008-04-26 18:39+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"Atopouse unha versión antiga de /etc/jove.rc. Trasladouse a /etc/jove/jove.rc" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" +"Atopouse unha versión antiga de /etc/jove.rc e unha nova versión de /etc/" +"jove/jove.rc." + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "A trasladar a versión antiga a /etc/jove/jove.rc.old" --- jove-4.16.0.72.orig/debian/po/cs.po +++ jove-4.16.0.72/debian/po/cs.po @@ -0,0 +1,46 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: jove\n" +"Report-Msgid-Bugs-To: cord@debian.org\n" +"POT-Creation-Date: 2006-11-19 14:26+0100\n" +"PO-Revision-Date: 2006-09-24 17:57+0200\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: note +#. Description +#: ../jove.templates:1001 +msgid "Found old version of /etc/jove.rc. Moved it to /etc/jove/jove.rc" +msgstr "" +"Byla nalezena starší verze /etc/jove.rc. Přesunul jsem ji do /etc/jove/jove." +"rc" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Old version of /etc/jove.rc and new version /etc/jove/jove.rc found" +msgstr "" +"Byla nalezena starší verze /etc/jove.rc i novější varianta /etc/jove/jove.rc" + +#. Type: note +#. Description +#: ../jove.templates:2001 +msgid "Moving old version to /etc/jove/jove.rc.old" +msgstr "Přesunuji starou verzi do /etc/jove/jove.rc.old" --- jove-4.16.0.72.orig/debian/source/format +++ jove-4.16.0.72/debian/source/format @@ -0,0 +1 @@ +1.0