From 709c4d66e0b107ca606941b988bad717c0b45d9b Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Tue, 17 Mar 2009 14:32:59 -0400 Subject: rename packages/ to recipes/ per earlier agreement See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko Acked-by: Mike Westerhof Acked-by: Philip Balister Acked-by: Khem Raj Acked-by: Marcin Juszkiewicz Acked-by: Koen Kooi Acked-by: Frans Meulenbroeks --- recipes/maradns/files/init | 35 ++++++++++++++++++ recipes/maradns/files/rng-makefile-build-cc.patch | 11 ++++++ recipes/maradns/maradns_1.0.39.bb | 43 +++++++++++++++++++++++ recipes/maradns/maradns_1.0.41.bb | 43 +++++++++++++++++++++++ 4 files changed, 132 insertions(+) create mode 100755 recipes/maradns/files/init create mode 100644 recipes/maradns/files/rng-makefile-build-cc.patch create mode 100644 recipes/maradns/maradns_1.0.39.bb create mode 100644 recipes/maradns/maradns_1.0.41.bb (limited to 'recipes/maradns') diff --git a/recipes/maradns/files/init b/recipes/maradns/files/init new file mode 100755 index 0000000000..0e4d1b8418 --- /dev/null +++ b/recipes/maradns/files/init @@ -0,0 +1,35 @@ +PATH=/sbin:/bin:/usr/sbin:/usr/bin +DAEMON=/usr/sbin/maradns +NAME="maradns" +DESC="DNS server" +CONF="/etc/maradns/mararc" + +test -f $DAEMON || exit 0 + +set -e + +case "$1" in + start) + echo -n "Starting $DESC: " + start-stop-daemon -S -x $DAEMON -- -f $CONF 2>&1 | logger -p daemon.notice -t $NAME & + echo "$NAME." + ;; + stop) + echo -n "Stopping $DESC: " + start-stop-daemon -K -x $DAEMON + echo "$NAME." + ;; + restart) + echo -n "Restarting $DESC: " + $0 stop + sleep 3 + $0 start + ;; + *) + N=/etc/init.d/$NAME + echo "Usage: $N {start|stop|restart}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/recipes/maradns/files/rng-makefile-build-cc.patch b/recipes/maradns/files/rng-makefile-build-cc.patch new file mode 100644 index 0000000000..55f95ab1cd --- /dev/null +++ b/recipes/maradns/files/rng-makefile-build-cc.patch @@ -0,0 +1,11 @@ +--- rng/Makefile.orig 2004-09-24 16:10:44.550378128 +0200 ++++ rng/Makefile 2004-09-24 16:11:02.147702928 +0200 +@@ -20,7 +20,7 @@ + $(CC) -c $(FLAGS) -o rng-api-fst.o rng-api-fst.c + + make_32bit_tables: make_32bit_tables.c +- $(CC) -o make_32bit_tables make_32bit_tables.c ++ $(BUILD_CC) -o make_32bit_tables make_32bit_tables.c + + rng-32bit-tables.h: make_32bit_tables + ./make_32bit_tables > rng-32bit-tables.h diff --git a/recipes/maradns/maradns_1.0.39.bb b/recipes/maradns/maradns_1.0.39.bb new file mode 100644 index 0000000000..a8bed6f05e --- /dev/null +++ b/recipes/maradns/maradns_1.0.39.bb @@ -0,0 +1,43 @@ +DESCRIPTION = "A security-aware DNS server" +SECTION = "console/network" +HOMEPAGE = "http://www.maradns.org" +LICENSE = "PD" + +SRC_URI = "http://www.maradns.org/download/1.0/maradns-${PV}.tar.bz2 \ + file://init \ + file://rng-makefile-build-cc.patch;patch=1;pnum=0" + +do_install() { + install -d ${D}${bindir} + install -d ${D}${sbindir} + install -d ${D}${sysconfdir} + install -d ${D}${sysconfdir}/mararc + install -d ${D}${sysconfdir}/init.d + install -d ${D}${mandir}/man1 + install -d ${D}${mandir}/man5 + install -d ${D}${mandir}/man8 + + sed -i -e "s:PREFIX/man:PREFIX/share/man:" \ + -e "s:PREFIX/doc/maradns-\$VERSION:PREFIX/share/doc/${PF}:" \ + build/install.locations + + oe_runmake \ + TOPLEVEL=${S} \ + BUILDDIR=${S}/build \ + RPM_BUILD_ROOT=${D} \ + PREFIX=${D}/usr \ + MAN1=${D}${mandir}/man1 \ + MAN5=${D}${mandir}/man5 \ + MAN8=${D}${mandir}/man8 \ + install + + mv ${D}${sysconfdir}/mararc/example_mararc ${D}${sysconfdir}/maradns/mararc + rm -r ${D}${sysconfdir}/mararc/ + install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/maradns +} + +PACKAGES =+ "maradns-zone maradns-ask" +FILES_maradns-zone = "${sbindir}/zoneserver ${bindir}/getzone" +FILES_maradns-ask = "${bindir}/askmara" + +CONFFILES_${PN}_nylon = "/etc/maradns/mararc" diff --git a/recipes/maradns/maradns_1.0.41.bb b/recipes/maradns/maradns_1.0.41.bb new file mode 100644 index 0000000000..a8bed6f05e --- /dev/null +++ b/recipes/maradns/maradns_1.0.41.bb @@ -0,0 +1,43 @@ +DESCRIPTION = "A security-aware DNS server" +SECTION = "console/network" +HOMEPAGE = "http://www.maradns.org" +LICENSE = "PD" + +SRC_URI = "http://www.maradns.org/download/1.0/maradns-${PV}.tar.bz2 \ + file://init \ + file://rng-makefile-build-cc.patch;patch=1;pnum=0" + +do_install() { + install -d ${D}${bindir} + install -d ${D}${sbindir} + install -d ${D}${sysconfdir} + install -d ${D}${sysconfdir}/mararc + install -d ${D}${sysconfdir}/init.d + install -d ${D}${mandir}/man1 + install -d ${D}${mandir}/man5 + install -d ${D}${mandir}/man8 + + sed -i -e "s:PREFIX/man:PREFIX/share/man:" \ + -e "s:PREFIX/doc/maradns-\$VERSION:PREFIX/share/doc/${PF}:" \ + build/install.locations + + oe_runmake \ + TOPLEVEL=${S} \ + BUILDDIR=${S}/build \ + RPM_BUILD_ROOT=${D} \ + PREFIX=${D}/usr \ + MAN1=${D}${mandir}/man1 \ + MAN5=${D}${mandir}/man5 \ + MAN8=${D}${mandir}/man8 \ + install + + mv ${D}${sysconfdir}/mararc/example_mararc ${D}${sysconfdir}/maradns/mararc + rm -r ${D}${sysconfdir}/mararc/ + install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/maradns +} + +PACKAGES =+ "maradns-zone maradns-ask" +FILES_maradns-zone = "${sbindir}/zoneserver ${bindir}/getzone" +FILES_maradns-ask = "${bindir}/askmara" + +CONFFILES_${PN}_nylon = "/etc/maradns/mararc" -- cgit v1.2.3