From d74366a6f1a7f8282c1ca5426e8f0940db0f3a40 Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Tue, 11 Apr 2006 12:25:44 +0000 Subject: qt4: install native tools to where they are expected in qmake generated Makefiles --- packages/qt/qt4-x11-free_4.1.1.bb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/qt/qt4-x11-free_4.1.1.bb b/packages/qt/qt4-x11-free_4.1.1.bb index 15a87bdf94..6c32026f38 100644 --- a/packages/qt/qt4-x11-free_4.1.1.bb +++ b/packages/qt/qt4-x11-free_4.1.1.bb @@ -6,7 +6,7 @@ LICENSE = "GPL QPL" MAINTAINER = "Michael 'Mickey' Lauer " DEPENDS = "uicmoc4-native qmake2-native freetype jpeg libx11 xft libxext libxrender libxrandr libxcursor" PROVIDES = "qt4x11" -PR = "r1" +PR = "r2" SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-x11-opensource-src-${PV}.tar.gz \ file://cross-compile.patch;patch=1 \ @@ -69,6 +69,10 @@ PARTS = "3Support Core Designer DesignerComponents Gui Network Sql Svg Test Xml" do_stage() { oe_runmake install INSTALL_ROOT=/ + install -m 0755 ${STAGING_BINDIR}/rcc4 ${STAGING_QT_DIR}/bin/rcc + install -m 0755 ${STAGING_BINDIR}/moc4 ${STAGING_QT_DIR}/bin/moc + install -m 0755 ${STAGING_BINDIR}/uic4 ${STAGING_QT_DIR}/bin/uic + } # FIXME: Might want to call oe_runmake install INSTALL_ROOT=${D}/${prefix} as well... -- cgit v1.2.3 From 530227dfcd82122db8963f9014b906122fa6f62d Mon Sep 17 00:00:00 2001 From: Michael Lauer Date: Tue, 11 Apr 2006 12:31:14 +0000 Subject: add texmaker, a free cross-platform LaTeX editor based on Qt4 TADAAA, this is the first Qt4 application in OE --- packages/texmaker/.mtn2git_empty | 0 packages/texmaker/texmaker_1.3.bb | 16 ++++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 packages/texmaker/.mtn2git_empty create mode 100644 packages/texmaker/texmaker_1.3.bb diff --git a/packages/texmaker/.mtn2git_empty b/packages/texmaker/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/texmaker/texmaker_1.3.bb b/packages/texmaker/texmaker_1.3.bb new file mode 100644 index 0000000000..0ca09032cb --- /dev/null +++ b/packages/texmaker/texmaker_1.3.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "TeXmaker is a free cross-platform LaTeX editor" +HOMEPAGE = "http://www.xm1math.net/texmaker" +SECTION = "x11/apps" +LICENSE = "GPL" +DEPENDS = "qt4x11" +MAINTAINER = "Michael 'Mickey' Lauer " + +SRC_URI = "http://www.xm1math.net/texmaker/texmaker-${PV}.tar.bz2" + +inherit qmake qt4x11 + +do_install() { + install -d ${D}${bindir} + install -m 0755 texmaker ${D}${bindir}/texmaker +} + -- cgit v1.2.3