diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/mt-daapd | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (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/mt-daapd')
-rw-r--r-- | packages/mt-daapd/files/itunes-5-fix.patch | 45 | ||||
-rw-r--r-- | packages/mt-daapd/files/mt-daapd.init | 41 | ||||
-rw-r--r-- | packages/mt-daapd/mt-daapd.inc | 26 | ||||
-rw-r--r-- | packages/mt-daapd/mt-daapd_0.2.1.1.bb | 3 | ||||
-rw-r--r-- | packages/mt-daapd/mt-daapd_0.2.2.bb | 4 | ||||
-rw-r--r-- | packages/mt-daapd/mt-daapd_0.2.3.bb | 4 | ||||
-rw-r--r-- | packages/mt-daapd/mt-daapd_0.2.4.2.bb | 3 |
7 files changed, 0 insertions, 126 deletions
diff --git a/packages/mt-daapd/files/itunes-5-fix.patch b/packages/mt-daapd/files/itunes-5-fix.patch deleted file mode 100644 index e5f597295f..0000000000 --- a/packages/mt-daapd/files/itunes-5-fix.patch +++ /dev/null @@ -1,45 +0,0 @@ -# WARNING: this is a copy of the same file off www.mt-daapd.org with -# the path names fixed so that it works in OE ---- S/src/daap.c.orig 2005-09-07 21:41:41.000000000 -0500 -+++ S/src/daap.c 2005-09-07 21:44:25.000000000 -0500 -@@ -770,26 +770,28 @@ - DAAP_BLOCK *daap_response_server_info(char *name, char *client_version) { - DAAP_BLOCK *root; - int g=1; -+ int mpro = 2 << 16; -+ int apro = 3 << 16; - - DPRINTF(E_DBG,L_DAAP,"Preparing to send server-info for client ver %s\n",client_version); - - root=daap_add_empty(NULL,"msrv"); - - if(root) { -- g = (int)daap_add_int(root,"mstt",200); /* result */ -- if((!client_version)||(!strcmp(client_version,"3.0"))) { -- g = g && daap_add_int(root,"mpro",2 << 16); /* dmap proto ? */ -- g = g && daap_add_int(root,"apro",3 << 16); /* daap protocol */ -- } else { -- if(!strcmp(client_version,"1.0")) { -- g = g && daap_add_int(root,"mpro",1 << 16); /* dmap proto ? */ -- g = g && daap_add_int(root,"apro",1 << 16); /* daap protocol */ -- } else if(!strcmp(client_version,"2.0")) { -- g = g && daap_add_int(root,"mpro",1 << 16); /* dmap proto ? */ -- g = g && daap_add_int(root,"apro",2 << 16); /* daap protocol */ -- } -+ if((client_version) && (!strcmp(client_version,"1.0"))) { -+ mpro = 1 << 16; -+ apro = 1 << 16; -+ } -+ -+ if((client_version) && (!strcmp(client_version,"2.0"))) { -+ mpro = 1 << 16; -+ apro = 2 << 16; - } - -+ g = (int)daap_add_int(root,"mstt",200); /* result */ -+ g = g && daap_add_int(root,"mpro",mpro); /* dmap proto ? */ -+ g = g && daap_add_int(root,"apro",apro); /* daap protocol */ -+ - g = g && daap_add_string(root,"minm",name); /* server name */ - - #if 0 diff --git a/packages/mt-daapd/files/mt-daapd.init b/packages/mt-daapd/files/mt-daapd.init deleted file mode 100644 index 7a35a72186..0000000000 --- a/packages/mt-daapd/files/mt-daapd.init +++ /dev/null @@ -1,41 +0,0 @@ -#! /bin/sh -# -# This is an init script for openembedded -# Copy it to /etc/init.d/mt-daapd and type -# > update-rc.d mt-daapd defaults 60 -# - - -test -f /usr/sbin/mt-daapd || exit 0 - -test -d /var/spool/mt-daapd || mkdir -p /var/spool/mt-daapd - -case "$1" in - start) - echo -n "Starting mt-daapd daemon: mt-daapd" - start-stop-daemon --start --quiet --exec /usr/sbin/mt-daapd - echo "." - ;; - stop) - echo -n "Stopping mt-daapd daemon: mt-daapd" - start-stop-daemon --stop --quiet --exec /usr/sbin/mt-daapd - echo "." - ;; - reload|force-reload) - start-stop-daemon --stop --quiet --signal 1 --exec /usr/sbin/mt-daapd - ;; - restart) - echo -n "Stopping mt-daapd daemon: mt-daapd" - start-stop-daemon --stop --quiet --exec /usr/sbin/mt-daapd - sleep 1 - echo -n "Starting mt-daapd daemon: mt-daapd" - start-stop-daemon --start --quiet --exec /usr/sbin/mt-daapd - echo "." - ;; - *) - echo "Usage: /etc/init.d/mt-daapd {start|stop|reload|restart|force-reload}" - exit 1 -esac - -exit 0 - diff --git a/packages/mt-daapd/mt-daapd.inc b/packages/mt-daapd/mt-daapd.inc deleted file mode 100644 index 859e586cdf..0000000000 --- a/packages/mt-daapd/mt-daapd.inc +++ /dev/null @@ -1,26 +0,0 @@ -DESCRIPTION = "multi threaded daap server for POSIX Systems: iTunes Server." -SECTION = "console/network" -PRIORITY = "optional" -DEPENDS = "zlib gdbm libid3tag \ - ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'libid3tag', d)}" -LICENSE = "GPL" - -SRC_URI = "${SOURCEFORGE_MIRROR}/${PN}/${P}.tar.gz \ - file://${PN}.init" - -inherit autotools update-rc.d - -INITSCRIPT_NAME = "${PN}" -INITSCRIPT_PARAMS = "defaults 84" - -EXTRA_OECONF = "ac_cv_func_setpgrp_void=yes" - -do_install() { - autotools_do_install - install -d ${D}${sysconfdir} - install -d ${D}${sysconfdir}/init.d - install -m 0644 ${S}/contrib/${PN}.conf ${D}${sysconfdir} - install -m 0755 ${WORKDIR}/${PN}.init ${D}${sysconfdir}/init.d/${PN} -} - -CONFFILES_${PN} = "${sysconfdir}/${PN}.conf" diff --git a/packages/mt-daapd/mt-daapd_0.2.1.1.bb b/packages/mt-daapd/mt-daapd_0.2.1.1.bb deleted file mode 100644 index e39cd775d7..0000000000 --- a/packages/mt-daapd/mt-daapd_0.2.1.1.bb +++ /dev/null @@ -1,3 +0,0 @@ -require ${PN}.inc -PR = "r4" -SRC_URI += "file://itunes-5-fix.patch;patch=1" diff --git a/packages/mt-daapd/mt-daapd_0.2.2.bb b/packages/mt-daapd/mt-daapd_0.2.2.bb deleted file mode 100644 index 8145a5892b..0000000000 --- a/packages/mt-daapd/mt-daapd_0.2.2.bb +++ /dev/null @@ -1,4 +0,0 @@ -require ${PN}.inc -# This has not been released yet! -DEFAULT_PREFERENCE = "-1" -PR = "r1" diff --git a/packages/mt-daapd/mt-daapd_0.2.3.bb b/packages/mt-daapd/mt-daapd_0.2.3.bb deleted file mode 100644 index f6a01e0d80..0000000000 --- a/packages/mt-daapd/mt-daapd_0.2.3.bb +++ /dev/null @@ -1,4 +0,0 @@ -require ${PN}.inc -# This has not been released yet! -#DEFAULT_PREFERENCE = -1 -PR = "r1" diff --git a/packages/mt-daapd/mt-daapd_0.2.4.2.bb b/packages/mt-daapd/mt-daapd_0.2.4.2.bb deleted file mode 100644 index 9a48668e8a..0000000000 --- a/packages/mt-daapd/mt-daapd_0.2.4.2.bb +++ /dev/null @@ -1,3 +0,0 @@ -require ${PN}.inc - -PR = "r0" |