summaryrefslogtreecommitdiff
path: root/packages/stunnel
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/stunnel
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (diff)
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 <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/stunnel')
-rw-r--r--packages/stunnel/files/init34
-rw-r--r--packages/stunnel/files/stunnel.conf6
-rw-r--r--packages/stunnel/stunnel-4.09/automake.patch12
-rw-r--r--packages/stunnel/stunnel-4.09/configure.patch37
-rw-r--r--packages/stunnel/stunnel.inc25
-rw-r--r--packages/stunnel/stunnel_4.09.bb7
6 files changed, 0 insertions, 121 deletions
diff --git a/packages/stunnel/files/init b/packages/stunnel/files/init
deleted file mode 100644
index 8f0a0139b5..0000000000
--- a/packages/stunnel/files/init
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-DAEMON=/usr/sbin/stunnel
-NAME=stunnel
-DESC="SSH Tunneling"
-ARGS=""
-
-test -f $DAEMON || exit 0
-
-set -e
-
-case "$1" in
- start)
- echo -n "* starting $DESC: $NAME... "
- start-stop-daemon -S -x $DAEMON -- $ARGS
- echo "done."
- ;;
- stop)
- echo -n "* stopping $DESC: $NAME... "
- start-stop-daemon -K -x $DAEMON
- echo "done."
- ;;
- restart)
- echo "* restarting $DESC: $NAME... "
- $0 stop
- $0 start
- echo "done."
- ;;
- *)
- echo "Usage: $0 {start|stop|restart}"
- exit 1
- ;;
-esac
-
-exit 0
diff --git a/packages/stunnel/files/stunnel.conf b/packages/stunnel/files/stunnel.conf
deleted file mode 100644
index 0deb1a0f46..0000000000
--- a/packages/stunnel/files/stunnel.conf
+++ /dev/null
@@ -1,6 +0,0 @@
-key=/etc/certs/mtx.key
-cert=/etc/certs/mtx.crt
-
-[https]
-accept=443
-connect=80
diff --git a/packages/stunnel/stunnel-4.09/automake.patch b/packages/stunnel/stunnel-4.09/automake.patch
deleted file mode 100644
index ea93933aba..0000000000
--- a/packages/stunnel/stunnel-4.09/automake.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Index: stunnel-4.09/Makefile.am
-===================================================================
---- stunnel-4.09.orig/Makefile.am 2004-10-10 01:37:15.000000000 -0400
-+++ stunnel-4.09/Makefile.am 2005-04-01 22:09:06.819735144 -0500
-@@ -1,6 +1,6 @@
- ## Process this file with automake to produce Makefile.in
-
--SUBDIRS = src doc tools
-+SUBDIRS = src doc
-
- # extra_src = src/gui.c src/resources.rc src/stunnel.ico src/stunnel.exe
- # extra_doc = doc/stunnel.pod doc/stunnel.8 doc/stunnel.html doc/en doc/pl
diff --git a/packages/stunnel/stunnel-4.09/configure.patch b/packages/stunnel/stunnel-4.09/configure.patch
deleted file mode 100644
index 1cd7cc2791..0000000000
--- a/packages/stunnel/stunnel-4.09/configure.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Index: stunnel-4.09/configure.ac
-===================================================================
---- stunnel-4.09.orig/configure.ac 2005-02-28 11:24:17.000000000 -0500
-+++ stunnel-4.09/configure.ac 2005-04-01 22:12:06.007494464 -0500
-@@ -35,8 +35,30 @@
- AC_CHECK_SIZEOF(unsigned long)
-
- AC_MSG_NOTICE([**************************************** PTY device files])
--AC_CHECK_FILE("/dev/ptmx", AC_DEFINE(HAVE_DEV_PTMX))
--AC_CHECK_FILE("/dev/ptc", AC_DEFINE(HAVE_DEV_PTS_AND_PTC))
-+AC_ARG_WITH(ptmx,
-+ [ --with-ptmx /dev/ptmx exists (default: check for existance)],
-+ [
-+ if test x"$withval" = "xyes"; then
-+ AC_DEFINE(HAVE_DEV_PTMX)
-+ fi
-+ ],
-+ [
-+ # Check for ptmx device
-+ AC_CHECK_FILE("/dev/ptmx", AC_DEFINE(HAVE_DEV_PTMX))
-+ ]
-+)
-+AC_ARG_WITH(ptc,
-+ [ --with-ptc /dev/ptc exists (default: check for existance)],
-+ [
-+ if test x"$withval" = "xyes"; then
-+ AC_DEFINE(HAVE_DEV_PTS_AND_PTC)
-+ fi
-+ ],
-+ [
-+ # Check for ptc device
-+ AC_CHECK_FILE("/dev/ptc", AC_DEFINE(HAVE_DEV_PTS_AND_PTC))
-+ ]
-+)
-
- AC_MSG_NOTICE([**************************************** SSL and entropy])
- checkssldir() { :
diff --git a/packages/stunnel/stunnel.inc b/packages/stunnel/stunnel.inc
deleted file mode 100644
index 6be13b8682..0000000000
--- a/packages/stunnel/stunnel.inc
+++ /dev/null
@@ -1,25 +0,0 @@
-SECTION = "console/network"
-DEPENDS = "openssl"
-HOMEPAGE = "http://www.stunnel.org"
-LICENSE = "GPL"
-DESCRIPTION = "Stunnel is a program that allows you to encrypt \
-arbitrary TCP connections inside SSL"
-
-S = "${WORKDIR}/stunnel-${PV}"
-
-inherit autotools update-rc.d
-
-INITSCRIPT_NAME = "stunnel"
-INITSCRIPT_PARAMS = "defaults"
-
-EXTRA_OECONF = "--with-ssl=${STAGING_LIBDIR}/.. \
- --with-random=/dev/urandom \
- --with-ptmx \
- --without-ptc"
-
-do_install() {
- autotools_do_install
- install -d ${D}${sysconfdir}/stunnel ${D}${sysconfdir}/init.d
- install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/stunnel
- install -m 644 ${WORKDIR}/stunnel.conf ${D}${sysconfdir}/stunnel
-}
diff --git a/packages/stunnel/stunnel_4.09.bb b/packages/stunnel/stunnel_4.09.bb
deleted file mode 100644
index 275c8f2a74..0000000000
--- a/packages/stunnel/stunnel_4.09.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-require stunnel.inc
-
-SRC_URI = "http://www.stunnel.org/download/stunnel/src/stunnel-${PV}.tar.gz \
- file://configure.patch;patch=1 \
- file://automake.patch;patch=1 \
- file://init \
- file://stunnel.conf"