aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/libqpe
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2011-06-04 11:48:53 +0100
committerPaul Eggleton <paul.eggleton@linux.intel.com>2011-06-04 13:08:31 +0100
commite4060679f35f4cec4af5f9c49247286ea824dfbd (patch)
treea9af590799ae3dca54f4b94d6bb07fb480428cd3 /recipes/libqpe
parent1672042214d87572815d11bc55a04abf86dcbe0c (diff)
downloadopenembedded-e4060679f35f4cec4af5f9c49247286ea824dfbd.tar.gz
Opie: remove 1.2.4 recipes and obsolete patches
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'recipes/libqpe')
-rw-r--r--recipes/libqpe/libqpe-opie/citytime-path.patch11
-rw-r--r--recipes/libqpe/libqpe-opie/double_name.patch11
-rw-r--r--recipes/libqpe/libqpe-opie/fix-sd-card-path.patch17
-rw-r--r--recipes/libqpe/libqpe-opie/unbreak-logging.patch21
-rw-r--r--recipes/libqpe/libqpe-opie/unhide_lnkproperties_destructor.patch24
-rw-r--r--recipes/libqpe/libqpe-opie_1.2.4.bb16
6 files changed, 0 insertions, 100 deletions
diff --git a/recipes/libqpe/libqpe-opie/citytime-path.patch b/recipes/libqpe/libqpe-opie/citytime-path.patch
deleted file mode 100644
index 0abaf146d7..0000000000
--- a/recipes/libqpe/libqpe-opie/citytime-path.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- library/tzselect.cpp.orig 2008-01-12 21:05:49.000000000 +1300
-+++ library/tzselect.cpp 2008-01-12 21:06:01.000000000 +1300
-@@ -273,7 +273,7 @@
- void TimeZoneSelector::slotExecute( void )
- {
- // execute the world time application...
-- if (QFile::exists(QPEApplication::qpeDir()+"bin/citytime"))
-+ if (QFile::exists(OPIE_BINDIR "/citytime"))
- Global::execute( "citytime" );
- else
- QMessageBox::warning(this,tr("citytime executable not found"),
diff --git a/recipes/libqpe/libqpe-opie/double_name.patch b/recipes/libqpe/libqpe-opie/double_name.patch
deleted file mode 100644
index ad0eac2d16..0000000000
--- a/recipes/libqpe/libqpe-opie/double_name.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- library/mediaplayerplugininterface.h 3 Mar 2002 17:13:17 -0000 1.5
-+++ library/mediaplayerplugininterface.h 4 Oct 2008 16:45:38 -0000 1.6
-@@ -65,7 +65,7 @@
- virtual int audioSamples( int stream ) = 0;
- virtual bool audioSetSample( long sample, int stream ) = 0;
- virtual long audioGetSample( int stream ) = 0;
-- virtual bool audioReadSamples( short *samples, int channels, long samples, long& samplesRead, int stream ) = 0;
-+ virtual bool audioReadSamples( short *output, int channels, long samples, long& samplesRead, int stream ) = 0;
-
- // If decoder doesn't support video then return 0 here
- virtual int videoStreams() = 0;
diff --git a/recipes/libqpe/libqpe-opie/fix-sd-card-path.patch b/recipes/libqpe/libqpe-opie/fix-sd-card-path.patch
deleted file mode 100644
index 32be5d2e7c..0000000000
--- a/recipes/libqpe/libqpe-opie/fix-sd-card-path.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: library/storage.cpp
-===================================================================
-RCS file: /cvs/opie/library/storage.cpp,v
-retrieving revision 1.25
-retrieving revision 1.26
-diff -U3 -r1.25 -r1.26
---- library/storage.cpp 7 Mar 2005 14:32:58 -0000 1.25
-+++ library/storage.cpp 29 Dec 2007 02:14:09 -0000 1.26
-@@ -307,7 +307,7 @@
- bool hasMmc=false;
- if( deviceTab("/dev/mmc/part"))
- hasMmc=true;
-- if( deviceTab("/dev/mmcd"))
-+ else if( deviceTab("/dev/mmcblk"))
- hasMmc=true;
- return hasMmc;
- }
diff --git a/recipes/libqpe/libqpe-opie/unbreak-logging.patch b/recipes/libqpe/libqpe-opie/unbreak-logging.patch
deleted file mode 100644
index fedd73be35..0000000000
--- a/recipes/libqpe/libqpe-opie/unbreak-logging.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- library/qpeapplication.cpp.org 2007-01-24 19:54:07.000000000 +0000
-+++ library/qpeapplication.cpp 2007-05-03 03:34:10.000000000 +0000
-@@ -792,14 +792,14 @@
- {
- switch ( type ) {
- case QtDebugMsg:
--#ifdef QT_DEBUG
-+//#ifdef QT_DEBUG
- fprintf( stderr, "Debug: %s\n", msg );
--#endif
-+//#endif
- break;
- case QtWarningMsg:
--#ifdef QT_DEBUG
-+//#ifdef QT_DEBUG
- fprintf( stderr, "Warning: %s\n", msg );
--#endif
-+//#endif
- break;
- case QtFatalMsg:
- fprintf( stderr, "Fatal: %s\n", msg );
diff --git a/recipes/libqpe/libqpe-opie/unhide_lnkproperties_destructor.patch b/recipes/libqpe/libqpe-opie/unhide_lnkproperties_destructor.patch
deleted file mode 100644
index 65e790a145..0000000000
--- a/recipes/libqpe/libqpe-opie/unhide_lnkproperties_destructor.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Dont hide destructor, if we do then in moc_lnkproperties.cpp its not
-seen and compiler puts in a default one and inlines it which is then
-hidden as we ask it to use -fvisibility-inlines-hidden
-
-Now linker can merge the symbol visivility and promotes the most
-restrictive visivility in output which means that the library will have
-the destructor but it will be hidden
-
--Khem
-
-Index: library/lnkproperties.h
-===================================================================
---- library.orig/lnkproperties.h 2010-01-19 10:49:36.771348810 -0800
-+++ library/lnkproperties.h 2010-01-19 10:49:59.318857574 -0800
-@@ -45,8 +45,8 @@
- // have this class.
- #ifdef QTOPIA_INTERNAL_FSLP
- LnkProperties( AppLnk* lnk, QWidget* parent = 0 );
-- ~LnkProperties();
- #endif
-+ ~LnkProperties();
-
- void done(int);
- private slots:
diff --git a/recipes/libqpe/libqpe-opie_1.2.4.bb b/recipes/libqpe/libqpe-opie_1.2.4.bb
deleted file mode 100644
index d520155dce..0000000000
--- a/recipes/libqpe/libqpe-opie_1.2.4.bb
+++ /dev/null
@@ -1,16 +0,0 @@
-require ${PN}.inc
-
-PR = "${INC_PR}.3"
-TAG = "${@'v' + bb.data.getVar('PV',d,1).replace('.', '_')}"
-
-SRC_URI = "http://sources.openembedded.org/opie-1.2.4-split_library.tar.bz2;name=split_library \
- file://fix-titleheight.patch \
- file://unbreak-logging.patch \
- file://citytime-path-2.patch \
- file://no-include-pro.patch \
- file://unhide_lnkproperties_destructor.patch \
- file://double_name.patch \
- "
-SRC_URI[split_library.md5sum] = "3d87eb4c998e41b7de6f9068c55e3b33"
-SRC_URI[split_library.sha256sum] = "01df3821333ba654fe91728aa153438330af6a4b66d2a7c5bb01cda53a49c5d3"
-