summaryrefslogtreecommitdiff
path: root/packages/xmms/xmms_1.2.10.bb
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/xmms/xmms_1.2.10.bb
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (diff)
rename packages/ to recipes/ per earlier agreement
See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/xmms/xmms_1.2.10.bb')
-rw-r--r--packages/xmms/xmms_1.2.10.bb73
1 files changed, 0 insertions, 73 deletions
diff --git a/packages/xmms/xmms_1.2.10.bb b/packages/xmms/xmms_1.2.10.bb
deleted file mode 100644
index 0f81e87518..0000000000
--- a/packages/xmms/xmms_1.2.10.bb
+++ /dev/null
@@ -1,73 +0,0 @@
-DESCRIPTION = "The X MultiMedia System"
-HOMEPAGE = "http://www.xmms.org/"
-LICENSE = "GPL"
-SECTION = "x11/multimedia"
-# TODO add esd
-DEPENDS = "gtk+-1.2 libvorbis mikmod alsa-lib libsm esound"
-
-SRC_URI = "http://www.xmms.org/files/1.2.x/xmms-${PV}.tar.bz2 \
- file://gcc4.patch;patch=1 \
- file://xmms-config-dequote.patch;patch=1 \
- file://acinclude.m4 \
- file://xmms.sh"
-PR = "r4"
-
-RRECOMMENDS_${PN} = "xmms-plugin-output-oss xmms-plugin-output-alsa \
- xmms-mad xmms-tremor"
-
-inherit autotools binconfig
-
-# TODO enable esd
-EXTRA_OECONF = "--disable-opengl --disable-esd \
- --with-vorbis-includes=${STAGING_INCDIR} \
- --with-ogg-includes=${STAGING_INCDIR} \
- --with-vorbis-libraries=${STAGING_LIBDIR} \
- --with-ogg-libraries=${STAGING_LIBDIR}"
-
-do_configure_prepend() {
- cp ${WORKDIR}/acinclude.m4 ${S}
- rm ${S}/libxmms/acinclude.m4 || true
- for i in $(find . -name "Makefile*") ; do
- sed -i -e 's:MKINSTALLDIRS = @MKINSTALLDIRS@:MKINSTALLDIRS = @mkdir_p@:g' \
- -e 's:$(SHELL) $(MKINSTALLDIRS):$(MKINSTALLDIRS):g' $i
- done
-}
-
-do_install_append() {
- install -m 0755 ${WORKDIR}/xmms.sh ${D}${bindir}
- install -d ${D}${datadir}/applications
- install xmms/xmms.desktop ${D}${datadir}/applications
- sed -i "s/Exec=xmms/Exec=xmms.sh/" ${D}${datadir}/applications/xmms.desktop
- sed -i "s/Type=Application/Type=Application\nCategories=AudioVideo;/" ${D}${datadir}/applications/xmms.desktop
- install -d ${D}${datadir}/pixmaps
- install xmms/xmms_mini.xpm ${D}${datadir}/pixmaps
-}
-
-PACKAGES_DYNAMIC = "xmms-plugin-effect-* xmms-plugin-general-* \
- xmms-plugin-input-* xmms-plugin-output-* \
- xmms-plugin-visualisation-*"
-
-python populate_packages_prepend () {
- import os.path
-
- xmms_libdir = bb.data.expand('${libdir}/xmms', d)
- effects_root = os.path.join(xmms_libdir, 'Effect')
- general_root = os.path.join(xmms_libdir, 'General')
- input_root = os.path.join(xmms_libdir, 'Input')
- output_root = os.path.join(xmms_libdir, 'Output')
- visualisation_root = os.path.join(xmms_libdir, 'Visualization')
-
- do_split_packages(d, effects_root, '^lib(.*)\.so$', 'xmms-plugin-effect-%s', 'XMMS Effect plugin for %s')
- do_split_packages(d, general_root, '^lib(.*)\.so$', 'xmms-plugin-general-%s', 'XMMS General plugin for %s')
- do_split_packages(d, input_root, '^lib(.*)\.so$', 'xmms-plugin-input-%s', 'XMMS Input plugin for %s')
- do_split_packages(d, output_root, '^lib(.*)\.so$', 'xmms-plugin-output-%s', 'XMMS Output plugin for %s')
- do_split_packages(d, visualisation_root, '^lib(.*)\.so$', 'xmms-plugin-visualization-%s', 'XMMS Visualization plugin for %s')
-}
-
-do_stage() {
- autotools_stage_all
-}
-
-FILES_${PN} = "${bindir}/xmms ${bindir}/xmms.sh ${libdir}/libxmms*.so.* \
- ${datadir}/applications/xmms.desktop \
- ${datadir}/pixmaps/xmms_mini.xpm"