diff options
author | Leon Woestenberg <leon.woestenberg@gmail.com> | 2008-05-02 16:09:31 +0000 |
---|---|---|
committer | Leon Woestenberg <leon.woestenberg@gmail.com> | 2008-05-02 16:09:31 +0000 |
commit | e5100bbf7a08eeffe820c30cecbbaef93bea991f (patch) | |
tree | ac0d53fb9f675c35496c2cae99ab2cc7c9186a00 /packages | |
parent | aadc224474b16ce789e357665147666c3f2ca6ee (diff) |
gnash-minimal_0.8.2.bb: library paths have changed in 0.8.2, fix up packaging.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/gnash/gnash-minimal_0.8.2.bb | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/packages/gnash/gnash-minimal_0.8.2.bb b/packages/gnash/gnash-minimal_0.8.2.bb index b3ec3c74aa..76cbd9b829 100644 --- a/packages/gnash/gnash-minimal_0.8.2.bb +++ b/packages/gnash/gnash-minimal_0.8.2.bb @@ -1,15 +1,18 @@ -require gnash.inc - -# gnash-minimal is intended for running directly on a framebuffer device -# for memory constrained devices, but does not accept all SWF files. -# It is useful as a GUI frontend for dedicated SWF files. - -DEFAULT_PREFERENCE = "-1" - +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 = "agg libxml2 libmad zlib boost jpeg pango curl freetype" +PR = "r2" +SRC_URI = "ftp://ftp.gnu.org/pub/gnu/gnash/${PV}/gnash-${PV}.tar.bz2" S = ${WORKDIR}/gnash-${PV} +inherit autotools pkgconfig + +# gnash-minimal is intended for running directly on a framebuffer device +# for memory constrained devices, but does not accept all SWF files. +# As such, it is useful as a GUI frontend for dedicated SWF files. + # JPEG support and libz cannot be disabled due to a bug in 0.8.2. # maintainer-mode is enabled to disable the testsuite. @@ -33,3 +36,13 @@ EXTRA_OECONF="--enable-gui=gtk \ --enable-maintainer-mode \ --with-top-level=${STAGING_DIR_HOST}/usr \ " + +PACKAGES =+ " libgnashamf libgnashbackend libgnashbase libgnashserver " + +FILES_libltdl = "${libdir}/gnash/libltdl*.so" +FILES_libgnashamf = "${libdir}/gnash/libgnashamf-${PV}.so" +FILES_libgnashbase = "${libdir}/gnash/libgnashbase-${PV}.so" +FILES_libgnashmedia = "${libdir}/gnash/libgnashmedia-${PV}.so" +FILES_libgnashserver = "${libdir}/gnash/libgnashserver-${PV}.so" + +PARALLEL_MAKE = "" |