mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
a5f631eefd
This is the "supported" fork of thttpd which has a rewritten build system to avoid the need to patch it, as well as other minor fixes. The recipe was based on the thttpd recipe in meta-arago-extras (originally migrated from OE-Classic by Franklin S. Cooper Jr <fcooper@ti.com>) with the following improvements: * Set SUMMARY * Remove PARALLEL_MAKE = "" (new build system should avoid previous issues) * Use more accurate LICENSE * Rearrange recipe to conform with current style * Use += instead of _append for FILES definitions * Add LSB headers to initscript * Fix hardcoded ${sbindir} in initscript Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
32 lines
1.1 KiB
BlitzBasic
32 lines
1.1 KiB
BlitzBasic
SUMMARY = "A simple, small, portable, fast, and secure HTTP server"
|
|
DESCRIPTION = "A simple, small, portable, fast, and secure HTTP server (supported fork of thttpd)."
|
|
HOMEPAGE = "http://opensource.dyc.edu/sthttpd"
|
|
LICENSE = "BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://src/thttpd.c;beginline=1;endline=26;md5=0c5762c2c34dcbe9eb18815516502872"
|
|
|
|
SRC_URI = "http://opensource.dyc.edu/pub/sthttpd/sthttpd-${PV}.tar.gz \
|
|
file://init"
|
|
|
|
SRC_URI[md5sum] = "e645a85a97d3cb883011a35bc2211815"
|
|
SRC_URI[sha256sum] = "78e87979140cbda123c81b4051552242dbbffb5dec1a17e5f95ec4826b1eaddb"
|
|
|
|
S = "${WORKDIR}/sthttpd-${PV}"
|
|
|
|
inherit autotools update-rc.d
|
|
|
|
EXTRA_OEMAKE += "'WEBDIR=${servicedir}/www'"
|
|
|
|
do_install_append () {
|
|
install -d ${D}${sysconfdir}/init.d
|
|
install -c -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/thttpd
|
|
sed -i -e 's,@@SRVDIR,${servicedir}/www,g' ${D}${sysconfdir}/init.d/thttpd
|
|
sed -i 's!/usr/sbin/!${sbindir}/!g' ${D}${sysconfdir}/init.d/thttpd
|
|
}
|
|
|
|
INITSCRIPT_NAME = "thttpd"
|
|
INITSCRIPT_PARAMS = "defaults"
|
|
|
|
FILES_${PN} += "${servicedir}"
|
|
FILES_${PN}-dbg += "${servicedir}/www/cgi-bin/.debug"
|
|
|