diff options
author | Koen Kooi <koen@openembedded.org> | 2008-07-04 22:54:13 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-07-04 22:54:13 +0000 |
commit | 77175b518c26835ab2080af4bf94335ea25c4ca5 (patch) | |
tree | b4f2abed8bc49fd46bb3b9e5915f10ef309e4858 /packages/gnash | |
parent | ecc322e2e0ebb1cd86ffd3e07dbd5493d368816d (diff) |
gnash: fix build to use external libtool
Diffstat (limited to 'packages/gnash')
-rw-r--r-- | packages/gnash/gnash.inc | 2 | ||||
-rw-r--r-- | packages/gnash/gnash_0.8.3.bb | 13 |
2 files changed, 10 insertions, 5 deletions
diff --git a/packages/gnash/gnash.inc b/packages/gnash/gnash.inc index 31e84b84ac..ce66beec45 100644 --- a/packages/gnash/gnash.inc +++ b/packages/gnash/gnash.inc @@ -1,7 +1,7 @@ DESCRIPTION = "Gnash is a GNU Flash movie player that supports many SWF v7 features" HOMEPAGE = "http://www.gnu.org/software/gnash" LICENSE = "GPL-2" -DEPENDS = "gtk+ cairo libxml2 libmad libsdl-mixer zlib boost jpeg pango curl freetype" +DEPENDS = "libtool gtk+ cairo libxml2 libmad libsdl-mixer zlib boost jpeg pango curl freetype" PR = "r1" SRC_URI = "ftp://ftp.gnu.org/pub/gnu/gnash/${PV}/gnash-${PV}.tar.bz2 \ diff --git a/packages/gnash/gnash_0.8.3.bb b/packages/gnash/gnash_0.8.3.bb index 383f970755..cc8de96995 100644 --- a/packages/gnash/gnash_0.8.3.bb +++ b/packages/gnash/gnash_0.8.3.bb @@ -1,6 +1,11 @@ require gnash.inc -do_configure() { - gnu-configize - oe_runconf -} +PR = "r2" + +EXTRA_OECONF += " --without-included-ltdl \ + --with-ltdl-include=${STAGING_INCDIR} \ + --with-ltdl-lib=${STAGING_LIBDIR} \ +" + +SRC_URI += "file://libtool-2.2.patch;patch=1" + |