mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
1a01cb550c
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6214 a592a061-630c-0410-9148-cb99ea01b6c8
109 lines
2.8 KiB
RPMSpec
109 lines
2.8 KiB
RPMSpec
%define frontend @RPM_FRONTEND@
|
|
%define frontdep @RPM_FRONTEND_DEPS@
|
|
|
|
Summary: A WYSIWYM (What You See Is What You Mean) frontend to LaTeX
|
|
Name: @PACKAGE@
|
|
Version: @VERSION@
|
|
Release: 1_%{frontend}
|
|
Copyright: see COPYING file
|
|
Group: Applications/Publishing
|
|
URL: http://www.lyx.org/
|
|
Packager: Kayvan A. Sylvan <kayvan@sylvan.com>
|
|
Source: ftp://ftp.lyx.org/pub/lyx/stable/%{name}-%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
Icon: %{name}.xpm
|
|
Prefix: %{_prefix}
|
|
Requires: %{frontdep}, tetex-xdvi, tetex, tetex-latex
|
|
Obsoletes: tetex-lyx
|
|
|
|
%description
|
|
LyX is a modern approach to writing documents which breaks with the
|
|
obsolete "typewriter paradigm" of most other document preparation
|
|
systems.
|
|
|
|
It is designed for people who want professional quality output
|
|
with a minimum of time and effort, without becoming specialists in
|
|
typesetting.
|
|
|
|
The major innovation in LyX is WYSIWYM (What You See Is What You Mean).
|
|
That is, the author focuses on content, not on the details of formatting.
|
|
This allows for greater productivity, and leaves the final typesetting
|
|
to the backends (like LaTeX) that are specifically designed for the task.
|
|
|
|
With LyX, the author can concentrate on the contents of his writing,
|
|
and let the computer take care of the rest.
|
|
|
|
This is LyX built with the %{frontend} frontend.
|
|
|
|
%prep
|
|
%setup
|
|
|
|
%build
|
|
unset LINGUAS || true
|
|
./configure --with-frontend=%{frontend} --prefix=%{_prefix} \
|
|
--mandir=%{_mandir} --bindir=%{_bindir} --datadir=%{_datadir} \
|
|
--without-warnings --disable-debug --enable-optimization=-O2
|
|
make
|
|
|
|
%install
|
|
unset LINGUAS || true
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
install -d -m 755 ${RPM_BUILD_ROOT}
|
|
make DESTDIR=${RPM_BUILD_ROOT} install
|
|
gzip -f9 ${RPM_BUILD_ROOT}%{_mandir}/man?/*
|
|
|
|
#
|
|
# Set up the lyx-specific class files where TeX can see them
|
|
#
|
|
TEXMF=%{_datadir}/texmf
|
|
mkdir -p ${RPM_BUILD_ROOT}${TEXMF}/tex/latex
|
|
mv ${RPM_BUILD_ROOT}%{_datadir}/%{name}/tex \
|
|
${RPM_BUILD_ROOT}/${TEXMF}/tex/latex/%{name}
|
|
|
|
#
|
|
# Miscellaneous files
|
|
#
|
|
cp -a lib/images/%{name}.xpm ${RPM_BUILD_ROOT}%{_datadir}/%{name}/images/
|
|
cp lib/reLyX/README README.reLyX
|
|
|
|
%clean
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
%post
|
|
# Make TeX understand where LyX-specific packages are
|
|
texhash
|
|
|
|
# Before configuring lyx for the local system
|
|
# PATH needs to be imported
|
|
if [ -f /etc/profile ]; then
|
|
. /etc/profile
|
|
fi
|
|
#
|
|
# Now configure LyX
|
|
#
|
|
echo "Configuring LyX for your system..."
|
|
cd %{_datadir}/%{name}
|
|
./configure --srcdir
|
|
|
|
# Fix reLyX perl program if the prefix is non-standard
|
|
if [ "%{_prefix}" != "/usr" ]
|
|
then
|
|
perl -pi -e "s!/usr/share/%{name}!%{_datadir}/%{name}!" %{_bindir}/reLyX
|
|
fi
|
|
|
|
%postun
|
|
# Fix the TeX file hash
|
|
#
|
|
texhash
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc ABOUT-NLS ANNOUNCE COPYING
|
|
%doc README UPGRADING ChangeLog NEWS
|
|
%doc lib/CREDITS README.reLyX
|
|
%{_bindir}/*
|
|
%{_mandir}/man?/*
|
|
%{_datadir}/locale/*/LC_MESSAGES/*
|
|
%{_datadir}/%{name}
|
|
%{_datadir}/texmf/tex/latex/%{name}
|