diff options
author | Rene Wagner <rw@handhelds.org> | 2006-05-13 15:42:03 +0200 |
---|---|---|
committer | Rene Wagner <rw@handhelds.org> | 2006-05-13 15:42:03 +0200 |
commit | 5a5346dfbec459c10d9e61e16e125b83975a1ef1 (patch) | |
tree | 342e16f3fe790d03b93294344e6154459888939f /org.handhelds.familiar/packages/lyx |
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e35772d79306d1d9de19c12b23681618532d.
Diffstat (limited to 'org.handhelds.familiar/packages/lyx')
-rw-r--r-- | org.handhelds.familiar/packages/lyx/lyx_1.3.6.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/org.handhelds.familiar/packages/lyx/lyx_1.3.6.bb b/org.handhelds.familiar/packages/lyx/lyx_1.3.6.bb new file mode 100644 index 0000000..de58313 --- /dev/null +++ b/org.handhelds.familiar/packages/lyx/lyx_1.3.6.bb @@ -0,0 +1,29 @@ +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 = "r1" + +SRC_URI = "ftp://ftp.lyx.org/pub/lyx/stable/lyx-${PV}.tar.bz2" + +inherit autotools qt3x11 + +EXTRA_OECONF = "--with-frontend=qt --with-qt-dir=${QTDIR}" + +export UIC="${OE_QMAKE_UIC}" +export MOC="${OE_QMAKE_MOC}" + +do_configure() { + oe_runconf +} + +do_install_append() { + for i in noweb2lyx lyx reLyX + do + ln -sf ./${TARGET_PREFIX}$i ${D}/${bindir}/$i + done +} + |