Makefile 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${TOPDIR}/rules.mk
  4. PKG_NAME:= boost
  5. PKG_VERSION:= 1.55.0
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= 93780777cfbf999a600f62883bd54b17
  8. PKG_DESCR:= boost C++ library
  9. PKG_SECTION:= libs
  10. PKG_URL:= http://www.boost.org/
  11. PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=boost/}
  12. PKG_OPTS:= dev
  13. PKG_ARCH_DEPENDS:= !avr32 !m68k
  14. DISTFILES:= boost_1_55_0.tar.gz
  15. WRKDIST= ${WRKDIR}/${PKG_NAME}_1_55_0
  16. PKG_FLAVOURS_BOOST:= date_time graph graph_parallel iostreams math program_options python regex serialization signals system test thread wave
  17. PKGFD_date_time:= with date-time
  18. PKGFD_python:= with Python
  19. PKGFB_python:= python2
  20. PKGFS_python:= python2
  21. PKGFD_iostreams:= with iostreams
  22. PKGFD_graph:= with graph
  23. PKGFD_graph_parallel:= with graph_parallel
  24. PKGFD_math:= with math
  25. PKGFD_program_options:= with program_options
  26. PKGFD_regex:= with regex
  27. PKGFD_serialization:= with serialization
  28. PKGFD_signals:= with signals
  29. PKGFD_system:= with system
  30. PKGFD_test:= with test
  31. PKGFD_thread:= with thread
  32. PKGFD_wave:= with wave
  33. include ${TOPDIR}/mk/package.mk
  34. $(eval $(call PKG_template,BOOST,boost,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  35. include ${TOPDIR}/mk/python.mk
  36. CONFIG_STYLE:= manual
  37. BUILD_STYLE:= manual
  38. INSTALL_STYLE:= manual
  39. CONFIGURE_ARGS += \
  40. --target=$(GNU_TARGET_NAME) \
  41. --host=$(GNU_TARGET_NAME) \
  42. --build=$(GNU_HOST_NAME) \
  43. --prefix=${WRKINST}/usr \
  44. CONFIGURE_ARGS+=--without-locale
  45. ifneq (${ADK_PACKAGE_BOOST_IOSTREAMS},)
  46. CONFIGURE_ARGS += -sNO_BZIP2=1 -sZLIB_INCLUDE=${STAGING_DIR}/usr/include -sZLIB_LIBPATH=${STAGING_DIR}/usr/lib
  47. else
  48. CONFIGURE_ARGS += --without-iostreams
  49. endif
  50. ifeq (${ADK_PACKAGE_BOOST_DATE_TIME},)
  51. CONFIGURE_ARGS+=--without-date_time
  52. endif
  53. ifeq (${ADK_PACKAGE_BOOST_PYTHON},)
  54. CONFIGURE_ARGS+=--without-python
  55. endif
  56. ifeq (${ADK_PACKAGE_BOOST_GRAPH},)
  57. CONFIGURE_ARGS+=--without-graph
  58. endif
  59. ifeq (${ADK_PACKAGE_BOOST_MATH},)
  60. CONFIGURE_ARGS+=--without-math
  61. endif
  62. ifeq (${ADK_PACKAGE_BOOST_PROGRAM_OPTIONS},)
  63. CONFIGURE_ARGS+=--without-program_options
  64. endif
  65. ifeq (${ADK_PACKAGE_BOOST_REGEX},)
  66. CONFIGURE_ARGS+=--without-regex
  67. endif
  68. ifeq (${ADK_PACKAGE_BOOST_SERIALIZATION},)
  69. CONFIGURE_ARGS+=--without-serialization
  70. endif
  71. ifeq (${ADK_PACKAGE_BOOST_SIGNALS},)
  72. CONFIGURE_ARGS+=--without-signals
  73. endif
  74. ifeq (${ADK_PACKAGE_BOOST_SYSTEM},)
  75. CONFIGURE_ARGS+=--without-system
  76. endif
  77. ifeq (${ADK_PACKAGE_BOOST_TEST},)
  78. CONFIGURE_ARGS+=--without-test
  79. endif
  80. ifeq (${ADK_PACKAGE_BOOST_THREAD},)
  81. CONFIGURE_ARGS+=--without-thread
  82. endif
  83. ifeq (${ADK_PACKAGE_BOOST_WAVE},)
  84. CONFIGURE_ARGS+=--without-wave
  85. endif
  86. ifeq ($(ARCH),x86_64)
  87. BOOST_ARCH:= x86
  88. else
  89. BOOST_ARCH:= $(ARCH)
  90. endif
  91. # some variables for build
  92. GPP_PATH:= ${STAGING_HOST_DIR}/bin/${GNU_TARGET_NAME}-g++
  93. GPP_VERSION:= "`${GPP_PATH} -v 2>&1 | tail -1 | awk '{print $$3}'`"
  94. BJAM_PATH:= "`find ${WRKBUILD} -type f -name "bjam$(EXEEXT)"`"
  95. PYTHON_PATH:= ${STAGING_TARGET_DIR}/usr/bin/python
  96. PYTHON_INCLUDE:="`find ${STAGING_TARGET_DIR}/usr/include/ -maxdepth 1 -type d -name "python*" | head -1`"
  97. PYTHON_LIB:= "`find ${STAGING_TARGET_DIR}/usr/lib/ -maxdepth 1 -type d -name "python*" | head -1`"
  98. USER_JAM:= ${WRKBUILD}/tools/build/v2/user-config.jam
  99. pre-build:
  100. @echo "build bjam..."
  101. cd $(WRKBUILD)/tools/build/v2/engine; ./build.sh gcc
  102. do-build:
  103. @echo "build boost library..."
  104. # remove exisiting using gcc line from user.jam
  105. ${SED} "/^using gcc/d" ${USER_JAM}
  106. # add using gcc line with determined options to user.jam
  107. echo "using gcc : ${GPP_VERSION} : ${GPP_PATH} ;" >> ${USER_JAM};
  108. # remove exisiting using python line from user.jam
  109. ${SED} "/^using python/d" ${USER_JAM}
  110. ifneq (${ADK_PACKAGE_BOOST_PYTHON},)
  111. # add using python line with determined options to user.jam
  112. echo "using python : ${PYTHON_VERSION} : ${PYTHON_PATH} : ${PYTHON_INCLUDE} : ${PYTHON_LIB} ;" >> ${USER_JAM};
  113. endif
  114. # run bjam to build boost
  115. ( cd ${WRKBUILD}; \
  116. ${BJAM_PATH} \
  117. -sBUILD=release \
  118. -d 2 \
  119. target-os=linux \
  120. architecture=$(BOOST_ARCH) \
  121. binary-format=elf \
  122. toolset=gcc-${GPP_VERSION} \
  123. --build-type=minimal \
  124. --layout=versioned \
  125. --disable-long-double \
  126. --without-mpi \
  127. ${CONFIGURE_ARGS} \
  128. install \
  129. )
  130. boost-install:
  131. ${INSTALL_DIR} ${IDIR_BOOST}/usr/lib
  132. ${CP} ${WRKINST}/usr/lib/*.so* ${IDIR_BOOST}/usr/lib
  133. include ${TOPDIR}/mk/pkg-bottom.mk