aboutsummaryrefslogtreecommitdiffstats
path: root/xmms-embedded/xmms-embedded_20040327.oe
blob: 6a0ee6c057c4ccd508a8d43f753198d6c1bc9611 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
BROKEN = "yes"
SECTION = "apps"
PRIORITY = "optional"
DEPENDS = "zlib tremor libmad libid3tag libsidplay glib-2.0 virtual/libqpe uicmoc-native"
DESCRIPTION = "XMMS embedded - lightweight audio player with video and codec plugins"

SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/xmms-embedded;module=xmms-embedded;date=${PV} \
           file://bogusincdir.patch;patch=1 \
           file://gtkremoval.patch;patch=1 \
           file://removenativeincdir.patch;patch=1 \
           file://removemikmod.patch;patch=1 \
           file://glib2.patch;patch=1 \
           file://tremorlib.patch;patch=1 \
           file://bufferdefaults.patch;patch=1 \
           file://${FILESDIR}/gcc34.patch;patch=1 \
           file://${FILESDIR}/gcc34-enum.patch;patch=1 \
           file://xmms.png"

S = "${WORKDIR}/xmms-embedded"

inherit palmtop

QMAKE_PROFILES = "xmms-e.pro"

do_configure_prepend() {
    #remove all Makefiles - build will generate the correct ones using qmake
    find ${S} -name Makefile | xargs rm -f
}

do_install() {
    install -d ${D}/${palmtopdir}/lib/xmms/Effect \
               ${D}/${palmtopdir}/lib/xmms/General \
               ${D}/${palmtopdir}/lib/xmms/Input \
               ${D}/${palmtopdir}/lib/xmms/Output \
               ${D}/${palmtopdir}/lib/xmms/skin \
               ${D}/${palmtopdir}/bin \
               ${D}/${palmtopdir}/apps/Applications \
               ${D}/${palmtopdir}/pics
    install -m 0644 xmms/General/QPEgui/xmms.desktop ${D}/${palmtopdir}/apps/Applications/xmms.desktop
    install -m 0644 ${WORKDIR}/xmms.png ${D}/${palmtopdir}/pics/xmms.png
    install -m 0755 compiled/bin/xmms ${D}/${palmtopdir}/bin/xmms
    oe_libinstall -so -C compiled libxmms ${D}/${palmtopdir}/lib
    oe_libinstall -so -C compiled/xmms/General libQPEgui ${D}/${palmtopdir}/lib/xmms/General
    for f in libfixpvorbisplugin libmplayer libshorten \
		libwav libxmms-mad libxmms-sid
    do
        oe_libinstall -so -C compiled/xmms/Input $f ${D}/${palmtopdir}/lib/xmms/Input
    done
    oe_libinstall -so -C compiled/xmms/Output liboss ${D}/${palmtopdir}/lib/xmms/Output
    for f in eject.png fileadd.png main.png norep.png pause.png play.png rew.png \
		shuf.png stop.png ff.png filedel.png move.png noshuf.png plalap.png \
		rep.png save.png skinconf urladd.png
    do
        install -m 0644 Skins/winamp_xmms/${f} ${D}/${palmtopdir}/lib/xmms/skin/${f}
    done
}