diff options
author | jmmv <jmmv@pkgsrc.org> | 2003-03-22 15:25:53 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2003-03-22 15:25:53 +0000 |
commit | 2d55d655540068ab25cc38946f5d3edcb78c2f97 (patch) | |
tree | c4488d22aac05541e1e398e9ea0d5556eb8b5c97 /editors/lyx-qt | |
parent | cf107b80ec08bee22c324f6c450d3251efa97b88 (diff) | |
download | pkgsrc-2d55d655540068ab25cc38946f5d3edcb78c2f97.tar.gz |
Initial import of lyx-qt, version 1.3.1:
LyX is a wordprocessor frontend to 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.
Fixes part of PR pkg/20805 by Marc Recht.
Diffstat (limited to 'editors/lyx-qt')
-rw-r--r-- | editors/lyx-qt/Makefile.common | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/editors/lyx-qt/Makefile.common b/editors/lyx-qt/Makefile.common new file mode 100644 index 00000000000..31b33c7c38b --- /dev/null +++ b/editors/lyx-qt/Makefile.common @@ -0,0 +1,61 @@ +# $NetBSD: Makefile.common,v 1.1.1.1 2003/03/22 15:25:53 jmmv Exp $ +# + +DISTNAME= lyx-1.3.1 +CATEGORIES= editors +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 + +CONFLICTS= lyx-[0-9]* +DEPENDS= ispell-base-[0-9]*:../../textproc/ispell-base +DEPENDS+= teTeX2>=2.0.1:../../print/teTeX2 + +DESCR_SRC= ${.CURDIR}/../../editors/lyx-qt/DESCR +DISTINFO_FILE= ${.CURDIR}/../../editors/lyx-qt/distinfo +FILESDIR= ${.CURDIR}/../../editors/lyx-qt/files +PATCHDIR= ${.CURDIR}/../../editors/lyx-qt/patches +PLIST_SRC= ${.CURDIR}/../../editors/lyx-qt/PLIST.common + +GNU_CONFIGURE= YES +USE_BUILDLINK2= YES +USE_CXX= YES +USE_GMAKE= YES +USE_LIBTOOL= YES +USE_PERL5= YES +USE_PKGLOCALEDIR= YES +USE_X11= YES + +LIBTOOL_OVERRIDE= ${WRKSRC}/libtool + +CONFIGURE_ARGS+= --with-pspell-lib=${BUILDLINK_PREFIX.aspell}/lib \ + --with-pspell-include=${BUILDLINK_PREFIX.aspell}/include/pspell \ + --with-pspell +CXXFLAGS+= -Wno-non-template-friend -ftemplate-depth-30 + +.include "../../mk/bsd.prefs.mk" +.if ${MACHINE_ARCH} == "sparc64" +DBG= -O -ffixed-g4 #Hack for embedany memory model compatibility +.else +DBG= -O +.endif + +PYTHON_PATCH_SCRIPTS= lib/lyx2lyx/lyx2lyx \ + development/tools/generate_symbols_list.py \ + lib/scripts/fen2ascii.py \ + lib/scripts/fig2pstex.py \ + lib/scripts/general_command_wrapper.py \ + lib/scripts/listerrors \ + lib/scripts/pic2ascii.py \ + lib/scripts/pic2png_eps.py + +.include "../../devel/gettext-lib/buildlink2.mk" +.include "../../lang/gcc/buildlink2.mk" +.include "../../lang/python/application.mk" +.include "../../textproc/aiksaurus/buildlink2.mk" +.include "../../textproc/aspell/buildlink2.mk" +.include "../../mk/pthread.buildlink2.mk" |