summaryrefslogtreecommitdiff
path: root/dropbear/dropbear_0.43.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
committerChris Larson <clarson@kergoth.com>2004-12-07 22:05:47 +0000
commita780643c4b6aa11e1a36965a69df7116477c7b4c (patch)
tree17e81e77bde19931facf9b30fa5b5981df796071 /dropbear/dropbear_0.43.oe
parent88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff)
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb 2004/12/07 04:58:25-06:00 ti.com!kergoth More updates per the core rename. 2004/12/07 04:46:51-06:00 ti.com!kergoth Update soundtracker per the core rename. 2004/12/07 04:44:14-06:00 ti.com!kergoth Merge 2004/12/07 04:42:38-06:00 ti.com!kergoth Updates per the recent rename of the oe core from 'oe' to 'bitbake'. BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'dropbear/dropbear_0.43.oe')
-rw-r--r--dropbear/dropbear_0.43.oe63
1 files changed, 0 insertions, 63 deletions
diff --git a/dropbear/dropbear_0.43.oe b/dropbear/dropbear_0.43.oe
deleted file mode 100644
index 55849f36d9..0000000000
--- a/dropbear/dropbear_0.43.oe
+++ /dev/null
@@ -1,63 +0,0 @@
-SECTION = "console/network"
-DESCRIPTION = "Dropbear SSH Implementation"
-LICENSE = "MIT"
-DEPENDS = "zlib"
-PR = "r6"
-
-SRC_URI = "http://matt.ucc.asn.au/dropbear/releases/dropbear-${PV}.tar.bz2 \
- file://configure.patch;patch=1 \
- file://allow-nopw.patch;patch=1 \
- file://multi-binary.patch;patch=1 \
- file://init"
-S = "${WORKDIR}/dropbear-${PV}"
-
-inherit autotools update-rc.d
-
-INITSCRIPT_NAME = "dropbear"
-INITSCRIPT_PARAMS = "defaults 10"
-
-CFLAGS_prepend = "-I. "
-LD = "${CC}"
-
-do_compile () {
- oe_runmake dropbearmulti
-}
-
-do_install () {
- install -d ${D}/${sysconfdir} \
- ${D}/${sysconfdir}/init.d \
- ${D}/${sysconfdir}/default \
- ${D}/${sysconfdir}/dropbear \
- ${D}/${sbindir} \
- ${D}/${localstatedir}
-
- install -m 0755 dropbearmulti ${D}/${sbindir}/
- cd ${D}/${sbindir}/ && ln -s ./dropbearmulti dropbear && ln -s ./dropbearmulti dropbearkey && ln -s ./dropbearmulti dropbearconvert
-# autotools_do_install
- cat ${WORKDIR}/init | sed -e 's,/etc,${sysconfdir},g' \
- -e 's,/usr/sbin,${sbindir},g' \
- -e 's,/var,${localstatedir},g' \
- -e 's,/usr/bin,${bindir},g' \
- -e 's,/usr,${prefix},g' > ${D}/${sysconfdir}/init.d/dropbear
- chmod 755 ${D}/${sysconfdir}/init.d/dropbear
-}
-pkg_postinst_append () {
-
-if [ -n "$D" ]; then exit 1; fi
-if [ ! -f "${sysconfdir}/dropbear/dropbear_rsa_host_key" ]; then
- dropbearkey -t rsa -f ${sysconfdir}/dropbear/dropbear_rsa_host_key
-fi
-#if [ ! -f "${sysconfdir}/dropbear/dropbear_dss_host_key" ]; then
-# dropbearkey -t dss -f ${sysconfdir}/dropbear/dropbear_dss_host_key
-#fi
-}
-
-pkg_postrm_append () {
-
-if [ -f "${sysconfdir}/dropbear/dropbear_rsa_host_key" ]; then
- rm ${sysconfdir}/dropbear/dropbear_rsa_host_key
-fi
-if [ -f "${sysconfdir}/dropbear/dropbear_dss_host_key" ]; then
- rm ${sysconfdir}/dropbear/dropbear_dss_host_key
-fi
-}