summaryrefslogtreecommitdiff
path: root/package/boost/Makefile
blob: 6ac6228e331d6503299c0304b68f34727894e247 (plain)
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
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

include ${TOPDIR}/rules.mk

PKG_NAME:=		boost
PKG_VERSION:=		1.55.0
PKG_RELEASE:=		5
PKG_MD5SUM:=		93780777cfbf999a600f62883bd54b17
PKG_DESCR:=		boost c++ library
PKG_SECTION:=		libs/misc
PKG_BUILDDEP:=		autotool bzip2-host python2-host
PKG_URL:=		http://www.boost.org/
PKG_SITES:=		${MASTER_SITE_SOURCEFORGE:=boost/}
PKG_OPTS:=		dev

PKG_ARCH_DEPENDS:=	!m68k

DISTFILES:=		boost_1_55_0.tar.gz
WRKDIST=		${WRKDIR}/${PKG_NAME}_1_55_0

PKG_FLAVOURS_BOOST:=	DATE_TIME GRAPH GRAPH_PARALLEL IOSTREAMS MATH PROGRAM_OPTIONS PYTHON REGEX SERIALIZATION SIGNALS SYSTEM TEST THREAD WAVE

PKGFD_DATE_TIME:=	with date-time
PKGFD_PYTHON:=		with Python
PKGFB_PYTHON:=		python2
PKGFS_PYTHON:=		python2
PKGFD_IOSTREAMS:=	with iostreams
PKGFD_GRAPH:=	with graph
PKGFD_GRAPH_PARALLEL:=	with graph_parallel
PKGFD_MATH:=	with math
PKGFD_PROGRAM_OPTIONS:=	with program_options
PKGFD_REGEX:=	with regex
PKGFD_SERIALIZATION:=	with serialization
PKGFD_SIGNALS:=	with signals
PKGFD_SYSTEM:=	with system
PKGFD_TEST:=	with test
PKGFD_THREAD:=	with thread
PKGFD_WAVE:=	with wave

include ${TOPDIR}/mk/package.mk

$(eval $(call PKG_template,BOOST,boost,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))

include ${TOPDIR}/mk/python.mk

CONFIG_STYLE:=		manual
BUILD_STYLE:=		manual
INSTALL_STYLE:=		manual

CONFIGURE_ARGS += \
	--target=$(GNU_TARGET_NAME) \
	--host=$(GNU_TARGET_NAME) \
	--build=$(GNU_HOST_NAME) \
	--prefix=${WRKINST}/usr \

CONFIGURE_ARGS+=--without-locale

ifneq (${ADK_PACKAGE_BOOST_IOSTREAMS},)
	CONFIGURE_ARGS += -sNO_BZIP2=1 -sZLIB_INCLUDE=${STAGING_TARGET_DIR}/usr/include -sZLIB_LIBPATH=${STAGING_TARGET_DIR}/usr/lib
else
	CONFIGURE_ARGS += --without-iostreams
endif
ifeq (${ADK_PACKAGE_BOOST_DATE_TIME},)
	CONFIGURE_ARGS+=--without-date_time
endif
ifeq (${ADK_PACKAGE_BOOST_PYTHON},)
	CONFIGURE_ARGS+=--without-python
endif
ifeq (${ADK_PACKAGE_BOOST_GRAPH},)
	CONFIGURE_ARGS+=--without-graph
endif
ifeq (${ADK_PACKAGE_BOOST_MATH},)
	CONFIGURE_ARGS+=--without-math
endif
ifeq (${ADK_PACKAGE_BOOST_PROGRAM_OPTIONS},)
	CONFIGURE_ARGS+=--without-program_options
endif
ifeq (${ADK_PACKAGE_BOOST_REGEX},)
	CONFIGURE_ARGS+=--without-regex
endif
ifeq (${ADK_PACKAGE_BOOST_SERIALIZATION},)
	CONFIGURE_ARGS+=--without-serialization
endif
ifeq (${ADK_PACKAGE_BOOST_SIGNALS},)
	CONFIGURE_ARGS+=--without-signals
endif
ifeq (${ADK_PACKAGE_BOOST_SYSTEM},)
	CONFIGURE_ARGS+=--without-system
endif
ifeq (${ADK_PACKAGE_BOOST_TEST},)
	CONFIGURE_ARGS+=--without-test
endif
ifeq (${ADK_PACKAGE_BOOST_THREAD},)
	CONFIGURE_ARGS+=--without-thread
endif
ifeq (${ADK_PACKAGE_BOOST_WAVE},)
	CONFIGURE_ARGS+=--without-wave
endif

ifeq ($(ARCH),x86_64)
BOOST_ARCH:=	x86
else
BOOST_ARCH:=	$(ARCH)
endif

# some variables for build
GPP_PATH:=	${TOOLCHAIN_DIR}/usr/bin/${GNU_TARGET_NAME}-g++
GPP_VERSION:=	"`${GPP_PATH} -v 2>&1 | tail -1 | awk '{print $$3}'`"
BJAM_PATH:=	"`find ${WRKBUILD} -type f -name "bjam$(EXEEXT)"`"
PYTHON_PATH:=	${STAGING_HOST_DIR}/usr/bin/python
PYTHON_INCLUDE:="`find ${STAGING_TARGET_DIR}/usr/include/ -maxdepth 1 -type d -name "python*" | head -1`"
PYTHON_LIB:=	"`find ${STAGING_TARGET_DIR}/usr/lib/ -maxdepth 1 -type d -name "python*" | head -1`"
USER_JAM:=	${WRKBUILD}/tools/build/v2/user-config.jam

pre-build:
	@echo "build bjam..."
	cd $(WRKBUILD)/tools/build/v2/engine; ./build.sh gcc

do-build:
	@echo "build boost library..."
# remove exisiting using gcc line from user.jam
	${SED} "/^using gcc/d" ${USER_JAM}
# add using gcc line with determined options to user.jam
	echo "using gcc : ${GPP_VERSION} : ${GPP_PATH} ;" >> ${USER_JAM};
# remove exisiting using python line from user.jam
	${SED} "/^using python/d" ${USER_JAM}
ifneq (${ADK_PACKAGE_BOOST_PYTHON},)
# add using python line with determined options to user.jam
	echo "using python : ${PYTHON_VERSION} : ${PYTHON_PATH} : ${PYTHON_INCLUDE} : ${PYTHON_LIB} ;" >> ${USER_JAM};
endif
# run bjam to build boost
	( cd ${WRKBUILD}; \
		${BJAM_PATH} \
			-sBUILD=release \
			-d 2 \
			target-os=linux \
			architecture=$(BOOST_ARCH) \
			binary-format=elf \
			toolset=gcc-${GPP_VERSION} \
			--build-type=minimal \
			--layout=versioned \
			--disable-long-double \
			--without-mpi \
			--debug-configuration \
			${CONFIGURE_ARGS} \
			install \
	)

boost-install:
	${INSTALL_DIR} ${IDIR_BOOST}/usr/lib
	${CP} ${WRKINST}/usr/lib/*.so* ${IDIR_BOOST}/usr/lib

include ${TOPDIR}/mk/pkg-bottom.mk