radlib is a "rapid application development" library (http://www.radlib.teel.ws/)
wview is weather station app (http://www.wviewweather.com/)
--- /dev/null
+SECTION = "libs"
+LICENSE = "BSD"
+DESCRIPTION = "radlib is a rapid application development library for unix interprocess communications, sockets, SHA utilities, CRC utilities and much more."
+MAINTAINER = "Mark Teel (mark@teel.ws)"
+HOMEPAGE = "http://www.radlib.teel.ws/"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/radlib/radlib-${PV}.tar.gz"
+
+S = "${WORKDIR}/radlib-${PV}"
+
+inherit autotools
+do_compile_prepend() {
+ rm -f ${STAGING_LIBDIR}/librad.a
+ rm -f ${STAGING_LIBDIR}/librad.la
+ rm -f ${STAGING_LIBDIR}/librad.so
+ rm -f ${STAGING_LIBDIR}/librad.so.0
+ rm -f ${STAGING_LIBDIR}/librad.so.0.0.0
+}
+
+headers = "radbuffers.h \
+ radconffile.h \
+ radcrc.h \
+ raddebug.h \
+ radevents.h \
+ radlist.h \
+ radmsgLog.h \
+ radmsgRouter.h \
+ radprocess.h \
+ radproclist.h \
+ radprocutils.h \
+ radqueue.h \
+ radsemaphores.h \
+ radsha.h \
+ radshmem.h \
+ radsocket.h \
+ radsortlist.h \
+ radstack.h \
+ radstates.h \
+ radsysdefs.h \
+ radsystem.h \
+ radsysutils.h \
+ radtimers.h \
+ radtimeUtils.h \
+ raddatabase.h \
+ radUDPsocket.h"
+
+do_stage () {
+ cd ${S}/src/.libs
+
+ oe_libinstall -so -a librad ${STAGING_LIBDIR}/
+ cd ${S}/h
+ for i in ${headers}; do
+ install -m 0644 $i ${STAGING_INCDIR}/
+ done
+ cd ${S}
+}
+
+
--- /dev/null
+DEPENDS = "mysql"
+
+export CFLAGS_append=" -I${STAGING_INCDIR}/mysql "
+
+EXTRA_OECONF = " --host=${TARGET_SYS} --prefix=${STAGING_DIR} --enable-mysql"
+
--- /dev/null
+include radlib-common.inc
+include radlib-mysql.inc
+PR = "r0"
--- /dev/null
+EXTRA_OECONF = " --host=${TARGET_SYS} --prefix=${STAGING_DIR}"
--- /dev/null
+include radlib-common.inc
+include radlib.inc
+PR = "r0"
--- /dev/null
+SECTION = "apps"
+LICENSE = "GPL"
+DESCRIPTION = "wview is a weather site generator and more for a variety of weather stations"
+MAINTAINER = "Mark Teel (mark@teel.ws)"
+HOMEPAGE = "http://www.wviewweather.com/"
+DEPENDS += " bash util-linux gd openssl curl update-rc.d"
+
+SRC_URI = "${SOURCEFORGE_MIRROR}/wview/wview-${PV}.tar.gz"
+
+S = "${WORKDIR}/wview-${PV}"
+
+inherit autotools
+
+EXTRA_OECONF += " --enable-wunderground"
+
+do_install_append() {
+ install -d ${D}/${sysconfdir}/init.d
+ install -d ${D}/${sysconfdir}/wview
+ install -d ${D}/${sysconfdir}/wview/html
+ install -d ${D}/${sysconfdir}/wview/alarms
+ install -m 755 ${S}/examples/NSLU2/wview ${D}/${sysconfdir}/init.d
+ install -m 644 ${S}/examples/conf/*.* ${D}/${sysconfdir}/wview
+ install -m 755 ${S}/examples/alarms/*.sh ${D}/${sysconfdir}/wview/alarms
+ install -m 644 ${S}/examples/html/*.* ${D}/${sysconfdir}/wview/html
+
+ install -d ${D}/var/wview
+ install -d ${D}/var/wview/archive
+ install -d ${D}/var/wview/alarms
+ install -d ${D}/var/wview/img
+ install -d ${D}/var/wview/noaa
+ install -m 644 ${S}/bin/img/*.* ${D}/var/wview/img
+
+ if test "x${D}" != "x"; then
+ D="-r ${D}"
+ else
+ D=""
+ fi
+ update-rc.d $D wview defaults 95 15
+}
--- /dev/null
+DEPENDS += " radlib-mysql"
+
+export CFLAGS_append=" -I${STAGING_INCDIR}/mysql "
+export LDFLAGS_append=" -L${STAGING_LIBDIR}/mysql "
+
+EXTRA_OECONF += " --enable-mysql"
+
--- /dev/null
+include wview-common.inc
+include wview-mysql.inc
+EXTRA_OECONF += " --enable-station-sim"
--- /dev/null
+include wview-common.inc
+include wview.inc
+EXTRA_OECONF += " --enable-station-sim"
+PR = "r0"
--- /dev/null
+include wview-common.inc
+include wview-mysql.inc
+EXTRA_OECONF += " --enable-station-vpro"
--- /dev/null
+include wview-common.inc
+include wview.inc
+EXTRA_OECONF += " --enable-station-vpro"
+PR = "r0"
--- /dev/null
+include wview-common.inc
+include wview-mysql.inc
+EXTRA_OECONF += " --enable-station-wxt510"
--- /dev/null
+include wview-common.inc
+include wview.inc
+EXTRA_OECONF += " --enable-station-wxt510"
+PR = "r0"
--- /dev/null
+DEPENDS += " radlib"
+