aboutsummaryrefslogtreecommitdiff
path: root/print/lyx16
diff options
context:
space:
mode:
Diffstat (limited to 'print/lyx16')
-rw-r--r--print/lyx16/Makefile70
-rw-r--r--print/lyx16/distinfo1
-rw-r--r--print/lyx16/files/patch-autogen.sh32
-rw-r--r--print/lyx16/files/patch-config::ltmain.sh28
-rw-r--r--print/lyx16/files/patch-config::pspell.m420
-rw-r--r--print/lyx16/files/patch-src::FontLoader.C12
-rw-r--r--print/lyx16/files/patch-src::sp_spell.C11
-rw-r--r--print/lyx16/files/xforms.m498
-rw-r--r--print/lyx16/pkg-comment1
-rw-r--r--print/lyx16/pkg-descr10
-rw-r--r--print/lyx16/pkg-plist447
11 files changed, 0 insertions, 730 deletions
diff --git a/print/lyx16/Makefile b/print/lyx16/Makefile
deleted file mode 100644
index 2ab42e3f570a..000000000000
--- a/print/lyx16/Makefile
+++ /dev/null
@@ -1,70 +0,0 @@
-# New ports collection makefile for: lyx
-# Date created: Sa 12 Okt 1996 19:20:51 MET DST
-# Whom: Andreas Klemm <andreas@klemm.gtn.com>
-#
-# $FreeBSD$
-#
-
-PORTNAME= lyx
-PORTVERSION= 1.2.1
-PORTREVISION= 1
-CATEGORIES= print
-MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/ \
- ftp://ftp.sdsc.edu/pub/other/lyx/stable/ \
- ftp://gd.tuwien.ac.at/publishing/tex/lyx/stable/
-
-MAINTAINER= ports@FreeBSD.org
-
-BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \
- latex:${PORTSDIR}/print/teTeX
-LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext \
- forms.1:${PORTSDIR}/x11-toolkits/xforms
-RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 \
- latex:${PORTSDIR}/print/teTeX
-
-USE_XPM= yes
-USE_REINPLACE= yes
-USE_PERL5= yes
-USE_GMAKE= yes
-USE_AUTOMAKE_VER= 15
-AUTOMAKE= ${WRKSRC}/autogen.sh
-AUTOCONF= ${TRUE}
-CONFIGURE_ARGS= --with-extra-lib="${LOCALBASE}/lib" \
- --with-extra-inc="${LOCALBASE}/include"
-MAN1= lyx.1 reLyX.1
-
-.if defined(WITH_ASPELL)
-LIB_DEPENDS+= aspell.15:${PORTSDIR}/textproc/aspell
-CONFIGURE_ARGS+= --with-pspell \
- --with-pspell-lib="${LOCALBASE}/lib" \
- --with-pspell-include="${LOCALBASE}/include"
-.endif
-
-.if defined(WITH_ISPELL)
-RUN_DEPENDS+= ispell:${PORTSDIR}/textproc/ispell
-.endif
-
-pre-everything::
-.if !defined(WITH_ASPELL)
- @${ECHO_MSG}
- @${ECHO_MSG} "If you want to compile with Aspell/Pspell support,"
- @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_ASPELL=yes\""
- @${ECHO_MSG}
-.endif
-
-.if !defined(WITH_ISPELL)
- @${ECHO_MSG}
- @${ECHO_MSG} "If you want to compile with Ispell support,"
- @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_ISPELL=yes\""
- @${ECHO_MSG}
-.endif
-
-post-extract:
- @${CP} -f ${FILESDIR}/xforms.m4 ${WRKSRC}/config
-
-post-patch:
- @${FIND} ${WRKSRC} -name "configure.in" | ${XARGS} ${REINPLACE_CMD} -e \
- 's|AC_CHECK_LIB(c,|AC_CHECK_FUNC(|g ; \
- s|^INSTALL_SCRIPT=|#INSTALL_SCRIPT=|g'
-
-.include <bsd.port.mk>
diff --git a/print/lyx16/distinfo b/print/lyx16/distinfo
deleted file mode 100644
index eeb607bd3043..000000000000
--- a/print/lyx16/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (lyx-1.2.1.tar.gz) = 6797b72d306000bd1579cfea21b3f1cf
diff --git a/print/lyx16/files/patch-autogen.sh b/print/lyx16/files/patch-autogen.sh
deleted file mode 100644
index 9358d3a465e0..000000000000
--- a/print/lyx16/files/patch-autogen.sh
+++ /dev/null
@@ -1,32 +0,0 @@
---- autogen.sh Thu Apr 18 22:11:28 2002
-+++ autogen.sh Fri Jun 28 21:55:35 2002
-@@ -1,9 +1,9 @@
- #!/bin/sh
-
- ACLOCAL=aclocal
--AUTOHEADER=autoheader
-+AUTOHEADER=autoheader213
- AUTOMAKE="automake -a -c --foreign"
--AUTOCONF=autoconf
-+AUTOCONF=autoconf213
- GNUM4=
-
- ACINCLUDE_FILES="lyxinclude.m4 libtool.m4 codeset.m4 gettext.m4 glibc21.m4 iconv.m4 isc-posix.m4 lcmessage.m4 progtest.m4 sigc++.m4 qt2.m4 gtk--.m4 gnome--.m4 gnome.m4 pspell.m4"
-@@ -31,7 +31,7 @@
- echo "done."
-
- # Generate the Makefiles and configure files
--if ( aclocal --version ) </dev/null > /dev/null 2>&1; then
-+if ( $ACLOCAL --version ) </dev/null > /dev/null 2>&1; then
- echo "Building macros..."
- for dir in . lib/reLyX sigc++ ; do
- echo " $dir"
-@@ -43,7 +43,7 @@
- exit
- fi
-
--if ( autoheader --version ) </dev/null > /dev/null 2>&1; then
-+if ( $AUTOHEADER --version ) </dev/null > /dev/null 2>&1; then
- echo "Building config header template..."
- for dir in . sigc++ ; do
- echo " $dir"
diff --git a/print/lyx16/files/patch-config::ltmain.sh b/print/lyx16/files/patch-config::ltmain.sh
deleted file mode 100644
index 29ed1a55df53..000000000000
--- a/print/lyx16/files/patch-config::ltmain.sh
+++ /dev/null
@@ -1,28 +0,0 @@
---- config/ltmain.sh Thu Jan 24 06:28:31 2002
-+++ config/ltmain.sh Fri Jun 28 20:15:12 2002
-@@ -1043,14 +1043,14 @@
- # These systems don't actually have a C library (as such)
- test "X$arg" = "X-lc" && continue
- ;;
-- *-*-openbsd*)
-+ *-*-openbsd* | *-*-freebsd*)
- # Do not include libc due to us having libc/libc_r.
- test "X$arg" = "X-lc" && continue
- ;;
- esac
- elif test "X$arg" = "X-lc_r"; then
- case $host in
-- *-*-openbsd*)
-+ *-*-openbsd* | *-*-freebsd*)
- # Do not include libc_r directly, use -pthread flag.
- continue
- ;;
-@@ -2441,7 +2441,7 @@
- *-*-netbsd*)
- # Don't link with libc until the a.out ld.so is fixed.
- ;;
-- *-*-openbsd*)
-+ *-*-openbsd* | *-*-freebsd*)
- # Do not include libc due to us having libc/libc_r.
- ;;
- *)
diff --git a/print/lyx16/files/patch-config::pspell.m4 b/print/lyx16/files/patch-config::pspell.m4
deleted file mode 100644
index 31bfdce0d433..000000000000
--- a/print/lyx16/files/patch-config::pspell.m4
+++ /dev/null
@@ -1,20 +0,0 @@
---- config/pspell.m4.orig Thu Jun 20 21:03:56 2002
-+++ config/pspell.m4 Wed Oct 2 22:10:21 2002
-@@ -12,7 +12,7 @@
- fi
- ])
-
-- AC_ARG_WITH(pspell-includes, [ --with-pspell-include where the pspell.h is located],
-+ AC_ARG_WITH(pspell-include, [ --with-pspell-include where the pspell.h is located],
- pspell_use_include="$withval",
- pspell_use_include=NONE)
-
-@@ -22,7 +22,7 @@
- AC_FIND_FILE(pspell/pspell.h,$pspell_includes,pspell_use_include)
- fi
-
-- AC_ARG_WITH(pspell-libs, [ --with-pspell-lib where the libpspell.a is located],
-+ AC_ARG_WITH(pspell-lib, [ --with-pspell-lib where the libpspell.a is located],
- pspell_use_lib="$withval",
- pspell_use_lib=NONE)
-
diff --git a/print/lyx16/files/patch-src::FontLoader.C b/print/lyx16/files/patch-src::FontLoader.C
deleted file mode 100644
index 5073b8740fb1..000000000000
--- a/print/lyx16/files/patch-src::FontLoader.C
+++ /dev/null
@@ -1,12 +0,0 @@
---- src/FontLoader.C.orig Fri Mar 22 02:25:07 2002
-+++ src/FontLoader.C Fri Aug 23 03:38:09 2002
-@@ -300,7 +300,8 @@
- if (font == "fixed") {
- lyxerr << "We're doomed. Can't get 'fixed' font." << endl;
- } else {
-- lyxerr << "Could not get font. Using 'fixed'." << endl;
-+ lyxerr << "Could not get font '" << font.c_str() <<
-+ "'. Using 'fixed'." << endl;
- fs = XLoadQueryFont(GUIRunTime::x11Display(), "fixed");
- }
- } else if (lyxerr.debugging(Debug::FONT)) {
diff --git a/print/lyx16/files/patch-src::sp_spell.C b/print/lyx16/files/patch-src::sp_spell.C
deleted file mode 100644
index 32da4ce945b5..000000000000
--- a/print/lyx16/files/patch-src::sp_spell.C
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/sp_spell.C.orig Mon Aug 12 19:25:50 2002
-+++ src/sp_spell.C Fri Aug 23 03:38:09 2002
-@@ -379,7 +379,7 @@
- // Configure provides us with macros which are supposed to do
- // the right typecast.
- retval = select(SELECT_TYPE_ARG1 (pipeout[0]+1),
-- SELECT_TYPE_ARG234 (&infds),
-+ &infds,
- 0,
- 0,
- SELECT_TYPE_ARG5 (&tv));
diff --git a/print/lyx16/files/xforms.m4 b/print/lyx16/files/xforms.m4
deleted file mode 100644
index bbfc6c7d0c9f..000000000000
--- a/print/lyx16/files/xforms.m4
+++ /dev/null
@@ -1,98 +0,0 @@
-dnl some macros to test for xforms-related functionality -*- sh -*-
-
-dnl Usage LYX_PATH_XFORMS: Checks for xforms library and flags
-dnl If it is found, the variable XFORMS_LIB is set to the relevant -l flags,
-dnl and FORMS_H_LOCATION / FLIMAGE_H_LOCATION is also set
-AC_DEFUN(LYX_PATH_XFORMS,[
-AC_REQUIRE([LYX_PATH_XPM])
-
-AC_CHECK_LIB(forms, fl_initialize, XFORMS_LIB="-lforms",
- [AC_CHECK_LIB(xforms, fl_initialize, XFORMS_LIB="-lxforms",
- [LYX_LIB_ERROR(libforms or libxforms,xforms)], $XPM_LIB)], $XPM_LIB)
-AC_SUBST(XFORMS_LIB)
-
-### Check for xforms headers
-lyx_cv_forms_h_location="<forms.h>"
-AC_CHECK_HEADER(X11/forms.h,[
- ac_cv_header_forms_h=yes
- lyx_cv_forms_h_location="<X11/forms.h>"],[
-AC_CHECK_HEADER(forms.h,[],[
-LYX_LIB_ERROR(forms.h,forms)])])
-AC_DEFINE_UNQUOTED(FORMS_H_LOCATION,$lyx_cv_forms_h_location,
- [define this to the location of forms.h to be used with #include, e.g. <forms.h>])
-
-if test $ac_cv_header_forms_h = yes; then
- AC_CACHE_CHECK([xforms header version],lyx_cv_xfversion,
- [ cat > conftest.$ac_ext <<EOF
-#line __oline__ "configure"
-#include "confdefs.h"
-
-#include FORMS_H_LOCATION
-#if ! defined(FL_INCLUDE_VERSION)
-"%%%"(unknown)"%%%"
-#else
-"%%%"FL_VERSION.FL_REVISION.FL_FIXLEVEL"%%%"
-#endif
-EOF
-lyx_cv_xfversion=`(eval "$ac_cpp conftest.$ac_ext") 2>&5 | \
- grep '^"%%%"' 2>/dev/null | \
- sed -e 's/^"%%%"\(.*\)"%%%"/\1/' -e 's/ //g'`
-rm -f conftest*])
-
-XFORMS_VERSION=$lyx_cv_xfversion
-case "$lyx_cv_xfversion" in
- "(unknown)"|0.8[1-7]*)
- LYX_ERROR(dnl
-Version $lyx_cv_xfversion of xforms is not compatible with LyX.
- This version of LyX works best with versions 0.88 (recommended) and later.) ;;
- 0.88*) ;;
- 0.89[01234]) LYX_WARNING(dnl
-LyX should work ok with version $lyx_cv_xfversion of xforms[,] but
-it is an unproven version and might still have some bugs. You should
-probably use version 0.89.6 (or 0.88) instead) ;;
- 0.89*) ;;
- 0.9999*) ;;
- 1.0*) ;;
- *) LYX_WARNING(dnl
-Version $lyx_cv_xfversion of xforms might not be compatible with LyX[,]
- since it is newer than 0.89. You might have slight problems with it.);;
-esac
-fi
-])
-
-
-
-dnl Check whether the xforms library has a viable image loader
-AC_DEFUN(LYX_USE_XFORMS_IMAGE_LOADER,
-[AC_REQUIRE([LYX_PATH_XFORMS])
-save_LIBS=$LIBS
-LIBS="$XFORMS_LIB $XPM_LIB $LIBS"
-lyx_use_xforms_image_loader=no
-AC_LANG_SAVE
-AC_LANG_C
-
-AC_CHECK_LIB(jpeg, jpeg_read_header,
- [XFORMS_IMAGE_LIB=-ljpeg
- LIBS="$LIBS -ljpeg"])
-AC_SEARCH_LIBS(flimage_dup, flimage,
- [lyx_use_xforms_image_loader=yes
- if test "$ac_cv_search_flimage_dup" != "none required" ; then
- XFORMS_IMAGE_LIB="-lflimage $XFORMS_IMAGE_LIB"
- LIBS="$XFORMS_IMAGE_LIB $LIBS"
- fi])
-AC_SUBST(XFORMS_IMAGE_LIB)
-
-if test $lyx_use_xforms_image_loader = yes ; then
- lyx_flags="$lyx_flags xforms-image-loader"
- AC_DEFINE(USE_XFORMS_IMAGE_LOADER, 1,
- [Define if you want to use xforms built-in image loader])
- AC_CHECK_FUNCS(flimage_enable_ps flimage_enable_jpeg)
- AC_CHECK_HEADERS(flimage.h X11/flimage.h, break)
-fi
-
-### If the gui cannot load images itself, then we default to the
-### very simple one in graphics/GraphicsImageXPM.[Ch]
-AM_CONDITIONAL(USE_BASIC_IMAGE_LOADER,
- test $lyx_use_xforms_image_loader = no)
-AC_LANG_RESTORE
-LIBS=$save_LIBS])
diff --git a/print/lyx16/pkg-comment b/print/lyx16/pkg-comment
deleted file mode 100644
index 2af405a8f9ea..000000000000
--- a/print/lyx16/pkg-comment
+++ /dev/null
@@ -1 +0,0 @@
-Document processor interfaced with LaTeX (nearly WYSIWYG)
diff --git a/print/lyx16/pkg-descr b/print/lyx16/pkg-descr
deleted file mode 100644
index 1e258d2b80eb..000000000000
--- a/print/lyx16/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-LyX is a document processor interfaced with LaTeX, which gives both the
-ease-of-use of a wordprocessor, and the flexibility and power of
-LaTeX.
-
-Quasi-WYSIWYG interface, many LaTeX styles and layouts automatically
-generated. Speeds up learning LaTeX and makes complicated layouts
-easy and intuitive. New features include spell-checking, international
-character support, WYSIWYG graphics, tables, and equations.
-
-WWW: http://www.lyx.org/
diff --git a/print/lyx16/pkg-plist b/print/lyx16/pkg-plist
deleted file mode 100644
index 75ad1157c54f..000000000000
--- a/print/lyx16/pkg-plist
+++ /dev/null
@@ -1,447 +0,0 @@
-bin/lyx
-bin/noweb2lyx
-bin/reLyX
-share/locale/bg/LC_MESSAGES/lyx.mo
-share/locale/ca/LC_MESSAGES/lyx.mo
-share/locale/cs/LC_MESSAGES/lyx.mo
-share/locale/da/LC_MESSAGES/lyx.mo
-share/locale/de/LC_MESSAGES/lyx.mo
-share/locale/es/LC_MESSAGES/lyx.mo
-share/locale/eu/LC_MESSAGES/lyx.mo
-share/locale/fi/LC_MESSAGES/lyx.mo
-share/locale/fr/LC_MESSAGES/lyx.mo
-share/locale/he/LC_MESSAGES/lyx.mo
-share/locale/hu/LC_MESSAGES/lyx.mo
-share/locale/it/LC_MESSAGES/lyx.mo
-share/locale/nl/LC_MESSAGES/lyx.mo
-share/locale/no/LC_MESSAGES/lyx.mo
-share/locale/pl/LC_MESSAGES/lyx.mo
-share/locale/pt/LC_MESSAGES/lyx.mo
-share/locale/ro/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/sv/LC_MESSAGES/lyx.mo
-share/locale/tr/LC_MESSAGES/lyx.mo
-share/locale/wa/LC_MESSAGES/lyx.mo
-share/lyx/CREDITS
-share/lyx/bind/broadway.bind
-share/lyx/bind/cua.bind
-share/lyx/bind/cyrkeys.bind
-share/lyx/bind/de_menus.bind
-share/lyx/bind/emacs.bind
-share/lyx/bind/fi_menus.bind
-share/lyx/bind/greekkeys.bind
-share/lyx/bind/hollywood.bind
-share/lyx/bind/latinkeys.bind
-share/lyx/bind/math.bind
-share/lyx/bind/menus.bind
-share/lyx/bind/pt_menus.bind
-share/lyx/bind/sciword.bind
-share/lyx/bind/sv_menus.bind
-share/lyx/bind/xemacs.bind
-share/lyx/chkconfig.ltx
-share/lyx/clipart/platypus.eps
-share/lyx/configure
-share/lyx/configure.cmd
-share/lyx/doc/Customization.lyx
-share/lyx/doc/DocStyle.lyx
-share/lyx/doc/Extended.lyx
-share/lyx/doc/FAQ.lyx
-share/lyx/doc/Intro.lyx
-share/lyx/doc/LaTeXConfig.lyx
-share/lyx/doc/LaTeXConfig.lyx.in
-share/lyx/doc/LyXConfig.lyx.in
-share/lyx/doc/Reference.lyx
-share/lyx/doc/TOC.lyx
-share/lyx/doc/Tutorial.lyx
-share/lyx/doc/UserGuide.lyx
-share/lyx/doc/cs_TOC.lyx
-share/lyx/doc/cs_Tutorial.lyx
-share/lyx/doc/da_Intro.lyx
-share/lyx/doc/da_TOC.lyx
-share/lyx/doc/de_Customization.lyx
-share/lyx/doc/de_Extended.lyx
-share/lyx/doc/de_FAQ.lyx
-share/lyx/doc/de_Intro.lyx
-share/lyx/doc/de_TOC.lyx
-share/lyx/doc/de_Tutorial.lyx
-share/lyx/doc/de_UserGuide.lyx
-share/lyx/doc/es_Intro.lyx
-share/lyx/doc/es_TOC.lyx
-share/lyx/doc/es_Tutorial.lyx
-share/lyx/doc/escher-lsd.eps
-share/lyx/doc/eu_Intro.lyx
-share/lyx/doc/eu_TOC.lyx
-share/lyx/doc/eu_Tutorial.lyx
-share/lyx/doc/fr_Customization.lyx
-share/lyx/doc/fr_Extended.lyx
-share/lyx/doc/fr_FAQ.lyx
-share/lyx/doc/fr_Intro.lyx
-share/lyx/doc/fr_TOC.lyx
-share/lyx/doc/fr_Tutorial.lyx
-share/lyx/doc/fr_UserGuide.lyx
-share/lyx/doc/he_Intro.lyx
-share/lyx/doc/he_TOC.lyx
-share/lyx/doc/hu_Intro.lyx
-share/lyx/doc/hu_TOC.lyx
-share/lyx/doc/it_Customization.lyx
-share/lyx/doc/it_Intro.lyx
-share/lyx/doc/it_TOC.lyx
-share/lyx/doc/it_Tutorial.lyx
-share/lyx/doc/it_UserGuide.lyx
-share/lyx/doc/mobius.eps
-share/lyx/doc/nl_Intro.lyx
-share/lyx/doc/nl_TOC.lyx
-share/lyx/doc/nl_Tutorial.lyx
-share/lyx/doc/pl_Intro.lyx
-share/lyx/doc/pl_TOC.lyx
-share/lyx/doc/pl_Tutorial.lyx
-share/lyx/doc/platypus.eps
-share/lyx/doc/pt_Intro.lyx
-share/lyx/doc/pt_TOC.lyx
-share/lyx/doc/pt_Tutorial.lyx
-share/lyx/doc/ro_Intro.lyx
-share/lyx/doc/ro_TOC.lyx
-share/lyx/doc/ro_splash.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_TOC.lyx
-share/lyx/doc/sl_Tutorial.lyx
-share/lyx/doc/sv_Intro.lyx
-share/lyx/doc/sv_TOC.lyx
-share/lyx/doc/sv_Tutorial.lyx
-share/lyx/encodings
-share/lyx/examples/Foils.lyx
-share/lyx/examples/ItemizeBullets.lyx
-share/lyx/examples/Literate.lyx
-share/lyx/examples/Minipage.lyx
-share/lyx/examples/TableExamples.lyx
-share/lyx/examples/aa_sample.lyx
-share/lyx/examples/aas_sample.lyx
-share/lyx/examples/amsart-test.lyx
-share/lyx/examples/amsbook-test.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/da_splash.lyx
-share/lyx/examples/de_beispiel_gelyxt.lyx
-share/lyx/examples/de_beispiel_roh.lyx
-share/lyx/examples/de_splash.lyx
-share/lyx/examples/decimal.lyx
-share/lyx/examples/docbook_article.lyx
-share/lyx/examples/es_ejemplo_con_lyx.lyx
-share/lyx/examples/es_ejemplo_sin_lyx.lyx
-share/lyx/examples/es_splash.lyx
-share/lyx/examples/eu_adibide_gordina.lyx
-share/lyx/examples/eu_adibide_lyx-atua.lyx
-share/lyx/examples/eu_splash.lyx
-share/lyx/examples/example_lyxified.lyx
-share/lyx/examples/example_raw.lyx
-share/lyx/examples/fr_AlignementDecimal.lyx
-share/lyx/examples/fr_CV.lyx
-share/lyx/examples/fr_ExemplesTableaux.lyx
-share/lyx/examples/fr_ListesPuces.lyx
-share/lyx/examples/fr_Minipage.lyx
-share/lyx/examples/fr_MultiColonnes.lyx
-share/lyx/examples/fr_exemple_brut.lyx
-share/lyx/examples/fr_exemple_lyxifie.lyx
-share/lyx/examples/fr_mathed.lyx
-share/lyx/examples/fr_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_splash.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/nl_multicol.lyx
-share/lyx/examples/nl_opsommingstekens.lyx
-share/lyx/examples/nl_splash.lyx
-share/lyx/examples/nl_voorbeeld_ruw.lyx
-share/lyx/examples/nl_voorbeeld_verlyxt.lyx
-share/lyx/examples/noweb2lyx.lyx
-share/lyx/examples/pl_splash.lyx
-share/lyx/examples/pt_splash.lyx
-share/lyx/examples/ru_splash.lyx
-share/lyx/examples/script_form.lyx
-share/lyx/examples/sl_primer_lyxan.lyx
-share/lyx/examples/sl_primer_surov.lyx
-share/lyx/examples/sl_splash.lyx
-share/lyx/examples/splash.lyx
-share/lyx/external_templates
-share/lyx/help/Bibtex.hlp
-share/lyx/help/Texinfo.hlp
-share/lyx/images/amssymb.xpm
-share/lyx/images/banner.xpm
-share/lyx/images/buffer-close.xpm
-share/lyx/images/buffer-export_ascii.xpm
-share/lyx/images/buffer-export_latex.xpm
-share/lyx/images/buffer-new.xpm
-share/lyx/images/buffer-print.xpm
-share/lyx/images/buffer-update_dvi.xpm
-share/lyx/images/buffer-update_ps.xpm
-share/lyx/images/buffer-view_dvi.xpm
-share/lyx/images/buffer-view_ps.xpm
-share/lyx/images/buffer-write.xpm
-share/lyx/images/build-program.xpm
-share/lyx/images/citation-insert.xpm
-share/lyx/images/copy.xpm
-share/lyx/images/cut.xpm
-share/lyx/images/depth-decrement.xpm
-share/lyx/images/depth-increment.xpm
-share/lyx/images/dialog-tabular-insert.xpm
-share/lyx/images/ert-insert.xpm
-share/lyx/images/file-open.xpm
-share/lyx/images/font-bold.xpm
-share/lyx/images/font-emph.xpm
-share/lyx/images/font-free.xpm
-share/lyx/images/font-noun.xpm
-share/lyx/images/font-sans.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_LaTeX.xpm
-share/lyx/images/layout_LyX-Code.xpm
-share/lyx/images/layout_Scrap.xpm
-share/lyx/images/layout_Section.xpm
-share/lyx/images/lyx-quit.xpm
-share/lyx/images/lyx.xpm
-share/lyx/images/marginalnote-insert.xpm
-share/lyx/images/math-mode.xpm
-share/lyx/images/math-panel.xpm
-share/lyx/images/melt.xpm
-share/lyx/images/paste.xpm
-share/lyx/images/psnfss1.xpm
-share/lyx/images/psnfss2.xpm
-share/lyx/images/psnfss3.xpm
-share/lyx/images/psnfss4.xpm
-share/lyx/images/redo.xpm
-share/lyx/images/standard.xpm
-share/lyx/images/tabular-insert.xpm
-share/lyx/images/undo.xpm
-share/lyx/images/unknown.xpm
-share/lyx/kbd/american-2.kmap
-share/lyx/kbd/american.kmap
-share/lyx/kbd/arabic.kmap
-share/lyx/kbd/bg-bds-1251.kmap
-share/lyx/kbd/brazil.kmap
-share/lyx/kbd/brazil2.kmap
-share/lyx/kbd/cp1251.cdef
-share/lyx/kbd/czech-prg.kmap
-share/lyx/kbd/czech.kmap
-share/lyx/kbd/european.kmap
-share/lyx/kbd/francais.kmap
-share/lyx/kbd/french.kmap
-share/lyx/kbd/german-2.kmap
-share/lyx/kbd/german-3.kmap
-share/lyx/kbd/german.kmap
-share/lyx/kbd/greek.kmap
-share/lyx/kbd/hebrew.kmap
-share/lyx/kbd/ibm866.cdef
-share/lyx/kbd/iso8859-1.cdef
-share/lyx/kbd/iso8859-15.cdef
-share/lyx/kbd/iso8859-2.cdef
-share/lyx/kbd/iso8859-3.cdef
-share/lyx/kbd/iso8859-4.cdef
-share/lyx/kbd/iso8859-7.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-t.cdef
-share/lyx/kbd/koi8-u.cdef
-share/lyx/kbd/koi8-u.kmap
-share/lyx/kbd/latvian.kmap
-share/lyx/kbd/magyar-2.kmap
-share/lyx/kbd/magyar-3.kmap
-share/lyx/kbd/magyar.kmap
-share/lyx/kbd/null.kmap
-share/lyx/kbd/polish.kmap
-share/lyx/kbd/portuges.kmap
-share/lyx/kbd/romanian.kmap
-share/lyx/kbd/serbian.kmap
-share/lyx/kbd/serbocroatian.kmap
-share/lyx/kbd/sf.kmap
-share/lyx/kbd/sg.kmap
-share/lyx/kbd/slovak.kmap
-share/lyx/kbd/slovene.kmap
-share/lyx/kbd/thai-kedmanee.kmap
-share/lyx/kbd/tis620-0.cdef
-share/lyx/kbd/transilvanian.kmap
-share/lyx/kbd/turkish-f.kmap
-share/lyx/kbd/turkish.kmap
-share/lyx/languages
-share/lyx/layouts/IEEEtran.layout
-share/lyx/layouts/aa.layout
-share/lyx/layouts/aapaper.inc
-share/lyx/layouts/aapaper.layout
-share/lyx/layouts/aastex.layout
-share/lyx/layouts/amsart-plain.layout
-share/lyx/layouts/amsart-seq.layout
-share/lyx/layouts/amsart.layout
-share/lyx/layouts/amsbook.layout
-share/lyx/layouts/amsdefs.inc
-share/lyx/layouts/amsmaths-plain.inc
-share/lyx/layouts/amsmaths-seq.inc
-share/lyx/layouts/amsmaths.inc
-share/lyx/layouts/apa.layout
-share/lyx/layouts/article.layout
-share/lyx/layouts/book.layout
-share/lyx/layouts/broadway.layout
-share/lyx/layouts/chess.layout
-share/lyx/layouts/cl2emult.layout
-share/lyx/layouts/cv.layout
-share/lyx/layouts/db_lyxmacros.inc
-share/lyx/layouts/db_stdclass.inc
-share/lyx/layouts/db_stdlayouts.inc
-share/lyx/layouts/db_stdlists.inc
-share/lyx/layouts/db_stdsections.inc
-share/lyx/layouts/db_stdstarsections.inc
-share/lyx/layouts/db_stdstruct.inc
-share/lyx/layouts/db_stdtitle.inc
-share/lyx/layouts/dinbrief.layout
-share/lyx/layouts/docbook-book.layout
-share/lyx/layouts/docbook-chapter.layout
-share/lyx/layouts/docbook-section.layout
-share/lyx/layouts/docbook.layout
-share/lyx/layouts/dtk.layout
-share/lyx/layouts/egs.layout
-share/lyx/layouts/entcs.layout
-share/lyx/layouts/extarticle.layout
-share/lyx/layouts/extbook.layout
-share/lyx/layouts/extletter.layout
-share/lyx/layouts/extreport.layout
-share/lyx/layouts/foils.layout
-share/lyx/layouts/g-brief-de.layout
-share/lyx/layouts/g-brief-en.layout
-share/lyx/layouts/heb-article.layout
-share/lyx/layouts/heb-letter.layout
-share/lyx/layouts/hollywood.layout
-share/lyx/layouts/kluwer.layout
-share/lyx/layouts/latex8.layout
-share/lyx/layouts/letter.layout
-share/lyx/layouts/linuxdoc.layout
-share/lyx/layouts/literate-article.layout
-share/lyx/layouts/literate-book.layout
-share/lyx/layouts/literate-report.layout
-share/lyx/layouts/literate-scrap.inc
-share/lyx/layouts/llncs.layout
-share/lyx/layouts/ltugboat.layout
-share/lyx/layouts/lyxmacros.inc
-share/lyx/layouts/manpage.layout
-share/lyx/layouts/obsolete.inc
-share/lyx/layouts/paper.layout
-share/lyx/layouts/report.layout
-share/lyx/layouts/revtex.layout
-share/lyx/layouts/revtex4.layout
-share/lyx/layouts/scrartcl.layout
-share/lyx/layouts/scrbook.layout
-share/lyx/layouts/scrclass.inc
-share/lyx/layouts/scrlettr.layout
-share/lyx/layouts/scrmacros.inc
-share/lyx/layouts/scrreprt.layout
-share/lyx/layouts/seminar.layout
-share/lyx/layouts/siamltex.layout
-share/lyx/layouts/slides.layout
-share/lyx/layouts/spie.layout
-share/lyx/layouts/stdclass.inc
-share/lyx/layouts/stdlayouts.inc
-share/lyx/layouts/stdletter.inc
-share/lyx/layouts/stdlists.inc
-share/lyx/layouts/stdsections.inc
-share/lyx/layouts/stdstarsections.inc
-share/lyx/layouts/stdstruct.inc
-share/lyx/layouts/stdtitle.inc
-share/lyx/layouts/svjog.layout
-share/lyx/layouts/svjour.inc
-share/lyx/layouts/svprobth.layout
-share/lyx/lyxrc.defaults
-share/lyx/lyxrc.example
-share/lyx/packages.lst
-share/lyx/reLyX/BUGS
-share/lyx/reLyX/BasicLyX.pm
-share/lyx/reLyX/CHANGES
-share/lyx/reLyX/CleanTeX.pm
-share/lyx/reLyX/LastLyX.pm
-share/lyx/reLyX/MakePreamble.pm
-share/lyx/reLyX/README
-share/lyx/reLyX/ReadCommands.pm
-share/lyx/reLyX/RelyxFigure.pm
-share/lyx/reLyX/RelyxTable.pm
-share/lyx/reLyX/Text/TeX.pm
-share/lyx/reLyX/Verbatim.pm
-share/lyx/reLyX/reLyX.pod
-share/lyx/reLyX/reLyXmain.pl
-share/lyx/reLyX/syntax.default
-share/lyx/scripts/TeXFiles.sh
-share/lyx/scripts/fen2ascii.py
-share/lyx/scripts/fig2pstex.py
-share/lyx/scripts/general_command_wrapper.py
-share/lyx/scripts/listerrors
-share/lyx/scripts/pic2ascii.py
-share/lyx/scripts/pic2png_eps.py
-share/lyx/scripts/pic2png_eps.sh
-share/lyx/symbols
-share/lyx/templates/IEEEtran.lyx
-share/lyx/templates/aa.lyx
-share/lyx/templates/aastex.lyx
-share/lyx/templates/dinbrief.lyx
-share/lyx/templates/docbook_article.lyx
-share/lyx/templates/g-brief-de.lyx
-share/lyx/templates/g-brief-en.lyx
-share/lyx/templates/hollywood.lyx
-share/lyx/templates/kluwer.lyx
-share/lyx/templates/latex8.lyx
-share/lyx/templates/letter.lyx
-share/lyx/templates/linuxdoc_article.lyx
-share/lyx/templates/revtex.lyx
-share/lyx/templates/revtex4.lyx
-share/lyx/templates/slides.lyx
-share/lyx/tex/broadway.cls
-share/lyx/tex/cv.cls
-share/lyx/tex/hollywood.cls
-share/lyx/tex/lyxchess.sty
-share/lyx/tex/lyxskak.sty
-share/lyx/tex/revtex.cls
-share/lyx/textclass.lst
-share/lyx/ui/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/tex
-@dirrm share/lyx/templates
-@dirrm share/lyx/scripts
-@dirrm share/lyx/reLyX/Text
-@dirrm share/lyx/reLyX
-@dirrm share/lyx/layouts
-@dirrm share/lyx/kbd
-@dirrm share/lyx/images
-@dirrm share/lyx/help
-@dirrm share/lyx/examples
-@dirrm share/lyx/doc
-@dirrm share/lyx/clipart
-@dirrm share/lyx/bind
-@dirrm share/lyx