Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
6bbc5536
Commit
6bbc5536
authored
Aug 23, 2010
by
Christian Kandeler
Browse files
Maemo: Adapt to OVI store requirements.
Reviewed-by: kh1
parent
849b91e5
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-maemo/maemodeployablelistmodel.cpp
View file @
6bbc5536
...
...
@@ -60,8 +60,8 @@ bool MaemoDeployableListModel::buildModel()
const
MaemoProFileWrapper
::
InstallsList
&
installs
=
m_proFileWrapper
->
installs
();
if
(
installs
.
targetPath
.
isEmpty
())
{
const
QString
remoteDir
=
m_proFileNode
->
projectType
()
==
LibraryTemplate
?
QLatin1String
(
"/
usr
/lib"
)
:
QLatin1String
(
"/
usr
/bin"
);
?
QLatin1String
(
"/
opt
/lib"
)
:
QLatin1String
(
"/
opt
/bin"
);
m_deployables
.
prepend
(
MaemoDeployable
(
localExecutableFilePath
(),
remoteDir
));
QFile
projectFile
(
m_proFileNode
->
path
());
...
...
src/plugins/qt4projectmanager/qt-maemo/maemotemplatesmanager.cpp
View file @
6bbc5536
...
...
@@ -180,7 +180,7 @@ bool MaemoTemplatesManager::createDebianTemplatesIfNecessary(const ProjectExplor
return
false
;
}
QDir
debianDir
(
packagingTemplatesDir
+
QLatin1String
(
"/debian"
));
QDir
debianDir
(
debianDirPath
(
project
));
const
QStringList
&
files
=
debianDir
.
entryList
(
QDir
::
Files
);
QStringList
filesToAddToProject
;
foreach
(
const
QString
&
fileName
,
files
)
{
...
...
@@ -196,15 +196,18 @@ bool MaemoTemplatesManager::createDebianTemplatesIfNecessary(const ProjectExplor
qobject_cast
<
Qt4Project
*>
(
project
)
->
rootProjectNode
()
->
addFiles
(
UnknownFileType
,
filesToAddToProject
);
const
QString
rulesFilePath
=
packagingTemplatesDir
+
QLatin1String
(
"/debian/rules"
);
return
adaptRulesFile
(
project
)
&&
adaptControlFile
(
project
);
}
bool
MaemoTemplatesManager
::
adaptRulesFile
(
const
Project
*
project
)
{
const
QString
rulesFilePath
=
debianDirPath
(
project
)
+
"/rules"
;
QFile
rulesFile
(
rulesFilePath
);
if
(
!
rulesFile
.
open
(
QIODevice
::
ReadWrite
))
{
raiseError
(
tr
(
"Packaging Error: Cannot open file '%1'."
)
.
arg
(
QDir
::
toNativeSeparators
(
rulesFilePath
)));
return
false
;
}
QByteArray
rulesContents
=
rulesFile
.
readAll
();
rulesContents
.
replace
(
"DESTDIR"
,
"INSTALL_ROOT"
);
rulesContents
.
replace
(
"dh_shlibdeps"
,
"# dh_shlibdeps"
);
...
...
@@ -216,6 +219,7 @@ bool MaemoTemplatesManager::createDebianTemplatesIfNecessary(const ProjectExplor
rulesFile
.
resize
(
0
);
rulesFile
.
write
(
rulesContents
);
rulesFile
.
close
();
if
(
rulesFile
.
error
()
!=
QFile
::
NoError
)
{
raiseError
(
tr
(
"Packaging Error: Cannot write file '%1'."
)
.
arg
(
QDir
::
toNativeSeparators
(
rulesFilePath
)));
...
...
@@ -224,6 +228,39 @@ bool MaemoTemplatesManager::createDebianTemplatesIfNecessary(const ProjectExplor
return
true
;
}
bool
MaemoTemplatesManager
::
adaptControlFile
(
const
Project
*
project
)
{
QFile
controlFile
(
controlFilePath
(
project
));
if
(
!
controlFile
.
open
(
QIODevice
::
ReadWrite
))
{
raiseError
(
tr
(
"Packaging Error: Cannot open file '%1'."
)
.
arg
(
QDir
::
toNativeSeparators
(
controlFilePath
(
project
))));
return
false
;
}
QByteArray
sectionLine
=
"Section: user/hidden"
;
QByteArray
controlContents
=
controlFile
.
readAll
();
const
int
sectionOffset
=
controlContents
.
indexOf
(
"Section:"
);
if
(
sectionOffset
==
-
1
)
{
controlContents
.
append
(
sectionLine
).
append
(
'\n'
);
}
else
{
int
sectionNewlineOffset
=
controlContents
.
indexOf
(
'\n'
,
sectionOffset
);
if
(
sectionNewlineOffset
==
-
1
)
{
sectionNewlineOffset
=
controlContents
.
length
();
sectionLine
+=
'\n'
;
}
controlContents
.
replace
(
sectionOffset
,
sectionNewlineOffset
-
sectionOffset
,
sectionLine
);
}
controlFile
.
resize
(
0
);
controlFile
.
write
(
controlContents
);
controlFile
.
close
();
if
(
controlFile
.
error
()
!=
QFile
::
NoError
)
{
raiseError
(
tr
(
"Packaging Error: Cannot write file '%1'."
)
.
arg
(
QDir
::
toNativeSeparators
(
controlFilePath
(
project
))));
return
false
;
}
return
true
;
}
bool
MaemoTemplatesManager
::
updateDesktopFiles
(
const
Qt4Target
*
target
)
{
const
Qt4Target
*
const
qt4Target
=
qobject_cast
<
const
Qt4Target
*>
(
target
);
...
...
src/plugins/qt4projectmanager/qt-maemo/maemotemplatesmanager.h
View file @
6bbc5536
...
...
@@ -96,7 +96,8 @@ private:
ProjectExplorer
::
Project
*
findProject
(
const
QFileSystemWatcher
*
fsWatcher
)
const
;
void
findLine
(
const
QByteArray
&
string
,
QByteArray
&
document
,
int
&
lineEndPos
,
int
&
valuePos
);
bool
adaptRulesFile
(
const
ProjectExplorer
::
Project
*
project
);
bool
adaptControlFile
(
const
ProjectExplorer
::
Project
*
project
);
QSharedPointer
<
QFile
>
openFile
(
const
QString
&
filePath
,
QIODevice
::
OpenMode
mode
,
QString
*
error
)
const
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment