Changeset 147 for diffs/0.4.6_GA.diff
- Timestamp:
- Oct 16, 2013, 2:03:55 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
diffs/0.4.6_GA.diff
r146 r147 1 1 diff -Naur -x qpdfview.desktop E:\trees\qpdfview\trunk\..\vendor\current/build_os2.cmd E:\trees\qpdfview\trunk/build_os2.cmd 2 2 --- E:\trees\qpdfview\trunk\..\vendor\current/build_os2.cmd 1970-01-01 01:00:00.000000000 +0100 3 +++ E:\trees\qpdfview\trunk/build_os2.cmd 2013-10-1 5 17:02:12.000000000 +02004 @@ -0,0 +1,3 16@@3 +++ E:\trees\qpdfview\trunk/build_os2.cmd 2013-10-16 14:54:30.000000000 +0200 4 @@ -0,0 +1,358 @@ 5 5 +/* qpdfview Build Script */ 6 6 +/* version history */ … … 12 12 +/* version 0.1.5 from 20.08.2013 Silvan (added diff option) */ 13 13 +/* version 0.1.6 from 15.10.2013 Silvan (copy all help*.html) */ 14 +/* version 0.2.0 from 16.10.2013 Silvan (get some info form qpdfview_os2.pri) */ 14 15 + 15 16 +/* init the version string (don't forget to change) */ 16 +version = "0.1.6" 17 +version_date = "15.10.2013" 18 +popplerDll = 'popp43.dll' 19 +popplerDllQt = 'poppqt44.dll' 20 +popplerDir = 'e:\trees\poppler\trunk' 17 +version = "0.2.0" 18 +version_date = "16.10.2013" 21 19 +'@echo off' 22 20 + … … 46 44 +internal_build = translate(Qpdfview_version, '_', '.') 47 45 + 46 +/* get some info from qpdfview_os2.pri */ 47 +popplerDir = ' ' 48 +psDir = ' ' 49 +djvuDir = ' ' 50 +tiffDir = ' ' 51 +call getpri 52 + 48 53 +title = "Qpdfview for eCS (OS/2) build script v" || version || " from " || version_date 49 54 +say title 50 55 +say 51 +say "Build directory :" buildDir52 +say "Source directory :" sourceDir56 +say "Build directory :" buildDir 57 +say "Source directory :" sourceDir 53 58 +say 54 +say "Qpdfview version:" Qpdfview_version 55 +say " build: " Qpdfview_build 59 +say "Qpdfview version :" Qpdfview_version 60 +say " build :" Qpdfview_build 61 +say 62 +say "Using poppler from:" popplerDir 63 +say " djvu from :" djvuDir 64 +say " ps from :" psDir 65 +say " tiff from :" tiffDir 56 66 +say 57 67 + … … 146 156 + frmDir.2 = os2Dir || '\miscellaneous' 147 157 + toDir.2 = installDirT 148 + rm.3 = popplerDll158 + rm.3 = '*.dll' 149 159 + frmDir.3 = popplerDir || '\poppler\.libs' 150 160 + toDir.3 = installDir 151 + rm.4 = popplerDllQt161 + rm.4 = '*.dll' 152 162 + frmDir.4 = popplerDir || '\qt4\src\.libs' 153 163 + toDir.4 = installDir 154 + rm.5 = ' tiff.dll'155 + frmDir.5 = 'e:\trees\libtiff\trunk\libtiff\.libs'164 + rm.5 = '*.dll' 165 + frmDir.5 = tiffDir || '\libtiff\.libs' 156 166 + toDir.5 = installDir 157 167 + do i = 1 to rm.0 … … 310 320 + return 311 321 + 322 +/** 323 + * reads the qpdfview_os2.pri and some values from there 324 + */ 325 +getpri: procedure expose popplerDir djvuDir psDir tiffDir srcDir 326 + 327 + /* Qpdfview_os2.pri file */ 328 + priFile = srcDir || "\qpdfview_os2.pri" 329 + 330 + do until lines(priFile) = 0 331 + verline = linein(priFile) 332 + verline = strip(verline,,' ') 333 + if substr(Verline,1,8) = "PDF_ROOT" then do 334 + parse var verline . ' '. ' ' popplerDir 335 + end 336 + if substr(Verline,1,9) = "DJVU_ROOT" then do 337 + parse var verline . ' '. ' ' djvuDir 338 + end 339 + if substr(Verline,1,7) = "PS_ROOT" then do 340 + parse var verline . ' '. ' ' psDir 341 + end 342 + if substr(Verline,1,9) = "TIFF_ROOT" then do 343 + parse var verline . ' '. ' ' tiffDir 344 + end 345 + end 346 + 347 + ok = stream(priFile,'c','close') 348 + popplerDir = FixDir(popplerDir) 349 + djvuDir = FixDir(djvuDir) 350 + psDir = FixDir(psDir) 351 + tiffDir = FixDir(tiffDir) 352 + return 353 + 312 354 +help: 313 355 + say "Parameters:" … … 628 670 diff -Naur -x qpdfview.desktop E:\trees\qpdfview\trunk\..\vendor\current/qpdfview_os2.pri E:\trees\qpdfview\trunk/qpdfview_os2.pri 629 671 --- E:\trees\qpdfview\trunk\..\vendor\current/qpdfview_os2.pri 1970-01-01 01:00:00.000000000 +0100 630 +++ E:\trees\qpdfview\trunk/qpdfview_os2.pri 2013-10- 07 16:49:08.000000000 +0200631 @@ -0,0 +1,3 4@@672 +++ E:\trees\qpdfview\trunk/qpdfview_os2.pri 2013-10-16 14:55:40.000000000 +0200 673 @@ -0,0 +1,38 @@ 632 674 +# define destdir 633 675 +PLUGIN_DESTDIR = lib 634 676 + 635 677 +# define the djvu part 636 +DJVU_PLUGIN_LIBS += -Le:/trees/djvulibre/trunk/libdjvu/.libs 678 +DJVU_ROOT = e:/trees/djvulibre/trunk 679 +DJVU_PLUGIN_LIBS += -L$$DJVU_ROOT/libdjvu/.libs 637 680 +DJVU_PLUGIN_LIBS += djvulibre 638 +DJVU_PLUGIN_INCLUDEPATH += e:/trees/djvulibre/trunk681 +DJVU_PLUGIN_INCLUDEPATH += $$DJVU_ROOT 639 682 +DJVU_PLUGIN = qpdfdjvu 640 683 +DJVU_PLUGIN_NAME = $$DJVU_PLUGIN".dll" 641 684 + 642 685 +# define the poppler part 686 +PDF_ROOT = e:/trees/poppler/trunk 643 687 +PDF_PLUGIN_DEFINES += HAS_POPPLER_14 HAS_POPPLER_18 HAS_POPPLER_20 HAS_POPPLER_22 HAS_POPPLER_24 644 +PDF_PLUGIN_LIBS += -L e:/trees/poppler/trunk/qt4/src/.libs688 +PDF_PLUGIN_LIBS += -L$$PDF_ROOT/qt4/src/.libs 645 689 +PDF_PLUGIN_LIBS += popplerqt4 646 +PDF_PLUGIN_INCLUDEPATH += e:/trees/poppler/trunk/qt4/src690 +PDF_PLUGIN_INCLUDEPATH += $$PDF_ROOT/qt4/src 647 691 +PDF_PLUGIN = qpdfpdf 648 692 +PDF_PLUGIN_NAME = $$PDF_PLUGIN".dll" 649 693 + 650 694 +# define the ps part 651 +PS_PLUGIN_LIBS += -Le:/trees/libspectre/trunk/libspectre/.libs -Le:/trees/ghostscript/trunk/gs8.71/bin 695 +PS_ROOT = e:/trees/libspectre/trunk 696 +PS_PLUGIN_LIBS += -L$$PS_ROOT/libspectre/.libs -Le:/trees/ghostscript/trunk/gs8.71/bin 652 697 +PS_PLUGIN_LIBS += spectre gs 653 +PS_PLUGIN_INCLUDEPATH += e:/trees/libspectre/trunk698 +PS_PLUGIN_INCLUDEPATH += $$PS_ROOT 654 699 +PS_PLUGIN = qpdfps 655 700 +PS_PLUGIN_NAME = $$PS_PLUGIN".dll" … … 663 708 +DEF_FILE_DESCRIPTION = eCS (OS/2) port of qpdfview by Adam Reichold 664 709 + 665 + 710 +# define tiff, as copied to qpdfview package 711 +TIFF_ROOT = e:/trees/libtiff/trunk 666 712 diff -Naur -x qpdfview.desktop E:\trees\qpdfview\trunk\..\vendor\current/synctex/synctex_parser_utils.c E:\trees\qpdfview\trunk/synctex/synctex_parser_utils.c 667 713 --- E:\trees\qpdfview\trunk\..\vendor\current/synctex/synctex_parser_utils.c 2013-03-24 14:30:12.000000000 +0100
Note:
See TracChangeset
for help on using the changeset viewer.