- partial rewrite of the find & replace feature. This should solve most of the performance problems - new option `keep aspect ratio' in graphics dialog - revert to the old behaviour when creating new floats (figure, table...): the empty paragraph in the float now is a caption. It seems that 1.2.0 behaviour was confusing too many people - it is now possible to set the float placement parameters to "document defaults" - when the cursor is inside a collapsible inset, `Edit>Open/close float' will leave it after the inset after closing it (this should help entering of ERT insets) - update Finnish, Danish, French and Russian localizations - update Tutorial to 1.2.x features - better support for entering Cyrillic and Greek alphabets - cleanup shortcuts for section layouts. Starred versions are now obtained by prepending a * to the section number (M-p asterisk 0, ..., M-p asterisk 6) - add keyboard shortcuts to the Documents menu - support the numpad direction keys as equivalent to normal cursor keys - it is now possible to specify a non-existent file name on the command line and have this file created for you - new class cl2emult; update template for IEEEtran; small update to heb-article and hollywood textclasses
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.46 2002/08/23 09:08:08 martti Exp $
|
|
# FreeBSD Id: Makefile,v 1.14 1998/02/14 16:46:50 andreas Exp
|
|
#
|
|
|
|
DISTNAME= lyx-1.2.1
|
|
PKGNAME= lyx-1.2.1
|
|
CATEGORIES= print
|
|
MASTER_SITES= ftp://ftp.lyx.org/pub/lyx/stable/ \
|
|
ftp://gd.tuwien.ac.at/publishing/tex/lyx/stable/ \
|
|
ftp://ftp.sdsc.edu/pub/other/lyx/stable/
|
|
|
|
MAINTAINER= martti@netbsd.org
|
|
HOMEPAGE= http://www.lyx.org/
|
|
COMMENT= Graphical frontend for LaTeX (nearly WYSIWYG)
|
|
|
|
DEPENDS= ispell-base-[0-9]*:../../textproc/ispell-base
|
|
DEPENDS+= teTeX>=1.0.6:../../print/teTeX
|
|
DEPENDS+= jpeg-6b:../../graphics/jpeg
|
|
DEPENDS+= xforms>=0.9999:../../x11/xforms
|
|
|
|
GCC_VERSION!= gcc --version
|
|
.if (${GCC_VERSION:C/-.*$$//} == egcs)
|
|
# "egcs" cannot be used, as this package tickles c++ compiler bugs
|
|
.include "../../lang/gcc/Makefile.gcc"
|
|
.endif
|
|
|
|
USE_PERL5= YES
|
|
USE_XPM= YES
|
|
GNU_CONFIGURE= YES
|
|
EVAL_PREFIX+= XFORMSDIR=xforms
|
|
CONFIGURE_ARGS+= --with-extra-lib="${X11BASE}/lib" \
|
|
--with-extra-inc="${XFORMSDIR}/include/X11"
|
|
|
|
LDFLAGS+= -L${X11BASE}/lib -Wl,-R${X11BASE}/lib
|
|
|
|
post-install:
|
|
${CHMOD} +x ${PREFIX}/share/lyx/configure
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|