From 29d6678fd546377459ef75cf54abeef5b969b5cf Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 27 Aug 2010 15:14:24 +0100 Subject: Major layout change to the packages directory Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie --- meta/packages/ofono/files/ofono | 42 --------------------------------------- meta/packages/ofono/ofono.inc | 16 --------------- meta/packages/ofono/ofono_0.17.bb | 7 ------- meta/packages/ofono/ofono_git.bb | 13 ------------ 4 files changed, 78 deletions(-) delete mode 100644 meta/packages/ofono/files/ofono delete mode 100644 meta/packages/ofono/ofono.inc delete mode 100644 meta/packages/ofono/ofono_0.17.bb delete mode 100644 meta/packages/ofono/ofono_git.bb (limited to 'meta/packages/ofono') diff --git a/meta/packages/ofono/files/ofono b/meta/packages/ofono/files/ofono deleted file mode 100644 index 6d46fb896..000000000 --- a/meta/packages/ofono/files/ofono +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh - -DAEMON=/usr/sbin/ofonod -PIDFILE=/var/run/ofonod.pid -DESC="Telephony daemon" - -if [ -f /etc/default/ofono] ; then - . /etc/default/ofono -fi - -set -e - -do_start() { - $DAEMON -} - -do_stop() { - start-stop-daemon --stop --name ofonod --quiet -} - -case "$1" in - start) - echo "Starting $DESC" - do_start - ;; - stop) - echo "Stopping $DESC" - do_stop - ;; - restart|force-reload) - echo "Restarting $DESC" - do_stop - sleep 1 - do_start - ;; - *) - echo "Usage: $0 {start|stop|restart|force-reload}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/meta/packages/ofono/ofono.inc b/meta/packages/ofono/ofono.inc deleted file mode 100644 index 8948e57ae..000000000 --- a/meta/packages/ofono/ofono.inc +++ /dev/null @@ -1,16 +0,0 @@ -HOMEPAGE = "http://www.ofono.org" -SUMMARY = "open source telephony" -LICENSE = "GPL" - -inherit autotools pkgconfig update-rc.d - -DEPENDS = "dbus glib-2.0" - -INITSCRIPT_NAME = "ofono" -INITSCRIPT_PARAMS = "defaults 22" - -do_install_append() { - install -d ${D}${sysconfdir}/init.d/ - install -m 0755 ${WORKDIR}/ofono ${D}${sysconfdir}/init.d/ofono -} - diff --git a/meta/packages/ofono/ofono_0.17.bb b/meta/packages/ofono/ofono_0.17.bb deleted file mode 100644 index 02b64e5b2..000000000 --- a/meta/packages/ofono/ofono_0.17.bb +++ /dev/null @@ -1,7 +0,0 @@ -require ofono.inc - -PR = "r0" - -SRC_URI = "http://www.kernel.org/pub/linux/network/ofono/${P}.tar.bz2 \ - file://ofono" - diff --git a/meta/packages/ofono/ofono_git.bb b/meta/packages/ofono/ofono_git.bb deleted file mode 100644 index 3e2c4108c..000000000 --- a/meta/packages/ofono/ofono_git.bb +++ /dev/null @@ -1,13 +0,0 @@ -require ofono.inc - -S = "${WORKDIR}/git" -PV = "0.12-git${SRCPV}" -PR = "r1" - -SRC_URI = "git://git.kernel.org/pub/scm/network/ofono/ofono.git;protocol=git \ - file://ofono" - -do_configure_prepend () { - ${S}/bootstrap -} - -- cgit v1.2.3