diff options
author | Koen Kooi <koen@openembedded.org> | 2007-06-22 09:49:20 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-06-22 09:49:20 +0000 |
commit | 57d670527b9b1632dc9aca22809b1d7841cd4447 (patch) | |
tree | 1fae7f3b0f2a61d343b0b51b0cc4ca41fd5ea0ab | |
parent | a61f8f50469120fa9c5d44e713d31516b0786cec (diff) |
lyx: add 1.4.4 (qt3) and 1.5.0rc1 (qt4)
-rw-r--r-- | packages/lyx/lyx_1.4.4+1.5.0rc1.bb | 26 | ||||
-rw-r--r-- | packages/lyx/lyx_1.4.4.bb | 24 |
2 files changed, 50 insertions, 0 deletions
diff --git a/packages/lyx/lyx_1.4.4+1.5.0rc1.bb b/packages/lyx/lyx_1.4.4+1.5.0rc1.bb new file mode 100644 index 0000000000..6c7dd15c49 --- /dev/null +++ b/packages/lyx/lyx_1.4.4+1.5.0rc1.bb @@ -0,0 +1,26 @@ +DESCRIPTION = "LyX is an advanced type setting processor - a frontend for LaTeX" +SECTION = "x11/office" +LICENSE = "GPL" +HOMEPAGE = "http://www.lyx.org" +DEPENDS = "boost qt4-x11-free" +RRECOMMENDS = "tetex" +PR = "r0" + +DEFAULT_PREFERENCE = "-1" + +# 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;module=lyx_1_5_0rc1;rev=18613" +S = "${WORKDIR}/lyx_1_5_0rc1" + +inherit autotools qt4x11 + +EXTRA_OECONF = " --with-qt4-dir=${QTDIR} -enable-pch" +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}" diff --git a/packages/lyx/lyx_1.4.4.bb b/packages/lyx/lyx_1.4.4.bb new file mode 100644 index 0000000000..d9156cd779 --- /dev/null +++ b/packages/lyx/lyx_1.4.4.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "LyX is an advanced type setting processor - a frontend for LaTeX" +SECTION = "x11/office" +LICENSE = "GPL" +HOMEPAGE = "http://www.lyx.org" +DEPENDS = "boost" +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;module=lyx-1_4_4;rev=17185" +S = "${WORKDIR}/lyx-1_4_4" + +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}" |