sl@0: rem Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: rem All rights reserved. sl@0: rem This component and the accompanying materials are made available sl@0: rem under the terms of "Eclipse Public License v1.0" sl@0: rem which accompanies this distribution, and is available sl@0: rem at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: rem sl@0: rem Initial Contributors: sl@0: rem Nokia Corporation - initial contribution. sl@0: rem sl@0: rem Contributors: sl@0: rem sl@0: rem Description: sl@0: sl@0: sl@0: @echo off sl@0: setlocal sl@0: sl@0: call :init %1 sl@0: call :setup sl@0: call :listfiles sl@0: sl@0: goto :skipFunctions sl@0: sl@0: :help sl@0: echo. sl@0: echo Test Extended Bitmap rasterizer installer for winscw sl@0: echo. sl@0: echo Usage: rasterizer_winscw_install.bat [install_flag] sl@0: echo Where: sl@0: echo install_flag: install or uninstall sl@0: echo. sl@0: goto :EOF sl@0: sl@0: :init sl@0: set INSTALL_FLAG=%1 sl@0: set TEST_EB_RASTERIZER=fbsrasterizer_test.dll sl@0: goto :EOF sl@0: sl@0: :setup sl@0: if "%INSTALL_FLAG%"=="install" call :rasterizer_install & goto :EOF sl@0: if "%INSTALL_FLAG%"=="uninstall" call :rasterizer_uninstall & goto :EOF sl@0: call :help sl@0: goto :EOF sl@0: sl@0: :rasterizer_install sl@0: if not exist "%EPOC_INI%" echo ERROR: %EPOC_INI% does not exist & call :help & goto :EOF sl@0: sl@0: if exist "%EPOC_INI%.rasterizer.bak" del %EPOC_INI% >NUL sl@0: if exist "%EPOC_INI%.rasterizer.bak" copy %EPOC_INI%.rasterizer.bak %EPOC_INI% >NUL sl@0: if not exist "%EPOC_INI%.rasterizer.bak" copy %EPOC_INI% %EPOC_INI%.rasterizer.bak >NUL sl@0: echo INFO: Modifying %EPOC_INI% for test Extended Bitmap rasterizer sl@0: echo. >> %EPOC_INI% sl@0: echo FBSRASTERIZER_DLL %TEST_EB_RASTERIZER% >> %EPOC_INI% sl@0: goto :EOF sl@0: sl@0: :rasterizer_uninstall sl@0: if exist "%EPOC_INI%.rasterizer.bak" del %EPOC_INI% >NUL sl@0: echo INFO: Restoring %EPOC_INI%.rasterizer.bak to %EPOC_INI% sl@0: if exist "%EPOC_INI%.rasterizer.bak" copy %EPOC_INI%.rasterizer.bak %EPOC_INI% >NUL sl@0: if exist "%EPOC_INI%.rasterizer.bak" del %EPOC_INI%.rasterizer.bak >NUL sl@0: goto :EOF sl@0: sl@0: :listfiles sl@0: sl@0: echo ======================================= sl@0: echo files after %0 %1 sl@0: echo ======================================= sl@0: echo epoc.ini: %EPOC_INI% sl@0: echo ======================================= sl@0: type %EPOC_INI% sl@0: echo ======================================= sl@0: sl@0: goto :EOF sl@0: sl@0: :skipFunctions sl@0: sl@0: endlocal