blob: d56fb28fd73ad8d415543a0926d9c65b231c61ed (
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
27
28
29
30
31
32
33
34
35
|
DESCRIPTION = "Gecko plugin for gnome-mplayer"
HOMEPAGE = "http://dekorte.homeip.net/download/gecko-mediaplayer/"
LICENSE = "GPL"
DEPENDS = "firefox gtk+ gconf dbus-glib"
RDEPENDS = "firefox gnome-mplayer"
PR = "r1"
inherit autotools
SRC_URI = "http://gecko-mediaplayer.googlecode.com/files/${P}.tar.gz \
file://extensions \
"
# Yes, this needs to match the firefox version you are building *exactly*
MOZILLA_HOME = firefox-3.5.2
do_install_append() {
install -d ${D}${libdir}/${MOZILLA_HOME}
mv ${D}${libdir}/mozilla/plugins ${D}${libdir}/${MOZILLA_HOME}
cp -dpR ${WORKDIR}/extens* ${D}${libdir}/${MOZILLA_HOME}/
}
#EXTRA_OEMAKE = "-I${STAGING_INCDIR}/${MOZILLA_HOME} -I${STAGING_INCDIR}/linux"
PACKAGES =+ "${PN}-firefox-hack"
RDEPENDS_${PN}-firefox-hack = "${PN}"
FILES_${PN}-firefox-hack = "${libdir}/${MOZILLA_HOME}/extensions"
FILES_${PN} += "${sysconfdir}/* \
${libdir}/${MOZILLA_HOME}/*"
FILES_${PN}-dbg += "${libdir}/${MOZILLA_HOME}/plugins/.debug/*"
|