Update to version 1.2.2

--
Use of new xforms,
Cosmetic changes,
Change CONFIGURE_STYLE,
Take MAINTAINER.

brad@ ok
This commit is contained in:
margarida 2003-01-06 00:13:22 +00:00
parent 6ee9c2a7a9
commit 4c4fab2633
6 changed files with 106 additions and 126 deletions

View File

@ -1,18 +1,18 @@
# $OpenBSD: Makefile,v 1.29 2002/12/29 19:49:41 fgsch Exp $ # $OpenBSD: Makefile,v 1.30 2003/01/06 00:13:22 margarida Exp $
COMMENT= "graphical frontend for LaTeX (nearly WYSIWYG)" COMMENT= "graphical frontend for LaTeX (nearly WYSIWYG)"
DISTNAME= lyx-1.1.6fix4 DISTNAME= lyx-1.2.2
CATEGORIES= print CATEGORIES= print
MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/ \
ftp://ftp.sdsc.edu/pub/other/lyx/stable/ \
ftp://ftp.lip6.fr/pub/lyx/stable/
HOMEPAGE= http://www.lyx.org/ HOMEPAGE= http://www.lyx.org/
MODULES= gettext MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/ \
ftp://ftp.sdsc.edu/pub/other/lyx/stable/ \
ftp://ftp.lip6.fr/pub/lyx/stable/ \
ftp://ftp.chg.ru/pub/TeX/lyx/stable/
MAINTAINER= Mark Grimes <mark@stateful.net> MAINTAINER= Margarida Sequeira <margarida@openbsd.org>
# quasi-GPL (linked to closed source library) # quasi-GPL (linked to closed source library)
# no limitation of license; considered GPL # no limitation of license; considered GPL
@ -22,14 +22,16 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes PERMIT_DISTFILES_FTP= Yes
BUILD_DEPENDS+= :teTeX_base-*:print/teTeX/base MODULES= gettext
RUN_DEPENDS+= :teTeX_base-*:print/teTeX/base \
:ispell-*:textproc/ispell
LIB_DEPENDS+= forms::x11/xforms
CONFIGURE_STYLE= autoconf BUILD_DEPENDS+= :teTeX_base-*:print/teTeX/base
RUN_DEPENDS+= :teTeX_base-*:print/teTeX/base \
:ispell-*:textproc/ispell
LIB_DEPENDS+= forms.1::x11/xforms
CONFIGURE_STYLE= gnu
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}/config MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}/config
STRIP=
CONFIGURE_ARGS= --with-extra-lib=${LOCALBASE}/lib CONFIGURE_ARGS= --with-extra-lib=${LOCALBASE}/lib
CONFIGURE_ARGS+= --with-extra-inc="${LOCALBASE}/include \ CONFIGURE_ARGS+= --with-extra-inc="${LOCALBASE}/include \
${LOCALBASE}/include/X11" ${LOCALBASE}/include/X11"

View File

@ -1,3 +1,3 @@
MD5 (lyx-1.1.6fix4.tar.gz) = de8fc7e0f390f12db4093098f8fee9d6 MD5 (lyx-1.2.2.tar.gz) = 62d3c0337e133b11da8170f55be0860d
RMD160 (lyx-1.1.6fix4.tar.gz) = 53d6e0b8c2f08dd501d9e7328543891b99b5efe0 RMD160 (lyx-1.2.2.tar.gz) = 7cd2cd9b218c6ae7ada0b851b21e37493826280a
SHA1 (lyx-1.1.6fix4.tar.gz) = 0256ba5955bf98068f8dc0768224d70840858418 SHA1 (lyx-1.2.2.tar.gz) = c3227cd8b311be40085a4477ac5fb7d4e37edc92

View File

@ -1,11 +0,0 @@
--- configure.orig Sat Oct 6 13:32:31 2001
+++ configure Sat Oct 6 13:33:55 2001
@@ -9,7 +9,7 @@
# Defaults:
ac_help=
-ac_default_prefix=/usr/local
+ac_default_prefix=${LOCALBASE}
# Any additions from configure.in:
ac_help="$ac_help
--with-version-suffix[=<version>] install lyx files as lyx<version>"

View File

@ -1,75 +1,11 @@
--- po/Makefile.in.in.orig Tue Oct 30 01:45:02 2001 --- po/Makefile.in.in.orig Mon Dec 23 05:11:10 2002
+++ po/Makefile.in.in Tue Oct 30 01:50:55 2001 +++ po/Makefile.in.in Mon Dec 23 05:09:18 2002
@@ -6,6 +6,8 @@ @@ -23,7 +23,7 @@ VPATH = @srcdir@
# but which still want to provide support for the GNU gettext functionality.
# Please note that the actual code is *not* freely available.
+DESTDIR =
+
PACKAGE = @PACKAGE@
VERSION = @VERSION@
@@ -19,7 +21,7 @@ VPATH = @srcdir@
prefix = @prefix@ prefix = @prefix@
exec_prefix = @exec_prefix@ exec_prefix = @exec_prefix@
datadir = $(prefix)/@DATADIRNAME@ datadir = @datadir@
-localedir = $(datadir)/locale -localedir = $(datadir)/locale
+localedir = $(prefix)/share/locale +localedir = $(prefix)/share/locale
gnulocaledir = $(prefix)/share/locale gettextsrcdir = $(datadir)/gettext/po
gettextsrcdir = $(prefix)/share/gettext/po
subdir = po
@@ -115,16 +117,16 @@ install-data: install-data-@USE_NLS@
install-data-no: all
install-data-yes: all
if test -r "$(MKINSTALLDIRS)"; then \
- $(MKINSTALLDIRS) $(datadir); \
+ $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
else \
- $(SHELL) $(top_srcdir)/mkinstalldirs $(datadir); \
+ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
fi
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
case "$$cat" in \
- *.gmo) destdir=$(gnulocaledir);; \
- *) destdir=$(localedir);; \
+ *.gmo) destdir=$(DESTDIR)$(gnulocaledir);; \
+ *) destdir=$(DESTDIR)$(localedir);; \
esac; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
dir=$$destdir/$$lang/LC_MESSAGES; \
@@ -157,12 +159,12 @@ install-data-yes: all
done
if test "$(PACKAGE)" = "gettext"; then \
if test -r "$(MKINSTALLDIRS)"; then \
- $(MKINSTALLDIRS) $(gettextsrcdir); \
+ $(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
else \
- $(SHELL) $(top_srcdir)/mkinstalldirs $(gettextsrcdir); \
+ $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
fi; \
$(INSTALL_DATA) $(srcdir)/Makefile.in.in \
- $(gettextsrcdir)/Makefile.in.in; \
+ $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \
else \
: ; \
fi
@@ -175,12 +177,12 @@ uninstall:
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
- rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
- rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
- rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
- rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
+ rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
+ rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
+ rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \
+ rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT).m; \
done
- rm -f $(gettextsrcdir)/po-Makefile.in.in
+ rm -f $(DESTDIR)$(gettextsrcdir)/po-Makefile.in.in
check: all
INSTALL = @INSTALL@

View File

@ -1,11 +1,12 @@
LyX is a wordprocessor frontend to LaTeX, which gives both the LyX is a wordprocessor frontend to LaTeX, which gives both the
ease-of-use of a wordprocessor, and the flexibility and power of ease-of-use of a wordprocessor, and the flexibility and power
LaTeX. of LaTeX.
Quasi-WYSIWYG interface, many LaTeX styles and layouts automatically Quasi-WYSIWYG interface, many LaTeX styles and layouts automatically
generated. Speeds up learning LaTeX and makes complicated layouts generated. Speeds up learning LaTeX and makes complicated layouts
easy and intuitive. New features include spell-checking, international easy and intuitive.
character support, WYSIWYG graphics, tables, and equations. New features include spell-checking, international character support,
WYSIWYG graphics, tables, and equations.
Author: ettrich@informatik.uni-tuebingen.de (Matthias Ettrich) Author: ettrich@informatik.uni-tuebingen.de (Matthias Ettrich)
Maintained-by: dlj0@lehigh.edu (David L. Johnson) Maintained-by: dlj0@lehigh.edu (David L. Johnson)

View File

@ -1,10 +1,10 @@
@comment $OpenBSD: PLIST,v 1.7 2002/01/20 09:32:52 mark Exp $ @comment $OpenBSD: PLIST,v 1.8 2003/01/06 00:13:22 margarida Exp $
bin/listerrors
bin/lyx bin/lyx
bin/noweb2lyx bin/noweb2lyx
bin/reLyX bin/reLyX
man/man1/lyx.1 man/man1/lyx.1
man/man1/reLyX.1 man/man1/reLyX.1
share/locale/bg/LC_MESSAGES/lyx.mo
share/locale/ca/LC_MESSAGES/lyx.mo share/locale/ca/LC_MESSAGES/lyx.mo
share/locale/cs/LC_MESSAGES/lyx.mo share/locale/cs/LC_MESSAGES/lyx.mo
share/locale/da/LC_MESSAGES/lyx.mo share/locale/da/LC_MESSAGES/lyx.mo
@ -22,6 +22,7 @@ share/locale/pl/LC_MESSAGES/lyx.mo
share/locale/pt/LC_MESSAGES/lyx.mo share/locale/pt/LC_MESSAGES/lyx.mo
share/locale/ro/LC_MESSAGES/lyx.mo share/locale/ro/LC_MESSAGES/lyx.mo
share/locale/ru/LC_MESSAGES/lyx.mo share/locale/ru/LC_MESSAGES/lyx.mo
share/locale/sk/LC_MESSAGES/lyx.mo
share/locale/sl/LC_MESSAGES/lyx.mo share/locale/sl/LC_MESSAGES/lyx.mo
share/locale/sv/LC_MESSAGES/lyx.mo share/locale/sv/LC_MESSAGES/lyx.mo
share/locale/tr/LC_MESSAGES/lyx.mo share/locale/tr/LC_MESSAGES/lyx.mo
@ -29,12 +30,13 @@ share/locale/wa/LC_MESSAGES/lyx.mo
share/lyx/CREDITS share/lyx/CREDITS
share/lyx/bind/broadway.bind share/lyx/bind/broadway.bind
share/lyx/bind/cua.bind share/lyx/bind/cua.bind
share/lyx/bind/cyrkeys.bind
share/lyx/bind/de_menus.bind share/lyx/bind/de_menus.bind
share/lyx/bind/emacs.bind share/lyx/bind/emacs.bind
share/lyx/bind/fi_menus.bind share/lyx/bind/fi_menus.bind
share/lyx/bind/fr_menus.bind share/lyx/bind/greekkeys.bind
share/lyx/bind/hollywood.bind share/lyx/bind/hollywood.bind
share/lyx/bind/hu_menus.bind share/lyx/bind/latinkeys.bind
share/lyx/bind/math.bind share/lyx/bind/math.bind
share/lyx/bind/menus.bind share/lyx/bind/menus.bind
share/lyx/bind/pt_menus.bind share/lyx/bind/pt_menus.bind
@ -45,11 +47,9 @@ share/lyx/chkconfig.ltx
share/lyx/clipart/platypus.eps share/lyx/clipart/platypus.eps
share/lyx/configure share/lyx/configure
share/lyx/configure.cmd share/lyx/configure.cmd
share/lyx/doc/BUGS.lyx
share/lyx/doc/Customization.lyx share/lyx/doc/Customization.lyx
share/lyx/doc/DocStyle.lyx share/lyx/doc/DocStyle.lyx
share/lyx/doc/Extended.lyx share/lyx/doc/Extended.lyx
share/lyx/doc/ExternalMaterial.lyx
share/lyx/doc/FAQ.lyx share/lyx/doc/FAQ.lyx
share/lyx/doc/Intro.lyx share/lyx/doc/Intro.lyx
share/lyx/doc/LaTeXConfig.lyx share/lyx/doc/LaTeXConfig.lyx
@ -63,7 +63,6 @@ share/lyx/doc/cs_TOC.lyx
share/lyx/doc/cs_Tutorial.lyx share/lyx/doc/cs_Tutorial.lyx
share/lyx/doc/da_Intro.lyx share/lyx/doc/da_Intro.lyx
share/lyx/doc/da_TOC.lyx share/lyx/doc/da_TOC.lyx
share/lyx/doc/de_BUGS.lyx
share/lyx/doc/de_Customization.lyx share/lyx/doc/de_Customization.lyx
share/lyx/doc/de_Extended.lyx share/lyx/doc/de_Extended.lyx
share/lyx/doc/de_FAQ.lyx share/lyx/doc/de_FAQ.lyx
@ -78,15 +77,16 @@ share/lyx/doc/escher-lsd.eps
share/lyx/doc/eu_Intro.lyx share/lyx/doc/eu_Intro.lyx
share/lyx/doc/eu_TOC.lyx share/lyx/doc/eu_TOC.lyx
share/lyx/doc/eu_Tutorial.lyx share/lyx/doc/eu_Tutorial.lyx
share/lyx/doc/fr_BUGS.lyx
share/lyx/doc/fr_Customization.lyx share/lyx/doc/fr_Customization.lyx
share/lyx/doc/fr_Extended.lyx share/lyx/doc/fr_Extended.lyx
share/lyx/doc/fr_ExternalMaterial.lyx
share/lyx/doc/fr_FAQ.lyx share/lyx/doc/fr_FAQ.lyx
share/lyx/doc/fr_Intro.lyx share/lyx/doc/fr_Intro.lyx
share/lyx/doc/fr_TOC.lyx share/lyx/doc/fr_TOC.lyx
share/lyx/doc/fr_Tutorial.lyx share/lyx/doc/fr_Tutorial.lyx
share/lyx/doc/fr_UserGuide.lyx share/lyx/doc/fr_UserGuide.lyx
share/lyx/doc/he_Intro.lyx
share/lyx/doc/he_TOC.lyx
share/lyx/doc/he_Tutorial.lyx
share/lyx/doc/hu_Intro.lyx share/lyx/doc/hu_Intro.lyx
share/lyx/doc/hu_TOC.lyx share/lyx/doc/hu_TOC.lyx
share/lyx/doc/it_Customization.lyx share/lyx/doc/it_Customization.lyx
@ -107,6 +107,14 @@ share/lyx/doc/pt_TOC.lyx
share/lyx/doc/pt_Tutorial.lyx share/lyx/doc/pt_Tutorial.lyx
share/lyx/doc/ro_Intro.lyx share/lyx/doc/ro_Intro.lyx
share/lyx/doc/ro_TOC.lyx share/lyx/doc/ro_TOC.lyx
share/lyx/doc/ro_splash.lyx
share/lyx/doc/ru_FAQ.lyx
share/lyx/doc/ru_Intro.lyx
share/lyx/doc/ru_TOC.lyx
share/lyx/doc/ru_Tutorial.lyx
share/lyx/doc/sk_TOC.lyx
share/lyx/doc/sk_Tutorial.lyx
share/lyx/doc/sk_UserGuide.lyx
share/lyx/doc/sl_Intro.lyx share/lyx/doc/sl_Intro.lyx
share/lyx/doc/sl_TOC.lyx share/lyx/doc/sl_TOC.lyx
share/lyx/doc/sl_Tutorial.lyx share/lyx/doc/sl_Tutorial.lyx
@ -117,7 +125,6 @@ share/lyx/encodings
share/lyx/examples/Foils.lyx share/lyx/examples/Foils.lyx
share/lyx/examples/ItemizeBullets.lyx share/lyx/examples/ItemizeBullets.lyx
share/lyx/examples/Literate.lyx share/lyx/examples/Literate.lyx
share/lyx/examples/MathLabeling.lyx
share/lyx/examples/Minipage.lyx share/lyx/examples/Minipage.lyx
share/lyx/examples/TableExamples.lyx share/lyx/examples/TableExamples.lyx
share/lyx/examples/aa_sample.lyx share/lyx/examples/aa_sample.lyx
@ -125,6 +132,9 @@ share/lyx/examples/aas_sample.lyx
share/lyx/examples/amsart-test.lyx share/lyx/examples/amsart-test.lyx
share/lyx/examples/amsbook-test.lyx share/lyx/examples/amsbook-test.lyx
share/lyx/examples/ca_splash.lyx share/lyx/examples/ca_splash.lyx
share/lyx/examples/chess-article.lyx
share/lyx/examples/chessgame.lyx
share/lyx/examples/currency.lyx
share/lyx/examples/cv.lyx share/lyx/examples/cv.lyx
share/lyx/examples/da_splash.lyx share/lyx/examples/da_splash.lyx
share/lyx/examples/de_beispiel_gelyxt.lyx share/lyx/examples/de_beispiel_gelyxt.lyx
@ -141,20 +151,29 @@ share/lyx/examples/eu_splash.lyx
share/lyx/examples/example_lyxified.lyx share/lyx/examples/example_lyxified.lyx
share/lyx/examples/example_raw.lyx share/lyx/examples/example_raw.lyx
share/lyx/examples/fr_AlignementDecimal.lyx share/lyx/examples/fr_AlignementDecimal.lyx
share/lyx/examples/fr_EtiquetteMath.lyx share/lyx/examples/fr_CV.lyx
share/lyx/examples/fr_ExemplesTableaux.lyx share/lyx/examples/fr_ExemplesTableaux.lyx
share/lyx/examples/fr_ListesPuces.lyx share/lyx/examples/fr_ListesPuces.lyx
share/lyx/examples/fr_Minipage.lyx share/lyx/examples/fr_Minipage.lyx
share/lyx/examples/fr_MultiColonnes.lyx share/lyx/examples/fr_MultiColonnes.lyx
share/lyx/examples/fr_exemple_brut.lyx share/lyx/examples/fr_exemple_brut.lyx
share/lyx/examples/fr_exemple_lyxifie.lyx share/lyx/examples/fr_exemple_lyxifie.lyx
share/lyx/examples/fr_mathed.lyx
share/lyx/examples/fr_splash.lyx share/lyx/examples/fr_splash.lyx
share/lyx/examples/he_example_raw.lyx
share/lyx/examples/he_he_example_lyxified.lyx
share/lyx/examples/he_he_example_raw.lyx
share/lyx/examples/hu_splash.lyx share/lyx/examples/hu_splash.lyx
share/lyx/examples/iecc05.fen
share/lyx/examples/iecc07.fen
share/lyx/examples/iecc12.fen
share/lyx/examples/it_ItemizeBullets.lyx share/lyx/examples/it_ItemizeBullets.lyx
share/lyx/examples/it_splash.lyx share/lyx/examples/it_splash.lyx
share/lyx/examples/landslide.lyx share/lyx/examples/landslide.lyx
share/lyx/examples/linuxdoc_manpage.lyx
share/lyx/examples/listerrors.lyx
share/lyx/examples/mathed.lyx
share/lyx/examples/multicol.lyx share/lyx/examples/multicol.lyx
share/lyx/examples/nl_MathLabeling.lyx
share/lyx/examples/nl_multicol.lyx share/lyx/examples/nl_multicol.lyx
share/lyx/examples/nl_opsommingstekens.lyx share/lyx/examples/nl_opsommingstekens.lyx
share/lyx/examples/nl_splash.lyx share/lyx/examples/nl_splash.lyx
@ -170,12 +189,14 @@ share/lyx/examples/sl_primer_surov.lyx
share/lyx/examples/sl_splash.lyx share/lyx/examples/sl_splash.lyx
share/lyx/examples/splash.lyx share/lyx/examples/splash.lyx
share/lyx/external_templates share/lyx/external_templates
share/lyx/help/Bibtex.hlp
share/lyx/help/Texinfo.hlp
share/lyx/images/amssymb.xpm share/lyx/images/amssymb.xpm
share/lyx/images/banner.xpm share/lyx/images/banner.xpm
share/lyx/images/buffer-close.xpm share/lyx/images/buffer-close.xpm
share/lyx/images/buffer-export_ascii.xpm share/lyx/images/buffer-export_ascii.xpm
share/lyx/images/buffer-export_latex.xpm share/lyx/images/buffer-export_latex.xpm
share/lyx/images/buffer-open.xpm share/lyx/images/buffer-new.xpm
share/lyx/images/buffer-print.xpm share/lyx/images/buffer-print.xpm
share/lyx/images/buffer-update_dvi.xpm share/lyx/images/buffer-update_dvi.xpm
share/lyx/images/buffer-update_ps.xpm share/lyx/images/buffer-update_ps.xpm
@ -183,17 +204,23 @@ share/lyx/images/buffer-view_dvi.xpm
share/lyx/images/buffer-view_ps.xpm share/lyx/images/buffer-view_ps.xpm
share/lyx/images/buffer-write.xpm share/lyx/images/buffer-write.xpm
share/lyx/images/build-program.xpm share/lyx/images/build-program.xpm
share/lyx/images/citation-insert.xpm
share/lyx/images/copy.xpm share/lyx/images/copy.xpm
share/lyx/images/cut.xpm share/lyx/images/cut.xpm
share/lyx/images/depth-next.xpm share/lyx/images/depth-decrement.xpm
share/lyx/images/depth-increment.xpm
share/lyx/images/dialog-tabular-insert.xpm share/lyx/images/dialog-tabular-insert.xpm
share/lyx/images/figure-insert.xpm share/lyx/images/ert-insert.xpm
share/lyx/images/file-open.xpm
share/lyx/images/font-bold.xpm share/lyx/images/font-bold.xpm
share/lyx/images/font-emph.xpm share/lyx/images/font-emph.xpm
share/lyx/images/font-free.xpm share/lyx/images/font-free.xpm
share/lyx/images/font-noun.xpm share/lyx/images/font-noun.xpm
share/lyx/images/font-sans.xpm share/lyx/images/font-sans.xpm
share/lyx/images/footnote-insert.xpm share/lyx/images/footnote-insert.xpm
share/lyx/images/graphics-insert.xpm
share/lyx/images/index-insert.xpm
share/lyx/images/label-insert.xpm
share/lyx/images/layout.xpm share/lyx/images/layout.xpm
share/lyx/images/layout_LaTeX.xpm share/lyx/images/layout_LaTeX.xpm
share/lyx/images/layout_LyX-Code.xpm share/lyx/images/layout_LyX-Code.xpm
@ -202,8 +229,8 @@ share/lyx/images/layout_Section.xpm
share/lyx/images/lyx-quit.xpm share/lyx/images/lyx-quit.xpm
share/lyx/images/lyx.xpm share/lyx/images/lyx.xpm
share/lyx/images/marginalnote-insert.xpm share/lyx/images/marginalnote-insert.xpm
share/lyx/images/marginpar-insert.xpm
share/lyx/images/math-mode.xpm share/lyx/images/math-mode.xpm
share/lyx/images/math-panel.xpm
share/lyx/images/melt.xpm share/lyx/images/melt.xpm
share/lyx/images/paste.xpm share/lyx/images/paste.xpm
share/lyx/images/psnfss1.xpm share/lyx/images/psnfss1.xpm
@ -213,14 +240,15 @@ share/lyx/images/psnfss4.xpm
share/lyx/images/redo.xpm share/lyx/images/redo.xpm
share/lyx/images/standard.xpm share/lyx/images/standard.xpm
share/lyx/images/tabular-insert.xpm share/lyx/images/tabular-insert.xpm
share/lyx/images/tex-mode.xpm
share/lyx/images/undo.xpm share/lyx/images/undo.xpm
share/lyx/images/unknown.xpm share/lyx/images/unknown.xpm
share/lyx/kbd/american-2.kmap share/lyx/kbd/american-2.kmap
share/lyx/kbd/american.kmap share/lyx/kbd/american.kmap
share/lyx/kbd/arabic.kmap share/lyx/kbd/arabic.kmap
share/lyx/kbd/bg-bds-1251.kmap
share/lyx/kbd/brazil.kmap share/lyx/kbd/brazil.kmap
share/lyx/kbd/brazil2.kmap share/lyx/kbd/brazil2.kmap
share/lyx/kbd/cp1251.cdef
share/lyx/kbd/czech-prg.kmap share/lyx/kbd/czech-prg.kmap
share/lyx/kbd/czech.kmap share/lyx/kbd/czech.kmap
share/lyx/kbd/european.kmap share/lyx/kbd/european.kmap
@ -231,6 +259,7 @@ share/lyx/kbd/german-3.kmap
share/lyx/kbd/german.kmap share/lyx/kbd/german.kmap
share/lyx/kbd/greek.kmap share/lyx/kbd/greek.kmap
share/lyx/kbd/hebrew.kmap share/lyx/kbd/hebrew.kmap
share/lyx/kbd/ibm866.cdef
share/lyx/kbd/iso8859-1.cdef share/lyx/kbd/iso8859-1.cdef
share/lyx/kbd/iso8859-15.cdef share/lyx/kbd/iso8859-15.cdef
share/lyx/kbd/iso8859-2.cdef share/lyx/kbd/iso8859-2.cdef
@ -238,7 +267,11 @@ share/lyx/kbd/iso8859-3.cdef
share/lyx/kbd/iso8859-4.cdef share/lyx/kbd/iso8859-4.cdef
share/lyx/kbd/iso8859-7.cdef share/lyx/kbd/iso8859-7.cdef
share/lyx/kbd/iso8859-8.cdef share/lyx/kbd/iso8859-8.cdef
share/lyx/kbd/iso8859-9.cdef
share/lyx/kbd/koi8-r.cdef
share/lyx/kbd/koi8-r.kmap share/lyx/kbd/koi8-r.kmap
share/lyx/kbd/koi8-t.cdef
share/lyx/kbd/koi8-u.cdef
share/lyx/kbd/koi8-u.kmap share/lyx/kbd/koi8-u.kmap
share/lyx/kbd/latvian.kmap share/lyx/kbd/latvian.kmap
share/lyx/kbd/magyar-2.kmap share/lyx/kbd/magyar-2.kmap
@ -277,6 +310,8 @@ share/lyx/layouts/apa.layout
share/lyx/layouts/article.layout share/lyx/layouts/article.layout
share/lyx/layouts/book.layout share/lyx/layouts/book.layout
share/lyx/layouts/broadway.layout share/lyx/layouts/broadway.layout
share/lyx/layouts/chess.layout
share/lyx/layouts/cl2emult.layout
share/lyx/layouts/cv.layout share/lyx/layouts/cv.layout
share/lyx/layouts/db_lyxmacros.inc share/lyx/layouts/db_lyxmacros.inc
share/lyx/layouts/db_stdclass.inc share/lyx/layouts/db_stdclass.inc
@ -291,8 +326,8 @@ share/lyx/layouts/docbook-book.layout
share/lyx/layouts/docbook-chapter.layout share/lyx/layouts/docbook-chapter.layout
share/lyx/layouts/docbook-section.layout share/lyx/layouts/docbook-section.layout
share/lyx/layouts/docbook.layout share/lyx/layouts/docbook.layout
share/lyx/layouts/dtk.layout
share/lyx/layouts/egs.layout share/lyx/layouts/egs.layout
share/lyx/layouts/ejour2.layout
share/lyx/layouts/entcs.layout share/lyx/layouts/entcs.layout
share/lyx/layouts/extarticle.layout share/lyx/layouts/extarticle.layout
share/lyx/layouts/extbook.layout share/lyx/layouts/extbook.layout
@ -304,7 +339,7 @@ share/lyx/layouts/g-brief-en.layout
share/lyx/layouts/heb-article.layout share/lyx/layouts/heb-article.layout
share/lyx/layouts/heb-letter.layout share/lyx/layouts/heb-letter.layout
share/lyx/layouts/hollywood.layout share/lyx/layouts/hollywood.layout
share/lyx/layouts/iletter.layout share/lyx/layouts/ijmpd.layout
share/lyx/layouts/kluwer.layout share/lyx/layouts/kluwer.layout
share/lyx/layouts/latex8.layout share/lyx/layouts/latex8.layout
share/lyx/layouts/letter.layout share/lyx/layouts/letter.layout
@ -314,6 +349,7 @@ share/lyx/layouts/literate-book.layout
share/lyx/layouts/literate-report.layout share/lyx/layouts/literate-report.layout
share/lyx/layouts/literate-scrap.inc share/lyx/layouts/literate-scrap.inc
share/lyx/layouts/llncs.layout share/lyx/layouts/llncs.layout
share/lyx/layouts/ltugboat.layout
share/lyx/layouts/lyxmacros.inc share/lyx/layouts/lyxmacros.inc
share/lyx/layouts/manpage.layout share/lyx/layouts/manpage.layout
share/lyx/layouts/obsolete.inc share/lyx/layouts/obsolete.inc
@ -330,6 +366,7 @@ share/lyx/layouts/scrreprt.layout
share/lyx/layouts/seminar.layout share/lyx/layouts/seminar.layout
share/lyx/layouts/siamltex.layout share/lyx/layouts/siamltex.layout
share/lyx/layouts/slides.layout share/lyx/layouts/slides.layout
share/lyx/layouts/spie.layout
share/lyx/layouts/stdclass.inc share/lyx/layouts/stdclass.inc
share/lyx/layouts/stdlayouts.inc share/lyx/layouts/stdlayouts.inc
share/lyx/layouts/stdletter.inc share/lyx/layouts/stdletter.inc
@ -340,6 +377,7 @@ share/lyx/layouts/stdstruct.inc
share/lyx/layouts/stdtitle.inc share/lyx/layouts/stdtitle.inc
share/lyx/layouts/svjog.layout share/lyx/layouts/svjog.layout
share/lyx/layouts/svjour.inc share/lyx/layouts/svjour.inc
share/lyx/layouts/svprobth.layout
share/lyx/lyxrc.defaults share/lyx/lyxrc.defaults
share/lyx/lyxrc.example share/lyx/lyxrc.example
share/lyx/packages.lst share/lyx/packages.lst
@ -358,37 +396,50 @@ share/lyx/reLyX/Verbatim.pm
share/lyx/reLyX/reLyX.pod share/lyx/reLyX/reLyX.pod
share/lyx/reLyX/reLyXmain.pl share/lyx/reLyX/reLyXmain.pl
share/lyx/reLyX/syntax.default share/lyx/reLyX/syntax.default
share/lyx/scripts/fen2latex.py share/lyx/scripts/TeXFiles.sh
share/lyx/scripts/fen2ascii.py
share/lyx/scripts/fig2pstex.py share/lyx/scripts/fig2pstex.py
share/lyx/scripts/general_command_wrapper.py share/lyx/scripts/general_command_wrapper.py
share/lyx/scripts/listerrors
share/lyx/scripts/pic2ascii.py share/lyx/scripts/pic2ascii.py
share/lyx/scripts/pic2png_eps.py share/lyx/scripts/pic2png_eps.py
share/lyx/scripts/pic2png_eps.sh share/lyx/scripts/pic2png_eps.sh
share/lyx/symbols
share/lyx/templates/IEEEtran.lyx share/lyx/templates/IEEEtran.lyx
share/lyx/templates/aa.lyx share/lyx/templates/aa.lyx
share/lyx/templates/aastex.lyx share/lyx/templates/aastex.lyx
share/lyx/templates/dinbrief.lyx share/lyx/templates/dinbrief.lyx
share/lyx/templates/docbook_template.lyx share/lyx/templates/docbook_article.lyx
share/lyx/templates/g-brief-de.lyx share/lyx/templates/g-brief-de.lyx
share/lyx/templates/g-brief-en.lyx share/lyx/templates/g-brief-en.lyx
share/lyx/templates/hollywood.lyx share/lyx/templates/hollywood.lyx
share/lyx/templates/iletter.lyx share/lyx/templates/ijmpd.lyx
share/lyx/templates/kluwer.lyx share/lyx/templates/kluwer.lyx
share/lyx/templates/latex8.lyx share/lyx/templates/latex8.lyx
share/lyx/templates/letter.lyx share/lyx/templates/letter.lyx
share/lyx/templates/linuxdoctemplate.lyx share/lyx/templates/linuxdoc_article.lyx
share/lyx/templates/revtex.lyx share/lyx/templates/revtex.lyx
share/lyx/templates/revtex4.lyx share/lyx/templates/revtex4.lyx
share/lyx/templates/slides.lyx share/lyx/templates/slides.lyx
share/lyx/tex/broadway.cls share/lyx/tex/broadway.cls
share/lyx/tex/cv.cls share/lyx/tex/cv.cls
share/lyx/tex/ejour2.cls
share/lyx/tex/hollywood.cls share/lyx/tex/hollywood.cls
share/lyx/tex/iletter.cls share/lyx/tex/lyxchess.sty
share/lyx/tex/lyxskak.sty
share/lyx/tex/revtex.cls share/lyx/tex/revtex.cls
share/lyx/textclass.lst share/lyx/textclass.lst
share/lyx/ui/default.ui share/lyx/ui/default.ui
share/lyx/ui/old-default.ui share/lyx/ui/old-default.ui
share/lyx/xfonts/cmex10.pfb
share/lyx/xfonts/cmmi10.pfb
share/lyx/xfonts/cmr10.pfb
share/lyx/xfonts/cmsy10.pfb
share/lyx/xfonts/eufm10.pfb
share/lyx/xfonts/fonts.dir
share/lyx/xfonts/fonts.scale
share/lyx/xfonts/msam10.pfb
share/lyx/xfonts/msbm10.pfb
@dirrm share/lyx/xfonts
@dirrm share/lyx/ui @dirrm share/lyx/ui
@dirrm share/lyx/tex @dirrm share/lyx/tex
@dirrm share/lyx/templates @dirrm share/lyx/templates
@ -398,6 +449,7 @@ share/lyx/ui/old-default.ui
@dirrm share/lyx/layouts @dirrm share/lyx/layouts
@dirrm share/lyx/kbd @dirrm share/lyx/kbd
@dirrm share/lyx/images @dirrm share/lyx/images
@dirrm share/lyx/help
@dirrm share/lyx/examples @dirrm share/lyx/examples
@dirrm share/lyx/doc @dirrm share/lyx/doc
@dirrm share/lyx/clipart @dirrm share/lyx/clipart