1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092
|
# vi:filetype=python:expandtab:tabstop=4:shiftwidth=4
#
# file SConstruct
#
# This file is part of LyX, the document processor.
# Licence details can be found in the file COPYING.
#
# \author Bo Peng
# Full author contact details are available in file CREDITS.
#
# This is a scons based building system for lyx, please refer
# to INSTALL.scons for detailed instructions.
#
import os, sys, copy, cPickle, glob, time
# determine where I am ...
#
from SCons.Node.FS import default_fs
# default_fs.SConstruct_dir is where SConstruct file is located.
scons_dir = default_fs.SConstruct_dir.path
scons_absdir = default_fs.SConstruct_dir.abspath
# if SConstruct is copied to the top source directory
if os.path.exists(os.path.join(scons_dir, 'development', 'scons', 'scons_manifest.py')):
scons_dir = os.path.join(scons_dir, 'development', 'scons')
scons_absdir = os.path.join(scons_absdir, 'development', 'scons')
# get the ../.. of scons_dir
top_src_dir = os.path.split(os.path.split(scons_absdir)[0])[0]
sys.path.extend([scons_absdir, os.path.join(top_src_dir, 'lib', 'doc')])
# scons_utils.py defines a few utility function
import scons_utils as utils
# import all file lists
from scons_manifest import *
# scons asks for 1.5.2, lyx requires 2.3
EnsurePythonVersion(2, 3)
# Please use at least version 0.97
EnsureSConsVersion(0, 97)
#----------------------------------------------------------
# Global definitions
#----------------------------------------------------------
# some global settings
#
# get version number from configure.ac so that JMarc does
# not have to change SConstruct during lyx release
package_version, majmin_ver, lyx_date = utils.getVerFromConfigure(top_src_dir)
try:
lyx_major_version = package_version.split('.')[0]
lyx_minor_version = package_version.split('.')[1]
except IndexError, e:
lyx_major_version = majmin_ver[0]
lyx_minor_version = majmin_ver[1]
package_cygwin_version = '%s-1' % package_version
boost_version = ['1_34']
if 'svn' in package_version:
devel_version = True
default_build_mode = 'debug'
else:
devel_version = False
default_build_mode = 'release'
package = 'lyx'
package_bugreport = 'lyx-devel@lists.lyx.org'
package_name = 'LyX'
package_tarname = 'lyx'
package_string = '%s %s' % (package_name, package_version)
# various cache/log files
default_log_file = 'scons_lyx.log'
opt_cache_file = 'opt.cache'
#----------------------------------------------------------
# platform dependent settings
#----------------------------------------------------------
if os.name == 'nt':
platform_name = 'win32'
default_prefix = 'c:/program files/lyx'
default_with_x = False
default_packaging_method = 'windows'
elif os.name == 'posix' and sys.platform != 'cygwin':
platform_name = sys.platform
default_prefix = '/usr/local'
default_with_x = True
default_packaging_method = 'posix'
elif os.name == 'posix' and sys.platform == 'cygwin':
platform_name = 'cygwin'
default_prefix = '/usr'
default_with_x = True
default_packaging_method = 'posix'
elif os.name == 'darwin':
platform_name = 'macosx'
# FIXME: macOSX default prefix?
default_prefix = '.'
default_with_x = False
default_packaging_method = 'macosx'
else: # unsupported system, assume posix behavior
platform_name = 'others'
default_prefix = '.'
default_with_x = True
default_packaging_method = 'posix'
#---------------------------------------------------------
# Handling options
#----------------------------------------------------------
#
# You can set perminant default values in config.py
if os.path.isfile('config.py'):
print "Getting options from config.py..."
print open('config.py').read()
opts = Variables(['config.py'])
opts.AddVariables(
# frontend
EnumVariable('frontend', 'Main GUI', 'qt4',
allowed_values = ('qt4',) ),
# debug or release build
EnumVariable('mode', 'Building method', default_build_mode,
allowed_values = ('debug', 'release') ),
# boost libraries
EnumVariable('boost',
'Use included, system boost library, or try sytem boost first.',
'auto', allowed_values = (
'auto', # detect boost, if not found, use included
'included', # always use included boost
'system', # always use system boost, fail if can not find
) ),
#
EnumVariable('gettext',
'Use included, system gettext library, or try sytem gettext first',
'auto', allowed_values = (
'auto', # detect gettext, if not found, use included
'included', # always use included gettext
'system', # always use system gettext, fail if can not find
) ),
#
EnumVariable('spell', 'Choose spell checker to use.', 'auto',
allowed_values = ('aspell', 'enchant', 'hunspell', 'auto', 'no') ),
# packaging method
EnumVariable('packaging', 'Packaging method to use.', default_packaging_method,
allowed_values = ('windows', 'posix', 'macosx')),
#
BoolVariable('fast_start', 'This option is obsolete.', False),
# No precompiled header support (too troublesome to make it work for msvc)
# BoolVariable('pch', 'Whether or not use pch', False),
# enable assertion, (config.h has ENABLE_ASSERTIOS
BoolVariable('assertions', 'Use assertions', True),
# config.h define _GLIBCXX_CONCEPT_CHECKS
# Note: for earlier version of gcc (3.3) define _GLIBCPP_CONCEPT_CHECKS
BoolVariable('concept_checks', 'Enable concept checks', True),
#
BoolVariable('nls', 'Whether or not use native language support', True),
#
BoolVariable('profiling', 'Whether or not enable profiling', False),
# config.h define _GLIBCXX_DEBUG and _GLIBCXX_DEBUG_PEDANTIC
BoolVariable('stdlib_debug', 'Whether or not turn on stdlib debug', False),
# using x11?
BoolVariable('X11', 'Use x11 windows system', default_with_x),
# use MS VC++ to build lyx
BoolVariable('use_vc', 'Use MS VC++ to build lyx (cl.exe will be probed)', None),
#
PathVariable('qt_dir', 'Path to qt directory', None),
#
PathVariable('qt_inc_path', 'Path to qt include directory', None),
#
PathVariable('qt_lib_path', 'Path to qt library directory', None),
# extra include and libpath
PathVariable('extra_inc_path', 'Extra include path', None),
#
PathVariable('extra_lib_path', 'Extra library path', None),
#
PathVariable('extra_bin_path', 'A convenient way to add a path to $PATH', None),
#
PathVariable('extra_inc_path1', 'Extra include path', None),
#
PathVariable('extra_lib_path1', 'Extra library path', None),
#
('rebuild', 'Obsolete option', None),
# can be set to a non-existing directory
('prefix', 'install architecture-independent files in PREFIX', default_prefix),
# replace the default name and location of the windows installer
('win_installer', 'name or full path to the windows installer', None),
# the deps package used to create minimal installer (qt and other libraries)
('deps_dir', 'path to the development depedency packages with zlib, iconv and qt libraries', None),
# whether or not build bundle installer
BoolVariable('bundle', 'Whether or not build bundle installer', False),
# the bundle directory, containing bundled applications
PathVariable('bundle_dir', 'path to the bundle dependency package with miktex setup.exe etc', None),
# build directory, will use $mode if not set
('build_dir', 'Build directory', None),
# version suffix
('version_suffix', 'install lyx as lyx-suffix', None),
# how to load options
('load_option', '''load option from previous scons run. option can be
yes (default): load all options
no: do not load any option
opt1,opt2: load specified options
-opt1,opt2: load all options other than specified ones''', 'yes'),
#
('optimization', 'optimization CCFLAGS option.', None),
#
PathVariable('exec_prefix', 'install architecture-independent executable files in PREFIX', None),
# log file
('logfile', 'save commands (not outputs) to logfile', default_log_file),
# provided for backward compatibility
('dest_dir', 'install to DESTDIR. (Provided for backward compatibility only)', None),
# environment variable can be set as options.
('DESTDIR', 'install to DESTDIR', None),
('CC', 'replace default $CC', None),
('LINK', 'replace default $LINK', None),
('CPP', 'replace default $CPP', None),
('CXX', 'replace default $CXX', None),
('CXXCPP', 'replace default $CXXCPP', None),
('CCFLAGS', 'replace default $CCFLAGS', None),
('CPPFLAGS', 'replace default $CPPFLAGS', None),
('LINKFLAGS', 'replace default $LINKFLAGS', None),
)
# allowed options
all_options = [x.key for x in opts.options]
# copied from SCons/Variables/BoolVariable.py
# We need to use them before a boolean ARGUMENTS option is available
# in env as bool.
true_strings = ('y', 'yes', 'true', 't', '1', 'on' , 'all' )
false_strings = ('n', 'no', 'false', 'f', '0', 'off', 'none')
if ARGUMENTS.has_key('fast_start'):
print 'fast_start option is obsolete'
# if load_option=yes (default), load saved comand line options
#
# This option can take value yes/no/opt1,opt2/-opt1,opt2
# and tries to be clever in choosing options to load
if (not ARGUMENTS.has_key('load_option') or \
ARGUMENTS['load_option'] not in false_strings) \
and os.path.isfile(opt_cache_file):
cache_file = open(opt_cache_file)
opt_cache = cPickle.load(cache_file)
cache_file.close()
# import cached options, but we should ignore qt_dir when frontend changes
if ARGUMENTS.has_key('frontend') and opt_cache.has_key('frontend') \
and ARGUMENTS['frontend'] != opt_cache['frontend'] \
and opt_cache.has_key('qt_dir'):
opt_cache.pop('qt_dir')
# and we do not cache some options (dest_dir is obsolete)
for arg in ['load_option', 'dest_dir', 'bundle']:
if opt_cache.has_key(arg):
opt_cache.pop(arg)
# remove obsolete cached keys (well, SConstruct is evolving. :-)
for arg in opt_cache.keys():
if arg not in all_options:
print 'Option %s is obsolete, do not load it' % arg
opt_cache.pop(arg)
# now, if load_option=opt1,opt2 or -opt1,opt2
if ARGUMENTS.has_key('load_option') and \
ARGUMENTS['load_option'] not in true_strings + false_strings:
# if -opt1,opt2 is specified, do not load these options
if ARGUMENTS['load_option'][0] == '-':
for arg in ARGUMENTS['load_option'][1:].split(','):
if opt_cache.has_key(arg):
opt_cache.pop(arg)
# if opt1,opt2 is specified, only load specified options
else:
args = ARGUMENTS['load_option'].split(',')
for arg in opt_cache.keys():
if arg not in args:
opt_cache.pop(arg)
# now restore options as if entered from command line
for key in opt_cache.keys():
if not ARGUMENTS.has_key(key):
ARGUMENTS[key] = opt_cache[key]
print "Restoring cached option %s=%s" % (key, ARGUMENTS[key])
print
# check if there is unused (or misspelled) argument
for arg in ARGUMENTS.keys():
if arg not in all_options:
import textwrap
print "Unknown option '%s'... exiting." % arg
print
print "Available options are (check 'scons -help' for details):"
print ' ' + '\n '.join(textwrap.wrap(', '.join(all_options)))
Exit(1)
# save options used
cache_file = open(opt_cache_file, 'w')
cPickle.dump(ARGUMENTS, cache_file)
cache_file.close()
#---------------------------------------------------------
# Setting up environment
#---------------------------------------------------------
# I do not really like ENV=os.environ, but you may add it
# here if you experience some environment related problem
env = Environment(options = opts)
# set individual variables since I do not really like ENV = os.environ
env['ENV']['PATH'] = os.environ.get('PATH')
env['ENV']['HOME'] = os.environ.get('HOME')
# these are defined for MSVC
env['ENV']['LIB'] = os.environ.get('LIB')
env['ENV']['INCLUDE'] = os.environ.get('INCLUDE')
# for simplicity, use var instead of env[var]
frontend = env['frontend']
prefix = env['prefix']
mode = env['mode']
if platform_name == 'win32':
if env.has_key('use_vc'):
use_vc = env['use_vc']
if WhereIs('cl.exe') is None:
print "cl.exe is not found. Are you using the MSVC environment?"
Exit(2)
elif WhereIs('cl.exe') is not None:
use_vc = True
else:
use_vc = False
else:
use_vc = False
if env.has_key('build_dir') and env['build_dir'] is not None:
env['BUILDDIR'] = env['build_dir']
else:
# Determine the name of the build $mode
env['BUILDDIR'] = '#' + mode
# all built libraries will go to build_dir/libs
# (This is different from the make file approach)
env['LOCALLIBPATH'] = '$BUILDDIR/libs'
env.AppendUnique(LIBPATH = ['$LOCALLIBPATH'])
# Here is a summary of variables defined in env
# 1. defined options
# 2. undefined options with a non-None default value
# 3. compiler commands and flags like CCFLAGS.
# MSGFMT used to process po files
# 4. Variables that will be used to replace variables in some_file.in
# lib/lyx2lyx/lyx2lyx_version.py.in
# PACKAGE_VERSION
# full path name is used to build msvs project files
# and to replace TOP_SRCDIR in package.C
env['TOP_SRCDIR'] = Dir(top_src_dir).abspath
# determine share_dir etc
packaging_method = env.get('packaging')
if packaging_method == 'windows':
share_dir = 'Resources'
man_dir = 'Resources/man/man1'
locale_dir = 'Resources/locale'
else:
share_dir = 'share/lyx'
locale_dir = 'share/locale'
if platform_name == 'cygwin':
man_dir = 'share/man/man1'
else:
man_dir = 'man/man1'
# program suffix: can be yes, or a string
if env.has_key('version_suffix'):
if env['version_suffix'] in true_strings:
program_suffix = package_version
elif env['version_suffix'] in false_strings:
program_suffix = ''
else:
program_suffix = env['version_suffix']
else:
program_suffix = ''
# whether or not add suffix to file and directory names
add_suffix = packaging_method != 'windows'
# Absolute data directory
if mode == 'release':
if add_suffix:
env['LYX_DATA_DIR'] = Dir(os.path.join(prefix, share_dir + program_suffix)).abspath
else:
env['LYX_DATA_DIR'] = Dir(os.path.join(prefix, share_dir)).abspath
else:
# in the debug mode, use $TOP_SRCDIR/lib to make sure lyx can be started from anyway
# by using this directory as data directory
env['LYX_DATA_DIR'] = os.path.join(env.subst('$TOP_SRCDIR'), 'lib')
# we need absolute path for package.C
env['LOCALEDIR'] = Dir(os.path.join(prefix, locale_dir)).abspath
#---------------------------------------------------------
# Setting building environment (Tools, compiler flags etc)
#---------------------------------------------------------
# Since Tool('mingw') will reset CCFLAGS etc, this should be
# done before getEnvVariable
if platform_name == 'win32':
if use_vc:
env.Tool('msvc')
env.Tool('mslink')
else:
env.Tool('mingw')
env.AppendUnique(CPPPATH = ['#c:/MinGW/include'])
# fix a scons winres bug (there is a missing space between ${RCINCPREFIX} and ${SOURCE.dir}
# in version 0.96.93
env['RCCOM'] = '$RC $_CPPDEFFLAGS $RCINCFLAGS ${RCINCPREFIX} ${SOURCE.dir} $RCFLAGS -i $SOURCE -o $TARGET'
# we differentiate between hard-coded options and default options
# hard-coded options are required and will always be there
# default options can be replaced by enviromental variables or command line options
CCFLAGS_required = []
CXXFLAGS_required = []
LINKFLAGS_required = []
CCFLAGS_default = []
# if we use ms vc, the commands are fine (cl.exe and link.exe)
if use_vc:
# C4819: The file contains a character that cannot be represented
# in the current code page (number)
# C4996: foo was decleared deprecated
CCFLAGS_required.append('/EHsc')
CXXFLAGS_required.append('/Zc:wchar_t-')
if mode == 'debug':
CCFLAGS_default.extend(['/wd4819', '/wd4996', '/nologo', '/MDd'])
else:
CCFLAGS_default.extend(['/wd4819', '/wd4996', '/nologo', '/MD'])
# for debug/release mode
if env.has_key('optimization') and env['optimization'] is not None:
# if user supplies optimization flags, use it anyway
CCFLAGS_required.extend(env['optimization'].split())
# and do not use default
set_default_optimization_flags = False
else:
set_default_optimization_flags = True
if mode == 'debug':
if use_vc:
CCFLAGS_required.append('/Zi')
LINKFLAGS_required.extend(['/debug', '/map'])
else:
CCFLAGS_required.append('-g')
CCFLAGS_default.append('-O')
elif mode == 'release' and set_default_optimization_flags:
if use_vc:
CCFLAGS_default.append('/O2')
else:
CCFLAGS_default.append('-O2')
# msvc uses separate tools for profiling
if env.has_key('profiling') and env['profiling']:
if use_vc:
print 'Visual C++ does not use profiling options'
else:
CCFLAGS_required.append('-pg')
LINKFLAGS_required.append('-pg')
if env.has_key('warnings') and env['warnings']:
if use_vc:
CCFLAGS_default.append('/W2')
else:
# Note: autotools detect gxx version and pass -W for 3.x
# and -Wextra for other versions of gcc
CCFLAGS_default.append('-Wall')
# Now, set the variables as follows:
# 1. if command line option exists: replace default
# 2. then if s envronment variable exists: replace default
# 3. set variable to required + default
def setEnvVariable(env, name, required = None, default = None, split = True):
''' env: environment to set variable
name: variable
required: hardcoded options
default: default options that can be replaced by command line or
environment variables
split: whether or not split obtained variable like '-02 -g'
'''
# 1. ARGUMENTS is already set to env[name], override default.
if ARGUMENTS.has_key(name):
# env[name] may be rewritten when building tools are reloaded
# if that is the case, commandline option will override it.
env[name] = ARGUMENTS[name]
default = None
# then use environment default
elif os.environ.has_key(name):
print "Acquiring variable %s from system environment: %s" % (name, os.environ[name])
default = os.environ[name]
if split:
default = default.split()
# the real value should be env[name] + default + required
if split:
value = []
if env.has_key(name):
value = str(env[name]).split()
if required is not None:
value += required
if default is not None:
value += default
else:
value = ""
if env.has_key(name):
value = str(env[name])
if required is not None:
value += " " + required
if default is not None:
value += " " + default
env[name] = value
# print name, env[name]
setEnvVariable(env, 'DESTDIR', split=False)
setEnvVariable(env, 'CC')
setEnvVariable(env, 'LINK')
setEnvVariable(env, 'CPP')
setEnvVariable(env, 'CXX')
setEnvVariable(env, 'CXXCPP')
setEnvVariable(env, 'CCFLAGS', CCFLAGS_required, CCFLAGS_default)
setEnvVariable(env, 'CXXFLAGS', CXXFLAGS_required)
setEnvVariable(env, 'CPPFLAGS')
setEnvVariable(env, 'LINKFLAGS', LINKFLAGS_required)
# if DESTDIR is not set...
if env.has_key('dest_dir'):
print "This option is obsolete. Please use DESTDIR instead."
env['DESTDIR'] = env['dest_dir']
#
# extra_inc_path and extra_lib_path
#
extra_inc_paths = []
if env.has_key('extra_inc_path') and env['extra_inc_path']:
extra_inc_paths.append(env['extra_inc_path'])
if env.has_key('extra_lib_path') and env['extra_lib_path']:
env.AppendUnique(LIBPATH = [env['extra_lib_path']])
if env.has_key('extra_inc_path1') and env['extra_inc_path1']:
extra_inc_paths.append(env['extra_inc_path1'])
if env.has_key('extra_lib_path1') and env['extra_lib_path1']:
env.AppendUnique(LIBPATH = [env['extra_lib_path1']])
if env.has_key('extra_bin_path') and env['extra_bin_path']:
# only the first one is needed (a scons bug?)
os.environ['PATH'] += os.pathsep + env['extra_bin_path']
env.PrependENVPath('PATH', env['extra_bin_path'])
# extra_inc_paths will be used later by intlenv etc
env.AppendUnique(CPPPATH = extra_inc_paths)
#----------------------------------------------------------
# Autoconf business
#----------------------------------------------------------
conf = Configure(env,
custom_tests = {
'CheckPkgConfig' : utils.checkPkgConfig,
'CheckPackage' : utils.checkPackage,
'CheckMkdirOneArg' : utils.checkMkdirOneArg,
'CheckSelectArgType' : utils.checkSelectArgType,
'CheckBoostLibraries' : utils.checkBoostLibraries,
'CheckCommand' : utils.checkCommand,
'CheckNSIS' : utils.checkNSIS,
'CheckCXXGlobalCstd' : utils.checkCXXGlobalCstd,
'CheckLC_MESSAGES' : utils.checkLC_MESSAGES,
'CheckIconvConst' : utils.checkIconvConst,
'CheckSizeOfWChar' : utils.checkSizeOfWChar,
'CheckDeclaration' : utils.checkDeclaration,
}
)
# When using msvc, windows.h is required
if use_vc and not conf.CheckCHeader('windows.h'):
print 'Windows.h is not found. Please install Windows Platform SDK.'
print 'Please check config.log for more information.'
Exit(1)
# pkg-config? (if not, we use hard-coded options)
if conf.CheckPkgConfig('0.15.0'):
env['HAS_PKG_CONFIG'] = True
else:
print 'pkg-config >= 0.1.50 is not found'
env['HAS_PKG_CONFIG'] = False
# zlib? zdll is required for MSVC 2005 and 2008, for 2010 only zlib is required
if (not use_vc and not conf.CheckLibWithHeader('z', 'zlib.h', 'C')) \
or (use_vc and not conf.CheckLibWithHeader('zlib', 'zlib.h', 'C')):
print 'Did not find zlib.lib or zlib.h, exiting!'
print 'Please check config.log for more information.'
Exit(1)
if conf.CheckLib('iconv'):
env['ICONV_LIB'] = 'iconv'
elif conf.CheckLib('libiconv'):
env['ICONV_LIB'] = 'libiconv'
elif conf.CheckFunc('iconv_open'):
env['ICONV_LIB'] = None
else:
print 'Did not find iconv or libiconv, exiting!'
print 'Please check config.log for more information.'
Exit(1)
# check socket libs
socket_libs = []
if conf.CheckLib('socket'):
socket_libs.append('socket')
# nsl is the network services library and provides a
# transport-level interface to networking services.
if conf.CheckLib('nsl'):
socket_libs.append('nsl')
# check available boost libs (since lyx1.4 does not use iostream)
boost_libs = []
for lib in ['signals', 'regex']:
if os.path.isdir(os.path.join(top_src_dir, 'boost', 'libs', lib)):
boost_libs.append(lib)
# check boost libraries
boost_opt = ARGUMENTS.get('boost', 'auto')
# check for system boost
lib_paths = env['LIBPATH'] + ['/usr/lib', '/usr/local/lib']
inc_paths = env['CPPPATH'] + ['/usr/include', '/usr/local/include']
# default to $BUILDDIR/libs (use None since this path will be added anyway)
boost_libpath = None
# here I assume that all libraries are in the same directory
if boost_opt == 'included':
boost_libraries = ['included_boost_%s' % x for x in boost_libs]
included_boost = True
env['BOOST_INC_PATH'] = '$TOP_SRCDIR/boost'
elif boost_opt == 'auto':
res = conf.CheckBoostLibraries(boost_libs, lib_paths, inc_paths, boost_version, mode == 'debug')
# if not found, use local boost
if res[0] is None:
boost_libraries = ['included_boost_%s' % x for x in boost_libs]
included_boost = True
env['BOOST_INC_PATH'] = '$TOP_SRCDIR/boost'
else:
included_boost = False
(boost_libraries, boost_libpath, env['BOOST_INC_PATH']) = res
elif boost_opt == 'system':
res = conf.CheckBoostLibraries(boost_libs, lib_paths, inc_paths, boost_version, mode == 'debug')
if res[0] is None:
print "Can not find system boost libraries with version %s " % boost_version
print "Please supply a path through extra_lib_path and try again."
print "Or use boost=included to use included boost libraries."
Exit(2)
else:
included_boost = False
(boost_libraries, boost_libpath, env['BOOST_INC_PATH']) = res
if boost_libpath is not None:
env.AppendUnique(LIBPATH = [boost_libpath])
env['ENABLE_NLS'] = env['nls']
if not env['ENABLE_NLS']:
intl_libs = []
included_gettext = False
else:
# check gettext libraries
gettext_opt = ARGUMENTS.get('gettext', 'auto')
# check for system gettext
succ = False
if gettext_opt in ['auto', 'system']:
if conf.CheckFunc('gettext'):
included_gettext = False
intl_libs = []
succ = True
elif conf.CheckLib('intl'):
included_gettext = False
intl_libs = ['intl']
succ = True
else: # no found
if gettext_opt == 'system':
print "Can not find system gettext library"
print "Please supply a path through extra_lib_path and try again."
print "Or use gettext=included to use included gettext libraries."
Exit(2)
# now, auto and succ = false, or gettext=included
if not succ:
# we do not need to set LIBPATH now.
included_gettext = True
intl_libs = ['included_intl']
#
# check for msgfmt command
env['MSGFMT'] = conf.CheckCommand('msgfmt')
env['MSGMERGE'] = conf.CheckCommand('msgmerge')
env['XGETTEXT'] = conf.CheckCommand('xgettext')
env['MSGUNIQ'] = conf.CheckCommand('msguniq')
# if under windows, check the nsis compiler
if platform_name == 'win32':
env['NSIS'] = conf.CheckNSIS()
# cygwin packaging requires the binaries to be stripped
if platform_name == 'cygwin':
env['STRIP'] = conf.CheckCommand('strip')
#
# Customized builders
#
# install customized builders
env['BUILDERS']['substFile'] = Builder(action = utils.env_subst)
#env['BUILDERS']['installTOC'] = Builder(action = utils.env_toc)
env['BUILDERS']['potfiles'] = Builder(action = utils.env_potfiles)
#----------------------------------------------------------
# Generating config.h
#----------------------------------------------------------
aspell_lib = 'aspell'
# assume that we use aspell, aspelld compiled for msvc
if platform_name == 'win32' and mode == 'debug' and use_vc:
aspell_lib = 'aspelld'
hunspell_lib = 'libhunspell'
# check the existence of config.h
config_h = os.path.join(env.Dir('$BUILDDIR/src').path, 'config.h')
boost_config_h = os.path.join(env.Dir('$BUILDDIR/boost').path, 'config.h')
#
print "Creating %s..." % boost_config_h
#
utils.createConfigFile(conf,
config_file = boost_config_h,
config_pre = r'''/* boost/config.h. Generated by SCons. */
/* -*- C++ -*- */
/*
* \file config.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* This is the compilation configuration file for LyX.
* It was generated by scon.
* You might want to change some of the defaults if something goes wrong
* during the compilation.
*/
#ifndef _BOOST_CONFIG_H
#define _BOOST_CONFIG_H
''',
headers = [
('ostream', 'HAVE_OSTREAM', 'cxx'),
('locale', 'HAVE_LOCALE', 'cxx'),
('sstream', 'HAVE_SSTREAM', 'cxx'),
],
custom_tests = [
(env.has_key('assertions') and env['assertions'] and mode == 'debug',
'ENABLE_ASSERTIONS',
'Define if you want assertions to be enabled in the code'
),
],
types = [
('wchar_t', 'HAVE_WCHAR_T', None),
],
config_post = '''
#if defined(HAVE_OSTREAM) && defined(HAVE_LOCALE) && defined(HAVE_SSTREAM)
# define USE_BOOST_FORMAT 1
#else
# define USE_BOOST_FORMAT 0
#endif
#if !defined(ENABLE_ASSERTIONS)
# define BOOST_DISABLE_ASSERTS 1
#endif
#define BOOST_ENABLE_ASSERT_HANDLER 1
#define BOOST_DISABLE_THREADS 1
#define BOOST_NO_WSTRING 1
#ifdef __CYGWIN__
# define BOOST_POSIX 1
# define BOOST_POSIX_API 1
# define BOOST_POSIX_PATH 1
#endif
#define BOOST_ALL_NO_LIB 1
/*
* the FreeBSD libc uses UCS4, but libstdc++ has no proper wchar_t
* support compiled in:
* http://gcc.gnu.org/onlinedocs/libstdc++/faq/index.html#3_9
* And we are not interested at all what libc
* does: What we need is a 32bit wide wchar_t, and a libstdc++ that
* has the needed wchar_t support and uses UCS4. Whether it
* implements this with the help of libc, or whether it has own code
* does not matter for us, because we don't use libc directly (Georg)
*/
#if defined(HAVE_WCHAR_T) && SIZEOF_WCHAR_T == 4 && !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__)
# define USE_WCHAR_T
#endif
#endif
'''
)
#
print "\nGenerating %s..." % config_h
# AIKSAURUS_H_LOCATION
if (conf.CheckCXXHeader("Aiksaurus.h")):
aik_location = '<Aiksaurus.h>'
elif (conf.CheckCXXHeader("Aiksaurus/Aiksaurus.h")):
aik_location = '<Aiksaurus/Aiksaurus.h>'
else:
aik_location = ''
# determine headers to use
spell_opt = ARGUMENTS.get('spell', 'auto')
env['USE_ASPELL'] = False
env['USE_ENCHANT'] = False
env['USE_HUNSPELL'] = False
if spell_opt in ['auto', 'aspell'] and conf.CheckLib(aspell_lib):
spell_engine = 'USE_ASPELL'
elif spell_opt in ['auto', 'enchant'] and conf.CheckLib('enchant'):
spell_engine = 'USE_ENCHANT'
elif spell_opt in ['auto', 'hunspell'] and conf.CheckLib(hunspell_lib):
spell_engine = 'USE_HUNSPELL'
else:
spell_engine = None
if spell_engine is not None:
env[spell_engine] = True
else:
if spell_opt == 'auto':
print "Warning: Can not locate any spell checker"
elif spell_opt != 'no':
print "Warning: Can not locate specified spell checker:", spell_opt
print 'Please check config.log for more information.'
Exit(1)
# check arg types of select function
(select_arg1, select_arg234, select_arg5) = conf.CheckSelectArgType()
# check the size of wchar_t
sizeof_wchar_t = conf.CheckSizeOfWChar()
# something wrong
if sizeof_wchar_t == 0:
print 'Error: Can not determine the size of wchar_t.'
print 'Please check config.log for more information.'
Exit(1)
# fill in the version info
env['VERSION_INFO'] = '''Configuration
Host type: %s
Special build flags: %s
C Compiler: %s
C Compiler flags: %s %s
C++ Compiler: %s
C++ Compiler LyX flags: %s
C++ Compiler flags: %s %s
Linker flags: %s
Linker user flags: %s
Build info:
Builing directory: %s
Libraries paths: %s
Boost libraries: %s
include search path: %s
Frontend:
Frontend: %s
Packaging: %s
LyX dir: %s
LyX files dir: %s
''' % (platform_name,
env.subst('$CCFLAGS'), env.subst('$CC'),
env.subst('$CPPFLAGS'), env.subst('$CFLAGS'),
env.subst('$CXX'), env.subst('$CXXFLAGS'),
env.subst('$CPPFLAGS'), env.subst('$CXXFLAGS'),
env.subst('$LINKFLAGS'), env.subst('$LINKFLAGS'),
env.subst('$LOCALLIBPATH'),
env.subst('$LIBPATH'), str(boost_libraries),
env.subst('$CPPPATH'),
frontend, packaging_method,
prefix, env['LYX_DATA_DIR'])
#
# create config.h
result = utils.createConfigFile(conf,
config_file = config_h,
config_pre = r'''/* config.h. Generated by SCons. */
/* -*- C++ -*- */
/*
* \file config.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* This is the compilation configuration file for LyX.
* It was generated by scon.
* You might want to change some of the defaults if something goes wrong
* during the compilation.
*/
#ifndef _CONFIG_H
#define _CONFIG_H
''',
headers = [
('io.h', 'HAVE_IO_H', 'c'),
('limits.h', 'HAVE_LIMITS_H', 'c'),
('locale.h', 'HAVE_LOCALE_H', 'c'),
('process.h', 'HAVE_PROCESS_H', 'c'),
('stdlib.h', 'HAVE_STDLIB_H', 'c'),
('string.h', 'HAVE_STRING_H', 'c'),
('sys/stat.h', 'HAVE_SYS_STAT_H', 'c'),
('sys/time.h', 'HAVE_SYS_TIME_H', 'c'),
('sys/types.h', 'HAVE_SYS_TYPES_H', 'c'),
('sys/utime.h', 'HAVE_SYS_UTIME_H', 'c'),
('sys/socket.h', 'HAVE_SYS_SOCKET_H', 'c'),
('unistd.h', 'HAVE_UNISTD_H', 'c'),
('utime.h', 'HAVE_UTIME_H', 'c'),
('direct.h', 'HAVE_DIRECT_H', 'c'),
('istream', 'HAVE_ISTREAM', 'cxx'),
('ios', 'HAVE_IOS', 'cxx'),
],
functions = [
('open', 'HAVE_OPEN', None),
('chmod', 'HAVE_CHMOD', None),
('close', 'HAVE_CLOSE', None),
('popen', 'HAVE_POPEN', None),
('pclose', 'HAVE_PCLOSE', None),
('_open', 'HAVE__OPEN', None),
('_close', 'HAVE__CLOSE', None),
('_popen', 'HAVE__POPEN', None),
('_pclose', 'HAVE__PCLOSE', None),
('getpid', 'HAVE_GETPID', None),
('_getpid', 'HAVE__GETPID', None),
('mkdir', 'HAVE_MKDIR', None),
('_mkdir', 'HAVE__MKDIR', None),
('mktemp', 'HAVE_MKTEMP', None),
('mkstemp', 'HAVE_MKSTEMP', None),
('strerror', 'HAVE_STRERROR', None),
('getcwd', 'HAVE_GETCWD', None),
('setenv', 'HAVE_SETENV', None),
('putenv', 'HAVE_PUTENV', None),
('fcntl', 'HAVE_FCNTL', None),
('mkfifo', 'HAVE_MKFIFO', None),
],
declarations = [
('mkstemp', 'HAVE_DECL_MKSTEMP', ['unistd.h', 'stdlib.h']),
],
types = [
('std::istreambuf_iterator<std::istream>', 'HAVE_DECL_ISTREAMBUF_ITERATOR',
'#include <streambuf>\n#include <istream>'),
('wchar_t', 'HAVE_WCHAR_T', None),
('mode_t', 'HAVE_MODE_T', "#include <sys/types.h>"),
],
libs = [
('gdi32', 'HAVE_LIBGDI32'),
(('Aiksaurus', 'libAiksaurus'), 'HAVE_LIBAIKSAURUS', 'AIKSAURUS_LIB'),
],
custom_tests = [
(conf.CheckType('pid_t', includes='#include <sys/types.h>'),
'HAVE_PID_T',
'Define is sys/types.h does not have pid_t',
'',
'#define pid_t int',
),
(conf.CheckCXXGlobalCstd(),
'CXX_GLOBAL_CSTD',
'Define if your C++ compiler puts C library functions in the global namespace'
),
(conf.CheckMkdirOneArg(),
'MKDIR_TAKES_ONE_ARG',
'Define if mkdir takes only one argument.'
),
(conf.CheckIconvConst(),
'ICONV_CONST',
'Define as const if the declaration of iconv() needs const.',
'#define ICONV_CONST const',
'#define ICONV_CONST',
),
(conf.CheckLC_MESSAGES(),
'HAVE_LC_MESSAGES',
'Define if your <locale.h> file defines LC_MESSAGES.'
),
(devel_version, 'DEVEL_VERSION', 'Whether or not a development version'),
(env['nls'],
'ENABLE_NLS',
"Define to 1 if translation of program messages to the user's native anguage is requested.",
),
(env['nls'] and not included_gettext,
'HAVE_GETTEXT',
'Define to 1 if using system gettext library'
),
(env.has_key('concept_checks') and env['concept_checks'],
'_GLIBCXX_CONCEPT_CHECKS',
'libstdc++ concept checking'
),
(env.has_key('stdlib_debug') and env['stdlib_debug'],
'_GLIBCXX_DEBUG',
'libstdc++ debug mode'
),
(env.has_key('stdlib_debug') and env['stdlib_debug'],
'_GLIBCXX_DEBUG_PEDANTIC',
'libstdc++ pedantic debug mode'
),
(os.name != 'nt', 'BOOST_POSIX',
'Indicates to boost < 1.34 which API to use (posix or windows).'
),
(os.name != 'nt', 'BOOST_POSIX_API',
'Indicates to boost 1.34 which API to use (posix or windows).'
),
(os.name != 'nt', 'BOOST_POSIX_PATH',
'Indicates to boost 1.34 which path style to use (posix or windows).'
),
(spell_engine is not None, spell_engine,
'Spell engine to use'
),
# we need to know the byte order for unicode conversions
(sys.byteorder == 'big', 'WORDS_BIGENDIAN',
'Define to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX).'
),
],
extra_items = [
('#define PACKAGE "%s%s"' % (package, program_suffix),
'Name of package'),
('#define PACKAGE_BUGREPORT "%s"' % package_bugreport,
'Define to the address where bug reports for this package should be sent.'),
('#define PACKAGE_NAME "%s"' % package_name,
'Define to the full name of this package.'),
('#define PACKAGE_STRING "%s"' % package_string,
'Define to the full name and version of this package.'),
('#define PACKAGE_TARNAME "%s"' % package_tarname,
'Define to the one symbol short name of this package.'),
('#define PACKAGE_VERSION "%s"' % package_version,
'Define to the version of this package.'),
('#define LYX_MAJOR_VERSION %d' % int(lyx_major_version),
'Define to the major version of this package.'),
('#define LYX_MINOR_VERSION %d' % int(lyx_minor_version),
'Define to the minor version of this package.'),
('#define VERSION_INFO "%s"' % env['VERSION_INFO'].replace('\n', '\\n'),
'Full version info'),
('#define LYX_DIR_VER "LYX_DIR_%sx"' % majmin_ver,
'Versioned env var for system dir'),
('#define LYX_USERDIR_VER "LYX_USERDIR_%sx"' % majmin_ver,
'Versioned env var for user dir'),
('#define LYX_DATE "%s"' % lyx_date,
'Date of release'),
('#define PROGRAM_SUFFIX "%s"' % program_suffix,
'Program version suffix'),
('#define LYX_ABS_INSTALLED_DATADIR "%s"' % env.subst('$LYX_DATA_DIR').replace('\\', '/'),
'Hard coded system support directory'),
('#define LYX_ABS_INSTALLED_LOCALEDIR "%s"' % env.subst('$LOCALEDIR').replace('\\', '/'),
'Hard coded locale directory'),
('#define LYX_ABS_TOP_SRCDIR "%s"' % env.subst('$TOP_SRCDIR').replace('\\', '/'),
'Top source directory'),
('#define BOOST_ALL_NO_LIB 1',
'disable automatic linking of boost libraries.'),
('#define LYX_USE_TR1 1',
'use TR1'),
('#define USE_%s_PACKAGING 1' % packaging_method.upper(),
'Packaging method'),
('#define AIKSAURUS_H_LOCATION ' + aik_location,
'Aiksaurus include file'),
('#define SELECT_TYPE_ARG1 %s' % select_arg1,
"Define to the type of arg 1 for `select'."),
('#define SELECT_TYPE_ARG234 %s' % select_arg234,
"Define to the type of arg 2, 3, 4 for `select'."),
('#define SELECT_TYPE_ARG5 %s' % select_arg5,
"Define to the type of arg 5 for `select'."),
('#define SIZEOF_WCHAR_T %d' % sizeof_wchar_t,
'Define to be the size of type wchar_t'),
],
config_post = '''/************************************************************
** You should not need to change anything beyond this point */
#ifndef HAVE_STRERROR
#if defined(__cplusplus)
extern "C"
#endif
char * strerror(int n);
#endif
#include <../boost/config.h>
#endif
'''
)
# these keys are needed in env
for key in ['USE_ASPELL', 'USE_ENCHANT', 'USE_HUNSPELL', 'HAVE_FCNTL',\
'HAVE_LIBGDI32', 'HAVE_LIBAIKSAURUS', 'AIKSAURUS_LIB']:
# USE_ASPELL etc does not go through result
if result.has_key(key):
env[key] = result[key]
#
# if nls=yes and gettext=included, create intl/config.h
# intl/libintl.h etc
#
intl_config_h = os.path.join(env.Dir('$BUILDDIR/intl').path, 'config.h')
if env['nls'] and included_gettext:
#
print "Creating %s..." % intl_config_h
#
# create intl/config.h
result = utils.createConfigFile(conf,
config_file = intl_config_h,
config_pre = r'''/* intl/config.h. Generated by SCons. */
/* -*- C++ -*- */
/*
* \file config.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* This is the compilation configuration file for LyX.
* It was generated by scon.
* You might want to change some of the defaults if something goes wrong
* during the compilation.
*/
#ifndef _INTL_CONFIG_H
#define _INTL_CONFIG_H
''',
headers = [
('unistd.h', 'HAVE_UNISTD_H', 'c'),
('inttypes.h', 'HAVE_INTTYPES_H', 'c'),
('string.h', 'HAVE_STRING_H', 'c'),
('strings.h', 'HAVE_STRINGS_H', 'c'),
('argz.h', 'HAVE_ARGZ_H', 'c'),
('limits.h', 'HAVE_LIMITS_H', 'c'),
('alloca.h', 'HAVE_ALLOCA_H', 'c'),
('stddef.h', 'HAVE_STDDEF_H', 'c'),
('stdint.h', 'HAVE_STDINT_H', 'c'),
('sys/param.h', 'HAVE_SYS_PARAM_H', 'c'),
],
functions = [
('getcwd', 'HAVE_GETCWD', None),
('stpcpy', 'HAVE_STPCPY', None),
('strcasecmp', 'HAVE_STRCASECMP', None),
('strdup', 'HAVE_STRDUP', None),
('strtoul', 'HAVE_STRTOUL', None),
('alloca', 'HAVE_ALLOCA', None),
('__fsetlocking', 'HAVE___FSETLOCKING', None),
('mempcpy', 'HAVE_MEMPCPY', None),
('__argz_count', 'HAVE___ARGZ_COUNT', None),
('__argz_next', 'HAVE___ARGZ_NEXT', None),
('__argz_stringify', 'HAVE___ARGZ_STRINGIFY', None),
('setlocale', 'HAVE_SETLOCALE', None),
('tsearch', 'HAVE_TSEARCH', None),
('getegid', 'HAVE_GETEGID', None),
('getgid', 'HAVE_GETGID', None),
('getuid', 'HAVE_GETUID', None),
('wcslen', 'HAVE_WCSLEN', None),
('asprintf', 'HAVE_ASPRINTF', None),
('wprintf', 'HAVE_WPRINTF', None),
('snprintf', 'HAVE_SNPRINTF', None),
('printf', 'HAVE_POSIX_PRINTF', None),
('fcntl', 'HAVE_FCNTL', None),
],
types = [
('intmax_t', 'HAVE_INTMAX_T', None),
('long double', 'HAVE_LONG_DOUBLE', None),
('long long', 'HAVE_LONG_LONG', None),
('wchar_t', 'HAVE_WCHAR_T', None),
('wint_t', 'HAVE_WINT_T', None),
('uintmax_t', 'HAVE_INTTYPES_H_WITH_UINTMAX', '#include <inttypes.h>'),
('uintmax_t', 'HAVE_STDINT_H_WITH_UINTMAX', '#include <stdint.h>'),
],
libs = [
('c', 'HAVE_LIBC'),
],
custom_tests = [
(conf.CheckLC_MESSAGES(),
'HAVE_LC_MESSAGES',
'Define if your <locale.h> file defines LC_MESSAGES.'
),
(conf.CheckIconvConst(),
'ICONV_CONST',
'Define as const if the declaration of iconv() needs const.',
'#define ICONV_CONST const',
'#define ICONV_CONST',
),
(conf.CheckType('intmax_t', includes='#include <stdint.h>') or \
conf.CheckType('intmax_t', includes='#include <inttypes.h>'),
'HAVE_INTMAX_T',
"Define to 1 if you have the `intmax_t' type."
),
(env.has_key('nls') and env['nls'],
'ENABLE_NLS',
"Define to 1 if translation of program messages to the user's native anguage is requested.",
),
],
extra_items = [
('#define HAVE_ICONV 1', 'Define if iconv or libiconv is found'),
('#define SIZEOF_WCHAR_T %d' % sizeof_wchar_t,
'Define to be the size of type wchar_t'),
],
config_post = '#endif'
)
# these keys are needed in env
for key in ['HAVE_ASPRINTF', 'HAVE_WPRINTF', 'HAVE_SNPRINTF', \
'HAVE_POSIX_PRINTF', 'HAVE_LIBC']:
# USE_ASPELL etc does not go through result
if result.has_key(key):
env[key] = result[key]
# this looks misplaced, but intl/libintl.h is needed by src/message.C
if env['nls'] and included_gettext:
# libgnuintl.h.in => libintl.h
env.Depends('$TOP_SRCDIR/intl/libintl.h', '$BUILDDIR/intl/config.h')
env.substFile('$BUILDDIR/intl/libintl.h', '$TOP_SRCDIR/intl/libgnuintl.h.in')
env.Command('$BUILDDIR/intl/libgnuintl.h', '$BUILDDIR/intl/libintl.h',
[Copy('$TARGET', '$SOURCE')])
#
# Finish auto-configuration
env = conf.Finish()
#----------------------------------------------------------
# Now set up our build process accordingly
#----------------------------------------------------------
if env['ICONV_LIB'] is None:
system_libs = []
else:
system_libs = [env['ICONV_LIB']]
if platform_name in ['win32', 'cygwin']:
# the final link step needs stdc++ to succeed under mingw
# FIXME: shouldn't g++ automatically link to stdc++?
if use_vc:
system_libs += ['ole32', 'shlwapi', 'psapi', 'shell32', 'advapi32']
else:
system_libs += ['shlwapi', 'psapi', 'stdc++', 'z']
elif platform_name == 'cygwin' and env['X11']:
system_libs += ['GL', 'Xmu', 'Xi', 'Xrender', 'Xrandr',
'Xcursor', 'Xft', 'freetype', 'fontconfig', 'Xext', 'X11', 'SM', 'ICE',
'resolv', 'pthread', 'z']
else:
system_libs += ['z']
libs = [
('HAVE_LIBGDI32', 'gdi32'),
('HAVE_LIBAIKSAURUS', env['AIKSAURUS_LIB']),
('USE_ASPELL', aspell_lib),
('USE_ENCHANT', 'enchant'),
('USE_HUNSPELL', hunspell_lib)
]
for lib in libs:
if env[lib[0]]:
system_libs.append(lib[1])
#
# Build parameters CPPPATH etc
#
if env['X11']:
env.AppendUnique(LIBPATH = ['/usr/X11R6/lib'])
#
# boost: for boost header files
# BUILDDIR/src: for config.h
# TOP_SRCDIR/src: for support/* etc
#
env['CPPPATH'] += ['$BUILDDIR/src', '$TOP_SRCDIR/src']
#
# Separating boost directories from CPPPATH stops scons from building
# the dependency tree for boost header files, and effectively reduce
# the null build time of lyx from 29s to 16s. Since lyx may tweak local
# boost headers, the following is not 100% safe.
# env.AppendUnique(CPPPATH = ['$BOOST_INC_PATH'])
env.PrependUnique(CCFLAGS = ['$INCPREFIX$BOOST_INC_PATH'])
# for intl/config.h, intl/libintl.h and intl/libgnuintl.h
if env['nls'] and included_gettext:
env['CPPPATH'].append('$BUILDDIR/intl')
#
#
# A Link script for cygwin see
# http://www.cygwin.com/ml/cygwin/2004-09/msg01101.html
# http://www.cygwin.com/ml/cygwin-apps/2004-09/msg00309.html
# for details
#
if platform_name == 'cygwin':
ld_script_path = '/tmp'
ld_script = utils.installCygwinLDScript(ld_script_path)
env.AppendUnique(LINKFLAGS = ['-Wl,--enable-runtime-pseudo-reloc',
'-Wl,--script,%s' % ld_script, '-Wl,-s'])
#---------------------------------------------------------
# Frontend related variables (QTDIR etc)
#---------------------------------------------------------
#
# create a separate environment so that other files do not have
# to be built with all the include directories etc
#
if frontend == 'qt4':
env['BUILDERS']['qtResource'] = Builder(action = utils.env_qtResource)
# handle qt related user specified paths
# set environment so that moc etc can be found even if its path is not set properly
if env.has_key('qt_dir') and env['qt_dir']:
env['QTDIR'] = env['qt_dir']
if os.path.isdir(os.path.join(env['qt_dir'], 'bin')):
os.environ['PATH'] += os.pathsep + os.path.join(env['qt_dir'], 'bin')
env.PrependENVPath('PATH', os.path.join(env['qt_dir'], 'bin'))
if os.path.isdir(os.path.join(env['qt_dir'], 'lib')):
env.PrependENVPath('PKG_CONFIG_PATH', os.path.join(env['qt_dir'], 'lib'))
# if separate qt_lib_path is given
if env.has_key('qt_lib_path') and env['qt_lib_path']:
qt_lib_path = env.subst('$qt_lib_path')
env.AppendUnique(LIBPATH = [qt_lib_path])
env.PrependENVPath('PKG_CONFIG_PATH', qt_lib_path)
else:
qt_lib_path = None
# if separate qt_inc_path is given
if env.has_key('qt_inc_path') and env['qt_inc_path']:
qt_inc_path = env['qt_inc_path']
else:
qt_inc_path = None
# local qt4 toolset from
# http://www.iua.upf.es/~dgarcia/Codders/sconstools.html
#
# NOTE: I have to patch qt4.py since it does not automatically
# process .C file!!! (add to cxx_suffixes )
#
env.Tool('qt4', [scons_dir])
env['QT_AUTOSCAN'] = 0
env['QT4_AUTOSCAN'] = 0
env['QT4_UICDECLFLAGS'] = '-tr lyx::qt_'
if platform_name == 'win32':
env['QT4_MOCFROMHFLAGS'] = '-D_WIN32'
if qt_lib_path is None:
qt_lib_path = os.path.join(env.subst('$QTDIR'), 'lib')
if qt_inc_path is None:
qt_inc_path = os.path.join(env.subst('$QTDIR'), 'include')
conf = Configure(env,
custom_tests = {
'CheckPackage' : utils.checkPackage,
'CheckCommand' : utils.checkCommand,
}
)
succ = False
# first: try pkg_config
if env['HAS_PKG_CONFIG']:
succ = conf.CheckPackage('QtCore') or conf.CheckPackage('QtCore4')
# FIXME: use pkg_config information?
#env['QT4_PKG_CONFIG'] = succ
# second: try to link to it
if not succ:
# Under linux, I can test the following perfectly
# Under windows, lib names need to passed as libXXX4.a ...
if platform_name == 'win32':
succ = conf.CheckLibWithHeader('QtCore4', 'QtGui/QApplication', 'c++', 'QApplication qapp();')
else:
succ = conf.CheckLibWithHeader('QtCore', 'QtGui/QApplication', 'c++', 'QApplication qapp();')
# still can not find it
if not succ:
print 'Did not find qt libraries, exiting!'
print 'Please check config.log for more information.'
Exit(1)
#
# Now, determine the correct suffix:
qt_libs = ['QtCore', 'QtGui']
if platform_name == 'win32':
if mode == 'debug' and use_vc and \
conf.CheckLibWithHeader('QtCored4', 'QtGui/QApplication', 'c++', 'QApplication qapp();'):
qt_lib_suffix = 'd4'
use_qt_debug_libs = True
else:
qt_lib_suffix = '4'
use_qt_debug_libs = False
else:
if mode == 'debug' and conf.CheckLibWithHeader('QtCore_debug', 'QtGui/QApplication', 'c++', 'QApplication qapp();'):
qt_lib_suffix = '_debug'
use_qt_debug_libs = True
else:
qt_lib_suffix = ''
use_qt_debug_libs = False
env.EnableQt4Modules(qt_libs, debug = (mode == 'debug' and use_qt_debug_libs))
frontend_libs = [x + qt_lib_suffix for x in qt_libs]
qtcore_lib = ['QtCore' + qt_lib_suffix]
# check uic and moc commands for qt frontends
if conf.CheckCommand('uic') == None or conf.CheckCommand('moc') == None:
print 'uic or moc command is not found for frontend', frontend
Exit(1)
# if MSVC 2005 and 2008 is used, we will need to embed lyx.exe.manifest to lyx.exe
# for MSVC 2010 this is not necessary
#if use_vc:
# env['LINKCOM'] = [env['LINKCOM'], \
# 'mt.exe /MANIFEST %s /outputresource:$TARGET;1' % \
# env.File('$BUILDDIR/lyx.exe.manifest').path]
env = conf.Finish()
#
# Report results
#
print env['VERSION_INFO']
#
# Mingw command line may be too short for our link usage,
# Here we use a trick from scons wiki
# http://www.scons.org/cgi-sys/cgiwrap/scons/moin.cgi/LongCmdLinesOnWin32
#
# I also would like to add logging (commands only) capacity to the
# spawn system.
logfile = env.get('logfile', default_log_file)
if logfile != '' or platform_name == 'win32':
import time
utils.setLoggedSpawn(env, logfile, longarg = (platform_name == 'win32'),
info = '''# This is a log of commands used by scons to build lyx
# Time: %s
# Command: %s
# Info: %s
''' % (time.asctime(), ' '.join(sys.argv),
env['VERSION_INFO'].replace('\n','\n# ')) )
# Cleanup stuff
#
# -h will print out help info
Help(opts.GenerateHelpText(env))
#----------------------------------------------------------
# Start building
#----------------------------------------------------------
# this has been the source of problems on some platforms...
# I find that I need to supply it with full path name
env.SConsignFile(os.path.join(Dir(env['BUILDDIR']).abspath, '.sconsign'))
# this usage needs further investigation.
#env.CacheDir('%s/Cache/%s' % (env['BUILDDIR'], frontend))
env.VariantDir('$BUILDDIR/boost', '$TOP_SRCDIR/boost/libs', duplicate = 0)
env.VariantDir('$BUILDDIR/intl', '$TOP_SRCDIR/intl', duplicate = 0)
env.VariantDir('$BUILDDIR/src', '$TOP_SRCDIR/src', duplicate = 0)
env.VariantDir('$BUILDDIR/src', '$TOP_SRCDIR/src', duplicate = 0)
print "Building all targets recursively"
def libExists(libname):
''' Check whether or not lib $LOCALLIBNAME/libname already exists'''
return os.path.isfile(File(env.subst('$LOCALLIBPATH/${LIBPREFIX}%s$LIBSUFFIX'%libname)).abspath)
if (included_boost and not libExists('included_boost_regex')) or 'boost' in BUILD_TARGETS:
#
# boost/libs
#
for lib in boost_libs:
boostlib = env.StaticLibrary(
target = '$LOCALLIBPATH/included_boost_%s' % lib,
source = ['$BUILDDIR/boost/%s/src/%s' % (lib, x) for x in eval('boost_libs_%s_src_files' % lib)],
# do not use global CPPPATH because src/config.h will mess up with boost/config.h
CPPPATH = ['$BUILDDIR/boost'] + extra_inc_paths,
CCFLAGS = ['$CCFLAGS', '$INCPREFIX$TOP_SRCDIR/boost', '-DBOOST_USER_CONFIG="<config.h>"']
)
Alias('boost', boostlib)
if (included_gettext and not libExists('included_intl')) or 'intl' in BUILD_TARGETS:
#
# intl
#
INTL_CCFLAGS = [
r'-DLOCALEDIR=\"' + env['LOCALEDIR'].replace('\\', '\\\\') + r'\"',
r'-DLOCALE_ALIAS_PATH=\"' + env['LOCALEDIR'].replace('\\', '\\\\') + r'\"',
r'-DLIBDIR=\"' + env['TOP_SRCDIR'].replace('\\', '\\\\') + r'/lib\"',
'-DIN_LIBINTL',
'-DENABLE_RELOCATABLE=1',
'-DIN_LIBRARY',
r'-DINSTALLDIR=\"' + prefix.replace('\\', '\\\\') + r'/lib\"',
'-DNO_XMALLOC',
'-Dset_relocation_prefix=libintl_set_relocation_prefix',
'-Drelocate=libintl_relocate',
'-DDEPENDS_ON_LIBICONV=1',
'-DHAVE_CONFIG_H'
]
if use_vc:
INTL_CCFLAGS.extend(['/Dinline#', '/D__attribute__(x)#', '/Duintmax_t=UINT_MAX'])
intl = env.StaticLibrary(
target = '$LOCALLIBPATH/included_intl',
LIBS = ['c'],
CCFLAGS = INTL_CCFLAGS,
# do not use global CPPPATH because src/config.h will mess up with intl/config.h
CPPPATH = ['$BUILDDIR/intl'] + extra_inc_paths,
source = ['$BUILDDIR/intl/%s' % x for x in intl_files]
)
Alias('intl', intl)
#
# src/support
#
env['QT4_MOCHPREFIX'] = 'moc_'
env['QT4_MOCHSUFFIX'] = '.cpp'
support_moced_files = [env.Moc4('$BUILDDIR/src/support/%s' % x)
for x in src_support_header_files ]
support = env.StaticLibrary(
target = '$LOCALLIBPATH/support',
source = ['$BUILDDIR/src/support/%s' % x for x in src_support_files],
CCFLAGS = [
'$CCFLAGS',
'-DHAVE_CONFIG_H',
'-DQT_NO_STL',
'-DQT_NO_KEYWORDS',
],
CPPPATH = ['$CPPPATH', '$BUILDDIR/src/support']
)
Alias('support', support)
#
if env['HAVE_FCNTL']:
client = env.Program(
target = '$BUILDDIR/src/client/lyxclient',
LIBS = ['support'] + intl_libs + system_libs +
socket_libs + boost_libraries + qtcore_lib,
source = ['$BUILDDIR/src/client/%s' % x for x in src_client_files] + \
utils.createResFromIcon(env, 'lyx.ico', '$LOCALLIBPATH/client.rc')
)
Alias('client', env.Command(os.path.join('$BUILDDIR', os.path.split(str(client[0]))[1]),
client, [Copy('$TARGET', '$SOURCE')]))
else:
client = None
Alias('client', client)
#
# tex2lyx
#
for file in src_tex2lyx_copied_files + src_tex2lyx_copied_header_files:
env.Command('$BUILDDIR/src/tex2lyx/'+file, '$TOP_SRCDIR/src/'+file,
[Copy('$TARGET', '$SOURCE')])
tex2lyx = env.Program(
target = '$BUILDDIR/src/tex2lyx/tex2lyx',
LIBS = ['support'] + boost_libraries + intl_libs + system_libs + qtcore_lib,
source = ['$BUILDDIR/src/tex2lyx/%s' % x for x in src_tex2lyx_files + src_tex2lyx_copied_files] + \
utils.createResFromIcon(env, 'lyx.ico', '$LOCALLIBPATH/tex2lyx.rc'),
CPPPATH = ['$BUILDDIR/src/tex2lyx', '$BUILDDIR/src', '$CPPPATH'],
LIBPATH = ['#$LOCALLIBPATH', '$LIBPATH'],
CCFLAGS = ['$CCFLAGS', '-DTEX2LYX'],
)
Alias('tex2lyx', env.Command(os.path.join('$BUILDDIR', os.path.split(str(tex2lyx[0]))[1]),
tex2lyx, [Copy('$TARGET', '$SOURCE')]))
Alias('tex2lyx', tex2lyx)
#
# Build lyx with given frontend
#
if env.has_key('USE_ASPELL') and env['USE_ASPELL']:
src_post_files.append('AspellChecker.cpp')
src_post_files.append('PersonalWordList.cpp')
elif env.has_key('USE_ENCHANT') and env['USE_ENCHANT']:
src_post_files.append('EnchantChecker.cpp')
src_post_files.append('PersonalWordList.cpp')
elif env.has_key('USE_HUNSPELL') and env['USE_HUNSPELL']:
src_post_files.append('HunspellChecker.cpp')
src_post_files.append('PersonalWordList.cpp')
# tells scons how to get these moced files, although not all moced files are needed
# (or are actually generated).
qt4_moced_files = [env.Moc4('$BUILDDIR/src/frontends/qt4/%s' % x)
for x in src_frontends_qt4_header_files ]
src_moced_files = [env.Moc4('$BUILDDIR/src/%s' % x)
for x in src_header_files ]
ui_files = [env.Uic4('$BUILDDIR/src/frontends/qt4/ui/%s' % x.split('.')[0])
for x in src_frontends_qt4_ui_files]
resource = env.Qrc(env.qtResource(
'$BUILDDIR/src/frontends/qt4/Resource.qrc',
['$TOP_SRCDIR/lib/images/%s' % x for x in lib_images_files] +
['$TOP_SRCDIR/lib/images/math/%s' % x for x in lib_images_math_files] +
['$TOP_SRCDIR/lib/images/classic/%s' % x for x in lib_images_classic_files] +
['$TOP_SRCDIR/lib/images/commands/%s' % x for x in lib_images_commands_files] +
['$TOP_SRCDIR/lib/images/oxygen/%s' % x for x in lib_images_oxygen_files]))
lyx = env.Program(
target = '$BUILDDIR/lyx',
source = ['$BUILDDIR/src/main.cpp'] +
['$BUILDDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_files] +
resource +
['$BUILDDIR/src/graphics/%s' % x for x in src_graphics_files] +
['$BUILDDIR/src/mathed/%s' % x for x in src_mathed_files] +
['$BUILDDIR/src/insets/%s' % x for x in src_insets_files] +
['$BUILDDIR/src/frontends/%s' % x for x in src_frontends_files] +
['$BUILDDIR/src/%s' % x for x in src_pre_files] +
["$BUILDDIR/src/%s" % x for x in src_post_files] +
utils.createResFromIcon(env, 'lyx.ico', '$LOCALLIBPATH/lyx.rc'),
CPPPATH = [
'$CPPPATH',
'$BUILDDIR/src',
'$BUILDDIR/src/images',
'$BUILDDIR/src/frontends',
'$BUILDDIR/src/frontends/qt4',
'$BUILDDIR/src/frontends/qt4/ui',
],
CCFLAGS = [
'$CCFLAGS',
'-DHAVE_CONFIG_H',
'-DQT_NO_STL',
'-DQT_NO_KEYWORDS',
],
LIBS = [
'support',
] +
boost_libraries +
frontend_libs +
intl_libs +
socket_libs +
system_libs
)
Alias('lyx', lyx)
if use_vc and 'msvs_projects' in BUILD_TARGETS:
def build_project(target, full_target = None, src = [], inc = [], res = []):
''' build mavs project files
target: alias (correspond to directory name)
full_target: full path/filename of the target
src: source files
inc: include files
res: resource files
For non-debug-able targets like static libraries, target (alias) is
enough to build the target. For executable targets, msvs need to know
the full path to start debug them.
'''
# project
proj = env.MSVSProject(
target = target + env['MSVSPROJECTSUFFIX'],
# this allows easy access to header files (along with source)
srcs = [env.subst(x) for x in src + inc],
incs = [env.subst('$TOP_SRCDIR/src/config.h')],
localincs = [env.subst(x) for x in inc],
resources = [env.subst(x) for x in res],
buildtarget = full_target,
variant = 'Debug'
)
Alias('msvs_projects', proj)
#
build_project('client', src = ['$TOP_SRCDIR/src/client/%s' % x for x in src_client_files],
inc = ['$TOP_SRCDIR/src/client/%s' % x for x in src_client_header_files],
full_target = File(env.subst('$BUILDDIR/src/client/lyxclient$PROGSUFFIX')).abspath)
#
build_project('tex2lyx', src = ['$TOP_SRCDIR/src/tex2lyx/%s' % x for x in src_tex2lyx_files],
inc = ['$TOP_SRCDIR/src/tex2lyx/%s' % x for x in src_tex2lyx_header_files],
full_target = File(env.subst('$BUILDDIR/src/tex2lyx/tex2lyx$PROGSUFFIX')).abspath)
#
build_project('lyx',
src = ['$TOP_SRCDIR/src/%s' % x for x in src_pre_files + src_post_files + ['version.cpp']] + \
['$TOP_SRCDIR/src/support/%s' % x for x in src_support_files + ['Package.cpp'] ] + \
['$TOP_SRCDIR/src/mathed/%s' % x for x in src_mathed_files] + \
['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_files] + \
['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_files] + \
['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_files] + \
['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_files],
inc = ['$TOP_SRCDIR/src/%s' % x for x in src_header_files] + \
['$TOP_SRCDIR/src/support/%s' % x for x in src_support_header_files] + \
['$TOP_SRCDIR/src/mathed/%s' % x for x in src_mathed_header_files] + \
['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_header_files] + \
['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_header_files] + \
['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_header_files] + \
['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_header_files],
res = ['$TOP_SRCDIR/src/frontends/qt4/ui/%s' % x for x in src_frontends_qt4_ui_files],
full_target = File(env.subst('$BUILDDIR/lyx$PROGSUFFIX')).abspath)
if 'update_po' in BUILD_TARGETS:
#
# update po files
#
print 'Updating po/*.po files...'
# whether or not update po files
if not env['XGETTEXT'] or not env['MSGMERGE'] or not env['MSGUNIQ']:
print 'xgettext or msgmerge does not exist. Cannot merge po files'
Exit(1)
# rebuild POTFILES.in
POTFILES_in = env.potfiles('$TOP_SRCDIR/po/POTFILES.in',
['$TOP_SRCDIR/src/%s' % x for x in src_header_files + src_pre_files + src_post_files + \
src_extra_src_files] + \
['$TOP_SRCDIR/src/support/%s' % x for x in src_support_header_files + src_support_files + \
src_support_extra_header_files + src_support_extra_src_files] + \
['$TOP_SRCDIR/src/mathed/%s' % x for x in src_mathed_header_files + src_mathed_files] + \
['$TOP_SRCDIR/src/insets/%s' % x for x in src_insets_header_files + src_insets_files] + \
['$TOP_SRCDIR/src/frontends/%s' % x for x in src_frontends_header_files + src_frontends_files] + \
['$TOP_SRCDIR/src/graphics/%s' % x for x in src_graphics_header_files + src_graphics_files] + \
['$TOP_SRCDIR/src/frontends/qt4/%s' % x for x in src_frontends_qt4_header_files + src_frontends_qt4_files] + \
['$TOP_SRCDIR/src/client/%s' % x for x in src_client_header_files + src_client_files ] + \
['$TOP_SRCDIR/src/tex2lyx/%s' % x for x in src_tex2lyx_header_files + src_tex2lyx_files ]
)
Alias('update_po', POTFILES_in)
# build language_l10n.pot, encodings_10n.pot, ui_l10n.pot, layouts_l10n.pot, qt4_l10n.pot, external_l10n, formats_l10n
# and combine them to lyx.po
env['LYX_POT'] = 'python $TOP_SRCDIR/po/lyx_pot.py'
lyx_po = env.Command('$BUILDDIR/po/lyx.po',
env.Command('$BUILDDIR/po/all.po',
[env.Command('$BUILDDIR/po/qt4_l10n.pot',
['$TOP_SRCDIR/src/frontends/qt4/ui/%s' % x for x in src_frontends_qt4_ui_files],
'$LYX_POT -b $TOP_SRCDIR -t qt4 -o $TARGET $SOURCES'),
env.Command('$BUILDDIR/po/layouts_l10n.pot',
['$TOP_SRCDIR/lib/layouts/%s' % x for x in lib_layouts_files + lib_layouts_inc_files + lib_layouts_module_files],
'$LYX_POT -b $TOP_SRCDIR -t layouts -o $TARGET $SOURCES'),
env.Command('$BUILDDIR/po/languages_l10n.pot', '$TOP_SRCDIR/lib/languages',
'$LYX_POT -b $TOP_SRCDIR -t languages -o $TARGET $SOURCES'),
env.Command('$BUILDDIR/po/encodings_l10n.pot', '$TOP_SRCDIR/lib/encodings',
'$LYX_POT -b $TOP_SRCDIR -t encodings -o $TARGET $SOURCES'),
env.Command('$BUILDDIR/po/ui_l10n.pot',
['$TOP_SRCDIR/lib/ui/%s' % x for x in lib_ui_files],
'$LYX_POT -b $TOP_SRCDIR -t ui -o $TARGET $SOURCES'),
env.Command('$BUILDDIR/po/external_l10n.pot', '$TOP_SRCDIR/lib/external_templates',
'$LYX_POT -b $TOP_SRCDIR -t external -o $TARGET $SOURCES'),
env.Command('$BUILDDIR/po/formats_l10n.pot', '$TOP_SRCDIR/lib/configure.py',
'$LYX_POT -b $TOP_SRCDIR -t formats -o $TARGET $SOURCES'),
], utils.env_cat),
['$MSGUNIQ -o $TARGET $SOURCE',
'''$XGETTEXT --default-domain=${TARGET.base} \
--directory=$TOP_SRCDIR --add-comments=TRANSLATORS: \
--language=C++ --join-existing \
--keyword=_ --keyword=N_ --keyword=B_ --keyword=qt_ \
--files-from=$TOP_SRCDIR/po/POTFILES.in \
--copyright-holder="LyX Developers" \
--msgid-bugs-address="lyx-devel@lists.lyx.org" ''']
)
env.Depends(lyx_po, POTFILES_in)
# copy lyx.po to lyx.pot
lyx_pot = env.Command('$BUILDDIR/po/lyx.pot', lyx_po,
Copy('$TARGET', '$SOURCE'))
#
import glob
# files to translate
transfiles = glob.glob(os.path.join(env.Dir('$TOP_SRCDIR/po').abspath, '*.po'))
# possibly *only* handle these languages
languages = None
if env.has_key('languages'):
languages = env.make_list(env['languages'])
# merge. if I use lan.po as $TARGET, it will be removed
# before it is merged. In this builder,
# $BUILDDIR/po/lang.po is merged from po/lang.po and $BUILDDIR/po/lyx.pot
# and is copied to po/lang.po
env['BUILDERS']['msgmerge'] = Builder(action=[
'$MSGMERGE $TOP_SRCDIR/po/${TARGET.filebase}.po $SOURCE -o $TARGET',
Copy('$TOP_SRCDIR/po/${TARGET.filebase}.po', '$TARGET')]
)
# for each po file, generate pot
for po_file in transfiles:
# get filename
fname = os.path.split(po_file)[1]
# country code
country = fname.split('.')[0]
#
if not languages or country in languages:
# merge po files, the generated lan.po_new file is copied to lan.po file.
po = env.msgmerge('$BUILDDIR/po/%s.po' % country, lyx_pot)
env.Depends(po, POTFILES_in)
Alias('update_po', po)
# if 'install' is not in the target, do not process this
if 'install' in BUILD_TARGETS or 'installer' in BUILD_TARGETS:
#
# this part is a bit messy right now. Since scons will provide
# --DESTDIR option soon, at least the dest_dir handling can be
# removed later.
#
#
# po/
#
import glob
# handle po files
#
# files to translate
transfiles = glob.glob(os.path.join(env.subst('$TOP_SRCDIR'), 'po', '*.po'))
# possibly *only* handle these languages
languages = None
if env.has_key('languages'):
languages = env.make_list(env['lanauges'])
# use default msgfmt
gmo_files = []
if not env['MSGFMT']:
print 'msgfmt does not exist. Can not process po files'
else:
# create a builder
env['BUILDERS']['Transfiles'] = Builder(action='$MSGFMT $SOURCE -c --statistics -o $TARGET',suffix='.gmo',src_suffix='.po')
#
for f in transfiles:
# get filename
fname = os.path.split(f)[1]
# country code
country = fname.split('.')[0]
#
if not languages or country in languages:
gmo_files.extend(env.Transfiles(f))
# how to join dest_dir and prefix
def joinPaths(path1, path2):
''' join path1 and path2, do not use os.path.join because
under window, c:\destdir\d:\program is invalid '''
if path1 == '':
return os.path.normpath(path2)
# separate drive letter
(drive, path) = os.path.splitdrive(os.path.normpath(path2))
# ignore drive letter, so c:\destdir + c:\program = c:\destdir\program
return os.path.join(os.path.normpath(path1), path[1:])
#
# install to dest_dir/prefix
dest_dir = env.get('DESTDIR', '')
dest_prefix_dir = joinPaths(dest_dir, env.Dir(prefix).abspath)
# create the directory if needed
if not os.path.isdir(dest_prefix_dir):
try:
os.makedirs(dest_prefix_dir)
except:
pass
if not os.path.isdir(dest_prefix_dir):
print 'Can not create directory', dest_prefix_dir
Exit(3)
#
if env.has_key('exec_prefix'):
bin_dest_dir = joinPaths(dest_dir, Dir(env['exec_prefix']).abspath)
else:
bin_dest_dir = os.path.join(dest_prefix_dir, 'bin')
if add_suffix:
share_dest_dir = os.path.join(dest_prefix_dir, share_dir + program_suffix)
else:
share_dest_dir = os.path.join(dest_prefix_dir, share_dir)
man_dest_dir = os.path.join(dest_prefix_dir, man_dir)
locale_dest_dir = os.path.join(dest_prefix_dir, locale_dir)
env['LYX2LYX_DEST'] = os.path.join(share_dest_dir, 'lyx2lyx')
#
import glob
#
# install executables (lyxclient may be None)
#
if add_suffix:
version_suffix = program_suffix
else:
version_suffix = ''
#
# install lyx, if in release mode, try to strip the binary
if env.has_key('STRIP') and env['STRIP'] is not None and mode != 'debug':
# create a builder to strip and install
env['BUILDERS']['StripInstallAs'] = Builder(action='$STRIP $SOURCE -o $TARGET')
# install executables
for (name, obj) in (('lyx', lyx), ('tex2lyx', tex2lyx), ('client', client)):
if obj is None:
continue
target_name = os.path.split(str(obj[0]))[1].replace(name, '%s%s' % (name, version_suffix))
target = os.path.join(bin_dest_dir, target_name)
if env['BUILDERS'].has_key('StripInstallAs'):
env.StripInstallAs(target, obj)
else:
env.InstallAs(target, obj)
Alias('install', target)
# share/lyx
dirs = []
for (dir,files) in [
('.', lib_files),
('bind', lib_bind_files),
('bind/de', lib_bind_de_files),
('commands', lib_commands_files),
('doc', lib_doc_files),
('doc/biblio', lib_doc_biblio_files),
('doc/clipart', lib_doc_clipart_files),
('doc/ca', lib_doc_ca_files),
('doc/cs', lib_doc_cs_files),
('doc/da', lib_doc_da_files),
('doc/de', lib_doc_de_files),
('doc/de/clipart', lib_doc_de_clipart_files),
('doc/el', lib_doc_el_files),
('doc/es', lib_doc_es_files),
('doc/es/clipart', lib_doc_es_clipart_files),
('doc/eu', lib_doc_eu_files),
('doc/fr', lib_doc_fr_files),
('doc/fr/clipart', lib_doc_fr_clipart_files),
('doc/gl', lib_doc_gl_files),
('doc/he', lib_doc_he_files),
('doc/hu', lib_doc_hu_files),
('doc/id', lib_doc_id_files),
('doc/id/clipart', lib_doc_id_clipart_files),
('doc/it', lib_doc_it_files),
('doc/it/clipart', lib_doc_it_clipart_files),
('doc/ja', lib_doc_ja_files),
('doc/ja/clipart', lib_doc_ja_clipart_files),
('doc/nl', lib_doc_nl_files),
('doc/nb', lib_doc_nb_files),
('doc/pl', lib_doc_pl_files),
('doc/pt', lib_doc_pt_files),
('doc/ro', lib_doc_ro_files),
('doc/ru', lib_doc_ru_files),
('doc/sk', lib_doc_sk_files),
('doc/sl', lib_doc_sl_files),
('doc/sv', lib_doc_sv_files),
('doc/uk', lib_doc_uk_files),
('doc/uk/clipart', lib_doc_uk_clipart_files),
('doc/zh_CN', lib_doc_zhCN_files),
('examples', lib_examples_files),
('examples/ca', lib_examples_ca_files),
('examples/cs', lib_examples_cs_files),
('examples/da', lib_examples_da_files),
('examples/de', lib_examples_de_files),
('examples/el', lib_examples_el_files),
('examples/es', lib_examples_es_files),
('examples/eu', lib_examples_eu_files),
('examples/fa', lib_examples_fa_files),
('examples/fr', lib_examples_fr_files),
('examples/gl', lib_examples_gl_files),
('examples/he', lib_examples_he_files),
('examples/hu', lib_examples_hu_files),
('examples/id', lib_examples_id_files),
('examples/it', lib_examples_it_files),
('examples/ja', lib_examples_ja_files),
('examples/nl', lib_examples_nl_files),
('examples/pl', lib_examples_pl_files),
('examples/pt', lib_examples_pt_files),
('examples/ro', lib_examples_ro_files),
('examples/ru', lib_examples_ru_files),
('examples/sk', lib_examples_sk_files),
('examples/sl', lib_examples_sl_files),
('examples/sr', lib_examples_sr_files),
('examples/sv', lib_examples_sv_files),
('examples/uk', lib_examples_uk_files),
('fonts', lib_fonts_files),
('images', lib_images_files),
('images/math', lib_images_math_files),
('images/classic', lib_images_classic_files),
('images/commands', lib_images_commands_files),
('images/oxygen', lib_images_oxygen_files),
('kbd', lib_kbd_files),
('layouts', lib_layouts_files + lib_layouts_inc_files + lib_layouts_module_files),
('lyx2lyx', lib_lyx2lyx_files),
('scripts', lib_scripts_files),
('templates', lib_templates_files),
('templates/springer', lib_templates_springer_files),
('templates/thesis', lib_templates_thesis_files),
('tex', lib_tex_files),
('ui', lib_ui_files)]:
dirs.append(env.Install(os.path.join(share_dest_dir, dir),
[env.subst('$TOP_SRCDIR/lib/%s/%s' % (dir, file)) for file in files]))
Alias('install', dirs)
# subst and install lyx2lyx_version.py which is not in scons_manifest.py
env.Depends(share_dest_dir + '/lyx2lyx/lyx2lyx_version.py', '$BUILDDIR/src/config.h')
env.substFile(share_dest_dir + '/lyx2lyx/lyx2lyx_version.py',
'$TOP_SRCDIR/lib/lyx2lyx/lyx2lyx_version.py.in')
Alias('install', share_dest_dir + '/lyx2lyx/lyx2lyx_version.py')
sys.path.append(share_dest_dir + '/lyx2lyx')
if platform_name == 'cygwin':
# cygwin packaging requires a file /usr/share/doc/Cygwin/foot-vendor-suffix.README
Cygwin_README = os.path.join(dest_prefix_dir, 'share', 'doc', 'Cygwin',
'%s-%s.README' % (package, package_cygwin_version))
env.InstallAs(Cygwin_README,
os.path.join(env.subst('$TOP_SRCDIR'), 'README.cygwin'))
Alias('install', Cygwin_README)
# also a directory /usr/share/doc/lyx for README etc
Cygwin_Doc = os.path.join(dest_prefix_dir, 'share', 'doc', package)
env.Install(Cygwin_Doc, [os.path.join(env.subst('$TOP_SRCDIR'), x) for x in \
['INSTALL', 'README', 'README.Cygwin', 'RELEASE-NOTES', 'COPYING', 'ANNOUNCE']])
Alias('install', Cygwin_Doc)
# cygwin fonts also need to be installed
Cygwin_fonts = os.path.join(share_dest_dir, 'fonts')
env.Install(Cygwin_fonts,
[env.subst('$TOP_SRCDIR/development/Win32/packaging/bakoma/%s' % file) \
for file in win32_bakoma_fonts])
Alias('install', Cygwin_fonts)
# we also need a post installation script
tmp_script = utils.installCygwinPostinstallScript('/tmp')
postinstall_path = os.path.join(dest_dir, 'etc', 'postinstall')
env.Install(postinstall_path, tmp_script)
Alias('install', postinstall_path)
# man
env.InstallAs(os.path.join(man_dest_dir, 'lyx' + version_suffix + '.1'),
env.subst('$TOP_SRCDIR/lyx.1in'))
env.InstallAs(os.path.join(man_dest_dir, 'tex2lyx' + version_suffix + '.1'),
env.subst('$TOP_SRCDIR/src/tex2lyx/tex2lyx.1in'))
env.InstallAs(os.path.join(man_dest_dir, 'lyxclient' + version_suffix + '.1'),
env.subst('$TOP_SRCDIR/src/client/lyxclient.1in'))
Alias('install', [os.path.join(man_dest_dir, x + version_suffix + '.1') for
x in ['lyx', 'tex2lyx', 'lyxclient']])
# locale files?
# ru.gmo ==> ru/LC_MESSAGES/lyxSUFFIX.mo
for gmo in gmo_files:
lan = os.path.split(str(gmo))[1].split('.')[0]
dest_file = os.path.join(locale_dest_dir, lan, 'LC_MESSAGES', 'lyx' + program_suffix + '.mo')
env.InstallAs(dest_file, gmo)
Alias('install', dest_file)
if 'installer' in BUILD_TARGETS:
#
# build windows installer using NSIS
#
# NOTE:
# There is a nsis builder on scons wiki but it does not work with
# our lyx.nsi because it does not dig through all the include directives
# and find the dependencies automatically. Also, it can not parse
# OutFile in lyx.nsi since it is defined as SETUP_EXE which is in turn
# something rely on date.
# Because of this, I am doing a simple nsis builder here.
if platform_name != 'win32':
print 'installer target is only available for windows platform'
Exit(1)
if mode != 'release':
print 'installer has to be built in release mode (use option mode=release)'
Exit(1)
installer_files = ['$TOP_SRCDIR/development/Win32/packaging/installer/%s' \
% x for x in development_Win32_packaging_installer] + \
['$TOP_SRCDIR/development/Win32/packaging/installer/graphics/%s' \
% x for x in development_Win32_packaging_installer_graphics] + \
['$TOP_SRCDIR/development/Win32/packaging/installer/gui/%s' \
% x for x in development_Win32_packaging_installer_gui] + \
['$TOP_SRCDIR/development/Win32/packaging/installer/include/%s' \
% x for x in development_Win32_packaging_installer_include] + \
['$TOP_SRCDIR/development/Win32/packaging/installer/lang/%s' \
% x for x in development_Win32_packaging_installer_lang] + \
['$TOP_SRCDIR/development/Win32/packaging/installer/setup/%s' \
% x for x in development_Win32_packaging_installer_setup]
if env.has_key('NSIS') and env['NSIS'] is not None:
# create a builder to strip and install
env['BUILDERS']['installer'] = Builder(generator=utils.env_nsis)
else:
print 'No nsis compiler is found. Existing...'
Exit(2)
if not env.has_key('win_installer') or env['win_installer'] is None:
if devel_version:
env['win_installer'] = '%s-%s-%s-Installer.exe' % (package_name, package_version, time.strftime('%Y-%m-%d'))
else:
env['win_installer'] = '%s-%s-Installer.exe' % (package_name, package_version)
# provide default setting
if not env.has_key('deps_dir') or env['deps_dir'] is None:
env['deps_dir'] = os.path.join(env.Dir('$TOP_SRCDIR').abspath, 'lyx-windows-deps-msvc-qt4')
if not os.path.isdir(env.Dir('$deps_dir').abspath):
print 'Development dependency package is not found.'
Exit(1)
else:
env['deps_dir'] = env.Dir('$deps_dir').abspath
# build bundle?
if env.has_key('bundle_dir') and os.path.isdir(env.Dir('$bundle_dir').abspath):
env['bundle_dir'] = env.Dir('$bundle_dir').abspath
elif os.path.isdir(os.path.join(env.Dir('$TOP_SRCDIR').abspath, 'lyx-windows-bundle-deps')):
env['bundle_dir'] = os.path.join(env.Dir('$TOP_SRCDIR').abspath, 'lyx-windows-bundle-deps')
else:
env['bundle_dir'] = None
# if absolute path is given, use it, otherwise, write to current directory
if not (':' in env['win_installer'] or '/' in env['win_installer'] or '\\' in env['win_installer']):
env['win_installer'] = os.path.join(env.Dir('$BUILDDIR').abspath, env['win_installer'])
env.Append(NSISDEFINES={
'ExeFile':env['win_installer'],
'BundleExeFile':env['win_installer'].replace('.exe', '-bundle.exe'),
'FilesLyx':env.Dir(dest_prefix_dir).abspath,
'FilesDeps':env['deps_dir'],
'FilesBundle':env['bundle_dir'],
})
installer = env.installer(env['win_installer'],
'$TOP_SRCDIR/development/Win32/packaging/installer/lyx.nsi')
# since I can not use a scanner, explicit dependent is required
env.Depends(installer, 'install')
env.Depends(installer, installer_files)
env.Alias('installer', installer)
# also generate bundle?
if env.has_key('bundle') and env['bundle']:
if env['bundle_dir'] is None or not os.path.isdir(env['bundle_dir']):
print 'Bundle directory does not exist (default to %s\lyx-windows-bundle-deps.' % env.Dir('$TOP_SRCDIR').abspath
print 'Use bundle_dir option to specify'
Exit(1)
# generator of the builder will add bundle stuff depending on output name
bundle_installer = env.installer(env['win_installer'].replace('.exe', '-bundle.exe'),
'$TOP_SRCDIR/development/Win32/packaging/installer/lyx.nsi')
env.Depends(bundle_installer, 'install')
env.Depends(bundle_installer, installer_files)
env.Alias('installer', bundle_installer)
Default('lyx')
Alias('all', ['lyx', 'client', 'tex2lyx'])
|