# in the version.txt file inside the source directory.
SWT_API_VERSION = ${@bb.fatal('SWT_API_VERSION is not defined in this swt-gtk recipe!')}
+# From SWT 3.6 on the link flags can be given via a Makefile parameter.
+EXTRA_OEMAKE = 'SWT_LFLAGS="${LDFLAGS}"'
+
do_unpackpost() {
if [ ! -d ${S} ]; then
mkdir ${S}
sed -i -e "s|RELEASE=OE_SWT_RELEASE|RELEASE=${PV}|" Makefile
sed -i -e "s|SONAME_VERSION=OE_SWT_API_VERSION|SONAME_VERSION=${SWT_API_VERSION}|" Makefile
- # Properly applies OE's LDFLAGS to linking step.
+ # Properly applies OE's LDFLAGS to linking step (only effective for < SWT 3.6)
sed -i -e "s|LIBS = -shared -fPIC|LIBS = -shared ${LDFLAGS}|" make_linux.mak
}
+addtask unpackpost after do_unpack before do_patch
+
do_compile() {
oe_runmake NATIVE_STATS="-I${STAGING_INCDIR}/classpath"
}
-addtask unpackpost after do_unpack before do_patch
-
do_install() {
local swtversion=`cat version.txt | tr -d "version. "`
oe_libinstall -so libswt-gtk-$swtversion ${D}/${libdir_jni}
}
-do_stage() {
- oe_jarinstall -s swt-gtk-${PV}.jar swt-gtk.jar swt.jar
-}
-
PACKAGES += "lib${PN}-jni"
FILES_lib${PN}-jni = "${libdir_jni}/lib*.so*"