rpms/lyx/FC-3 lyx.sh, NONE, 1.1 helpers.sh, 1.1, 1.2 lyx.spec, 1.12, 1.13

Rex Dieter (rdieter) fedora-extras-commits at redhat.com
Fri Feb 17 12:54:29 UTC 2006


Author: rdieter

Update of /cvs/extras/rpms/lyx/FC-3
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv28721

Modified Files:
	helpers.sh lyx.spec 
Added Files:
	lyx.sh 
Log Message:
another missing file



--- NEW FILE lyx.sh ---
#!/bin/bash

if [ -f /etc/lyx/lyx.conf ]; then
 source /etc/lyx/lyx.conf
fi

if [ -f ${HOME}/.lyx/lyx.conf ]; then
 source ${HOME}/.lyx/lyx.conf
fi

if [ -z "${LYX_FRONTEND}" ]; then
  LYX_FRONTEND=qt
fi

# Try LYX_FRONTEND
which lyx-${LYX_FRONTEND} >& /dev/null && \
  exec lyx-${LYX_FRONTEND} ${1+"$@"}

# Fall back to trying lyx-qt, lyx-xforms
for frontend in qt xforms ; do
  which lyx-$frontend >& /dev/null && exec lyx-$frontend ${1+"$@"} ||:
done

# ERROR should not reach this point
exit 1






Index: lyx.spec
===================================================================
RCS file: /cvs/extras/rpms/lyx/FC-3/lyx.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- lyx.spec	17 Feb 2006 12:52:02 -0000	1.12
+++ lyx.spec	17 Feb 2006 12:54:29 -0000	1.13
@@ -2,7 +2,7 @@
 Summary: WYSIWYM (What You See Is What You Mean) document processor
 Name:	 lyx
 Version: 1.3.7 
-Release: 5%{?dist}.1
+Release: 5%{?dist}.2
 
 License: GPL
 Group: 	 Applications/Publishing




More information about the fedora-extras-commits mailing list