diff options
author | Justin Patrin <papercrane@gmail.com> | 2006-02-08 21:11:38 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-08 21:11:38 +0000 |
commit | 0aaff4f4186ce0a81dad184286c9d9c055505647 (patch) | |
tree | a524a47326e60c9b822a5e74cc8a93692bdc9cc4 /packages/wview/wview-common.inc | |
parent | 3ccbc62b4df338ac26cba4b8ad62ad5ed09ec1db (diff) | |
parent | 5bf510d4128ad91f1b100fc80e3f2893dc20f686 (diff) |
merge of c2094ddd8cbb045e11f78698e810cdeb3511237c
and 50acc639ce5b409ac093c8ee464628c013b38b1e
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 +} |