mirror of https://github.com/cutefishos/appmotor
				
				
				
			Merge commit 'origin/master'
						commit
						51318346cc
					
				@ -1,21 +1,15 @@
 | 
			
		||||
<aegis>
 | 
			
		||||
    <provide>
 | 
			
		||||
        <credential name="access"/>
 | 
			
		||||
    </provide>
 | 
			
		||||
   
 | 
			
		||||
    <request>
 | 
			
		||||
        <credential name="CAP::setgid"/>
 | 
			
		||||
        <credential name="CAP::setuid"/>
 | 
			
		||||
        <credential name="CAP::setfcap"/>
 | 
			
		||||
        <credential name="CAP::setpcap"/>
 | 
			
		||||
        <credential name="CAP::sys_nice"/>
 | 
			
		||||
        <credential match="CAP::*"/>
 | 
			
		||||
        <credential name="drm"/>
 | 
			
		||||
        <credential name="Cellular"/>
 | 
			
		||||
        <credential name="ReadUserData"/>
 | 
			
		||||
        <credential name="ReadWriteUserData"/>
 | 
			
		||||
        <for path="/usr/bin/applauncherd.bin"/>
 | 
			
		||||
    </request>
 | 
			
		||||
 | 
			
		||||
  <provide>
 | 
			
		||||
    <credential name="access" />
 | 
			
		||||
  </provide>
 | 
			
		||||
 | 
			
		||||
</aegis>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,32 @@
 | 
			
		||||
# Set sources
 | 
			
		||||
set(SRC fala_status.cpp)
 | 
			
		||||
 | 
			
		||||
link_libraries(${MEEGOTOUCH_LIBRARIES})
 | 
			
		||||
 | 
			
		||||
include(${QT_USE_FILE})
 | 
			
		||||
 | 
			
		||||
# Use the compiler and linker flags given in meegotouch-boostable.pc
 | 
			
		||||
# in the source tree.
 | 
			
		||||
execute_process(COMMAND "env" 
 | 
			
		||||
                         "PKG_CONFIG_PATH=${CMAKE_SOURCE_DIR}/data/pkgconfig" 
 | 
			
		||||
                         "/usr/bin/pkg-config" 
 | 
			
		||||
                         "--cflags" 
 | 
			
		||||
                         "meegotouch-boostable" 
 | 
			
		||||
                WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} 
 | 
			
		||||
                OUTPUT_VARIABLE booster_cflags 
 | 
			
		||||
                OUTPUT_STRIP_TRAILING_WHITESPACE)
 | 
			
		||||
execute_process(COMMAND "env" 
 | 
			
		||||
                        "PKG_CONFIG_PATH=${CMAKE_SOURCE_DIR}/data/pkgconfig" 
 | 
			
		||||
                        "/usr/bin/pkg-config" "--libs" 
 | 
			
		||||
                        "meegotouch-boostable" 
 | 
			
		||||
                WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} 
 | 
			
		||||
                OUTPUT_VARIABLE booster_libs 
 | 
			
		||||
                OUTPUT_STRIP_TRAILING_WHITESPACE)
 | 
			
		||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${booster_cflags}")
 | 
			
		||||
set(CMAKE_EXE_LINKER_FLAGS ${booster_libs})
 | 
			
		||||
 | 
			
		||||
add_executable(fala_status ${SRC})
 | 
			
		||||
 | 
			
		||||
# Install
 | 
			
		||||
install(PROGRAMS fala_status DESTINATION /usr/bin RENAME fala_status.launch)
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,39 @@
 | 
			
		||||
/***************************************************************************
 | 
			
		||||
**
 | 
			
		||||
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 | 
			
		||||
** All rights reserved.
 | 
			
		||||
** Contact: Nokia Corporation (directui@nokia.com)
 | 
			
		||||
**
 | 
			
		||||
** This file is part of applauncherd
 | 
			
		||||
**
 | 
			
		||||
** If you have questions regarding the use of this file, please contact
 | 
			
		||||
** Nokia at directui@nokia.com.
 | 
			
		||||
**
 | 
			
		||||
** This library is free software; you can redistribute it and/or
 | 
			
		||||
** modify it under the terms of the GNU Lesser General Public
 | 
			
		||||
** License version 2.1 as published by the Free Software Foundation
 | 
			
		||||
** and appearing in the file LICENSE.LGPL included in the packaging
 | 
			
		||||
** of this file.
 | 
			
		||||
**
 | 
			
		||||
****************************************************************************/
 | 
			
		||||
 | 
			
		||||
#include <MApplication>
 | 
			
		||||
#include <MApplicationPage>
 | 
			
		||||
#include <MApplicationWindow>
 | 
			
		||||
#include <MExport>
 | 
			
		||||
#include <QTimer>
 | 
			
		||||
 | 
			
		||||
#ifdef HAVE_MCOMPONENTCACHE
 | 
			
		||||
#include <mcomponentcache.h>
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
M_EXPORT int main(int argc, char ** argv)
 | 
			
		||||
{
 | 
			
		||||
#ifdef HAVE_MCOMPONENTCACHE
 | 
			
		||||
    MApplication *app = MComponentCache::mApplication(argc, argv);
 | 
			
		||||
#endif
 | 
			
		||||
    QTimer::singleShot(5, app, SLOT(quit()));
 | 
			
		||||
    app->exec();
 | 
			
		||||
    return 29;
 | 
			
		||||
    
 | 
			
		||||
}
 | 
			
		||||
					Loading…
					
					
				
		Reference in New Issue