some lint fixes
authorHolger Schurig <schurig@mn-solutions.de>
Wed, 29 Sep 2004 09:53:00 +0000 (09:53 +0000)
committerHolger Schurig <schurig@mn-solutions.de>
Wed, 29 Sep 2004 09:53:00 +0000 (09:53 +0000)
BKrev: 415a85fcDRqfpbe9bFInrJY86xQj2g

classes/oelint.oeclass
iqnotes/iqnotes_2.0.2.oe
mileage/mileage_cvs.oe
perl/perl_5.8.3.oe
shopper/shopper_1.2.1.oe
uicmoc/uicmoc-native_2.3.7.oe
uicmoc/uicmoc3-native_3.3.2.oe
xmms-embedded/xmms-embedded_20040327.oe

index d100fc6..c4f2400 100644 (file)
@@ -42,8 +42,6 @@ python do_lint() {
        #
        valid_sections = {
                # Current Section         Correct section
-               "applications"          : True,
-               "Applications"          : "applications",
                "apps"                  : True,
                "audio"                 : True,
                "base"                  : True,
@@ -54,7 +52,6 @@ python do_lint() {
                "devel"                 : True,
                "developing"            : "devel",
                "devel/python"          : True,
-               "dvb"                   : "multimedia",
                "fonts"                 : True,
                "games"                 : True,
                "games/libs"            : True,
@@ -63,7 +60,7 @@ python do_lint() {
                "gpe"                   : True,
                "gpe/libs"              : True,
                "gui"                   : False,
-               "libc"                  : True,
+               "libc"                  : "libs",
                "libs"                  : True,
                "libs/net"              : True,
                "multimedia"            : True,
@@ -83,13 +80,12 @@ python do_lint() {
                "opie/libs"             : True,
                "opie/multimedia"       : True,
                "opie/pim"              : True,
-               "opie/setting"          : True,
+               "opie/setting"          : "opie/settings",
                "opie/settings"         : True,
                "opie/Shell"            : False,
                "opie/styles"           : True,
                "opie/today"            : True,
                "scientific"            : True,
-               "tools"                 : "utils",
                "utils"                 : True,
                "x11"                   : True,
                "x11/libs"              : True,
@@ -116,7 +112,7 @@ python do_lint() {
        # Test for valid PRIORITY
        #
        valid_priorities = {
-               "standed"               : True,
+               "standard"              : True,
                "required"              : True,
                "optional"              : True,
                "extra"                 : True,
index c36bee6..fe35f3e 100644 (file)
@@ -2,7 +2,7 @@ DESCRIPTION = "IQNotes is notes kept in a hierarchical(tree like) manner. \
 It handles todo, events, sketching. It can acts as a contact, password, \
 credit card manager and even more, because is highly configurable. \
 Data can be crypted by strong AES algorithm."
-SECTION = "applications"
+SECTION = "opie/applications"
 PRIORITY = "optional"
 LICENSE = "GPL"
 DEPENDS = "virtual/libqpe"
index 598badb..abe0047 100644 (file)
@@ -1,6 +1,6 @@
 DESCRIPTION = "A Car Mileage Calculator."
 HOMEPAGE = "http://mileage.sourceforge.net"
-SECTION = "apps"
+SECTION = "opie/applications"
 PRIORITY = "optional"
 PV = "4.2.0-cvs-${CVSDATE}"
 PR = "r1"
index f6d2e1c..5e40867 100644 (file)
@@ -1,5 +1,5 @@
 DESCRIPTION = "Perl is a popular scripting language."
-SECTION = "developing"
+SECTION = "devel"
 PRIORITY = "optional"
 DEPENDS = "db3 perl-native"
 SRC_URI = "http://ftp.funet.fi/pub/CPAN/src/perl-${PV}.tar.gz \
index 22474fb..f003413 100644 (file)
@@ -1,5 +1,5 @@
 DESCRIPTION = "Shopping list manager"
-SECTION = "Applications"
+SECTION = "opie/applications"
 PRIORITY = "optional"
 MAINTAINER = "David Greaves <arbor@users.sourceforge.net>"
 LICENSE = "GPL"
index 3328139..aea0c4e 100644 (file)
@@ -1,5 +1,5 @@
 DESCRIPTION = "User Interface Generator and Meta Object Compiler (moc) for Qt(E) 2.x"
-SECTION = "tools"
+SECTION = "devel"
 PRIORITY = "optional"
 LICENSE = "GPL/QPL"
 PR = "r1"
index e69de29..98d8af7 100644 (file)
@@ -0,0 +1,38 @@
+DESCRIPTION = "User Interface Generator and Meta Object Compiler (moc) for Qt(E) 3.x"
+SECTION = "devel"
+PRIORITY = "optional"
+LICENSE = "GPL/QPL"
+
+SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-embedded-free-3.3.2.tar.bz2 \
+          file://no-examples.patch;patch=1"
+
+S = "${WORKDIR}/qt-embedded-free-3.3.2"
+
+inherit native qmake-base
+
+export QTDIR = "${S}"
+export OE_QMAKE_LINK="${CXX}"
+CXXFLAGS += " -DQWS"
+
+QT_CONFIG_FLAGS = "-release -static -depths 8,16 -qt-zlib -no-nas-sound \
+                   -no-sm -qt-libpng -no-gif -no-xshape -no-xinerama \
+                   -no-xcursor -no-xrandr -no-xrender -no-xft -no-tablet \
+                   -no-xkb -no-dlopen-opengl -no-freetype -no-thread \
+                   -no-nis -no-cups -prefix ${prefix} \
+                   -xplatform ${OE_QMAKE_PLATFORM} \
+                   -platform ${OE_QMAKE_PLATFORM}"
+
+do_configure() {
+    oe_qmake_mkspecs
+    echo "yes" | ./configure ${QT_CONFIG_FLAGS}
+}
+
+do_stage() {
+       install -m 0755 bin/moc ${STAGING_BINDIR}/moc3
+       install -m 0755 bin/uic ${STAGING_BINDIR}/uic3
+       install -m 0655 lib/*.a ${STAGING_LIBDIR}/
+       for f in include/*.h
+       do
+               install -m 0644 $f ${STAGING_INCDIR}/
+       done
+}
index a04303e..e7c4dfc 100644 (file)
@@ -1,5 +1,5 @@
 DESCRIPTION = "XMMS embedded - lightweight audio player with video and codec plugins"
-SECTION = "apps"
+SECTION = "opie/multimedia"
 DEPENDS = "zlib tremor libmad libid3tag libsidplay glib-2.0"
 PR = "r1"