From: Phil Blundell Date: Wed, 30 Jun 2004 15:46:14 +0000 (+0000) Subject: add zip-native to DEPENDS X-Git-Tag: Release-2010-05/1~18436 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14ec5d990b7f9ad56b7ce4147eac4f9e5f9f4261;p=openembedded.git add zip-native to DEPENDS BKrev: 40e2e046dc9shmc8tHIXRflt-0Mvbw --- diff --git a/firefox/firefox_0.9.oe b/firefox/firefox_0.9.oe index e69de29bb2..116e3ce5bb 100644 --- a/firefox/firefox_0.9.oe +++ b/firefox/firefox_0.9.oe @@ -0,0 +1,30 @@ +DEPENDS = "xt xi zip-native" + +SRC_URI = "http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${PV}/firefox-${PV}-source.tar.bz2 \ + file://mozconfig \ + file://xptcstubs.patch;patch=1" + +S = "${WORKDIR}/mozilla" + +FILES_${PN} += "${libdir}/firefox-${PV} ${datadir}/idl" + +# gcc-3.4 blows up in gtktext with -frename-registers on arm-linux +CFLAGS := "${@'${CFLAGS}'.replace('-frename-registers', '')}" +CXXFLAGS := "${@'${CXXFLAGS}'.replace('-frename-registers', '')}" + +export CROSS_COMPILE=1 +export HOST_LIBIDL_CONFIG="libIDL-config-2" +export CONFIGURE_ARGS="--target=${TARGET_SYS} --host=${BUILD_SYS} --build=${BUILD_SYS} --prefix=${prefix}" + +do_configure() { + cp ${WORKDIR}/mozconfig .mozconfig +} + +do_compile() { + make -f client.mk build_all +} + +do_install() { + make DESTDIR="${D}" install +} +