diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2006-02-07 15:51:11 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-07 15:51:11 +0000 |
commit | 2f001ca874831915cef6264dd0de708859f81caf (patch) | |
tree | 9925d8ebd47d6c31ac8c6edbbbfe5b616d72e858 /packages/wview/wview-common.inc | |
parent | c2564f341b46fbc5e77b950ad977e185a1997e0b (diff) |
radlib/wview: Add radlib/wview packages
radlib is a "rapid application development" library (http://www.radlib.teel.ws/)
wview is weather station app (http://www.wviewweather.com/)
Diffstat (limited to 'packages/wview/wview-common.inc')
-rw-r--r-- | packages/wview/wview-common.inc | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/packages/wview/wview-common.inc b/packages/wview/wview-common.inc new file mode 100644 index 0000000000..0efeee271c --- /dev/null +++ b/packages/wview/wview-common.inc @@ -0,0 +1,39 @@ +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 +} |