diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-04-12 17:37:06 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-04-12 17:37:06 +0000 |
commit | a62729db753f544b7ab29a6b4af5005483a9a4cf (patch) | |
tree | b9a0801bb1ac757797dda27992f9d85975486292 | |
parent | da67f32d384c2fc2cd43193fa2aebec6099c5e15 (diff) | |
parent | ff6b3ce9a946b0f0f7f2bf4e560dbfe985561b3c (diff) |
merge of 24be272ea8c07c7b0b690d8be9589681925c037b
and 4b742ad8af89b3c75d8c6bc198ef09f0509fe642
-rw-r--r-- | packages/lyx/lyx_1.4.1.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/lyx/lyx_1.4.1.bb b/packages/lyx/lyx_1.4.1.bb new file mode 100644 index 0000000000..0cd925ad50 --- /dev/null +++ b/packages/lyx/lyx_1.4.1.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "LyX is an advanced type setting processor - a frontend for LaTeX" +SECTION = "x11/office" +LICENSE = "GPL" +HOMEPAGE = "http://www.lyx.org" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +DEPENDS = "boost qt3x11" +RRECOMMENDS = "tetex" +PR = "r0" + +# we're checking out from svn because the tarball doesn't contain the necessary stuff to run autoreconf +SRC_URI = "svn://svn.lyx.org/lyx/lyx-devel/tags/lyx-1_4_1;module=BRANCH_1_4_X;rev=13640" +S = "${WORKDIR}/BRANCH_1_4_X" + +inherit autotools qt3x11 + +EXTRA_OECONF = "--with-frontend=qt --with-qt-dir=${QTDIR}" +PARALLEL_MAKE = "" + +do_configure_prepend() { + echo "NOTE: touching missing files, please report to upstream" + touch lib/configure.ac lib/doc/LaTeXConfig.lyx lib/textclass.lst +} + +export UIC="${OE_QMAKE_UIC}" +export MOC="${OE_QMAKE_MOC}" |