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/mystun-server/files/init | 27 +++++++++++++++++++++++++++ recipes/mystun-server/files/nossl.patch | 12 ++++++++++++ recipes/mystun-server/mystun-server_cvs.bb | 23 +++++++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 recipes/mystun-server/files/init create mode 100644 recipes/mystun-server/files/nossl.patch create mode 100644 recipes/mystun-server/mystun-server_cvs.bb (limited to 'recipes/mystun-server') diff --git a/recipes/mystun-server/files/init b/recipes/mystun-server/files/init new file mode 100644 index 0000000000..c992746260 --- /dev/null +++ b/recipes/mystun-server/files/init @@ -0,0 +1,27 @@ +#!/bin/sh + +PATH=/bin:/usr/bin:/sbin:/usr/sbin + +case "$1" in + start) + echo -n "Starting mystun server" + test -d /var/run || mkdir -p /var/run + mystun-server -D -P /var/run/mystun-server.pid + echo "." + ;; + stop) + echo -n "Stopping mystun server" + kill $(cat /var/run/mystun-server.pid) + echo "." + ;; + restart) + $0 stop + $0 start + ;; + *) + echo "Usage: $0 {start|stop|restart}" + exit 1 + ;; +esac + +exit 0 diff --git a/recipes/mystun-server/files/nossl.patch b/recipes/mystun-server/files/nossl.patch new file mode 100644 index 0000000000..a4b93d18e1 --- /dev/null +++ b/recipes/mystun-server/files/nossl.patch @@ -0,0 +1,12 @@ +diff -Nur mystun.orig/globals.h mystun/globals.h +--- mystun.orig/globals.h 2004-01-18 22:37:40.000000000 +0100 ++++ mystun/globals.h 2005-03-21 13:33:56.000000000 +0100 +@@ -29,7 +29,7 @@ + #define BUF_SIZE 65535 + #define TIMER_RESOLUTION 60 //resolution for timer process in seconds + +-#ifndef WIN32 ++#if !defined(WIN32) && defined(OPENSSL_NO_KRB5) + #include + #include + #endif diff --git a/recipes/mystun-server/mystun-server_cvs.bb b/recipes/mystun-server/mystun-server_cvs.bb new file mode 100644 index 0000000000..09766278b0 --- /dev/null +++ b/recipes/mystun-server/mystun-server_cvs.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "STUN server used to determine IP behind NAT firewall" +HOMEPAGE = "http://developer.berlios.de/projects/mystun/" +SECTION = "console/telephony" +PRIORITY = "optional" +LICENSE = "GPL" +PV = "1:0.0+cvs${SRCDATE}" + +SRC_URI="cvs://anonymous@cvs.mystun.berlios.de/cvsroot/mystun;module=mystun \ + file://init \ + file://nossl.patch;patch=1" + +S = "${WORKDIR}/mystun" + +do_compile() { + oe_runmake LIBS=-lpthread CFLAGS= server +} + +do_install() { + install -d ${D}/${sysconfdir}/init.d + install -m 0755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/mystun-server + install -d ${D}${sbindir} + install -m 0755 ${S}/server.exe ${D}${sbindir}/mystun-server +} -- cgit 1.2.3-korg