aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/wxwidgets/wxwidgets-2.9.0.inc
blob: dd5f7a3598487d4dc26bd2b915bc86eff3adf88b (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
require wxwidgets.inc

INC_PR = "r1"

PROVIDES += "wxwidgets"

TOOLKIT ?= "gtk2"
UNICODE ?= "${@base_contains('EXTRA_OECONF', '--disable-unicode', 'ansi', 'unicode', d)}"
DEBUG ?= "${@base_contains('EXTRA_OECONF', '--enable-debug', 'debug', 'release', d)}"
RELEASE ?= "${@bb.data.getVar('PV',d,1).rsplit('.', 1)[0]}"

WXCONFIG ?= "${TOOLKIT}-${UNICODE}-${DEBUG}-${RELEASE}"

LEAD_SONAME = "libwx_.*_core-.*\.so"

# Patch and regenerate configure script so that it finds staging root.
SRC_URI += "file://configure-cross_root.patch"

do_configure_prepend() {
	./autogen.sh
}

do_stage() {
	install -d ${STAGING_INCDIR}/wx-${RELEASE}/wx
	cp -pR include/wx ${STAGING_INCDIR}/wx-${RELEASE}
	cp -pR lib/libwx* ${STAGING_LIBDIR}
	cp -pR lib/wx     ${STAGING_LIBDIR}
	cp -pR build/bakefiles/wxpresets/presets ${STAGING_DATADIR}/bakefile
	cp -p wxwin.m4                          ${STAGING_DATADIR}/aclocal
	ln -sf ${STAGING_LIBDIR}/wx/config/${TARGET_PREFIX}${WXCONFIG} \
		${STAGING_BINDIR_CROSS}/wx-config
	sed -e s,'wxconfdir=".*"','wxconfigdir="${STAGING_LIBDIR}/wx/config"', \
		-e s,'bindir=".*"','bindir="${STAGING_BINDIR}"', \
		-e s,'libdir=".*"','libdir="${STAGING_LIBDIR}"', \
		-e s,'includedir=".*"','includedir="${STAGING_INCDIR}"', \
		-i ${STAGING_LIBDIR}/wx/config/${TARGET_PREFIX}${WXCONFIG}
}

do_install() {
	oe_runmake 'DESTDIR=${D}' install
	ln -sf  ${libdir}/wx/config/${TARGET_PREFIX}${WXCONFIG} \
		${D}${bindir}/wx-config
}