aboutsummaryrefslogtreecommitdiffstats
path: root/packages/omniorb/omniorb-native_4.0.7.bb
blob: 4f3a81538063a2733d6d87acc5830be791ec59d4 (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
PR = "r0"
SRC_URI = "${SOURCEFORGE_MIRROR}/omniorb/omniORB-${PV}.tar.gz"
SECTION = "devel"
S = "${WORKDIR}/omniORB-${PV}"

DEPENDS += "python-native"

inherit native autotools

do_compile () {
	oe_runmake
}

# Ugly hack so libtool does not find native libs when building cross packages
# We really only build this package for omniidl anyway
do_stage_append() {
	rm -f  ${STAGING_DIR}/${BUILD_SYS}/lib/libomni*
}

#do_stage() {
#	install -m 0755 src/bison ${STAGING_BINDIR}/
#	ln -sf ./bison ${STAGING_BINDIR}/yacc
#	install -d ${STAGING_BINDIR}/../share/bison/m4sugar
#	install -m 0755 data/c.m4 data/glr.c data/lalr1.cc data/yacc.c ${STAGING_BINDIR}/../share/bison/
#	install -m 0755 data/m4sugar/m4sugar.m4 ${STAGING_BINDIR}/../share/bison/m4sugar/
#}