From 7fe4faa796d3393f6a806c3ebb56c0a2792c1144 Mon Sep 17 00:00:00 2001 From: Jay Freeman Date: Wed, 2 Jan 2008 02:54:43 +0000 Subject: Now serving 100 packages, fixed gzip priority/dependents, and moved subversion to versioning. git-svn-id: http://svn.telesphoreo.org/trunk@8 514c082c-b64e-11dc-b46d-3d985efe055d --- data/stunnel/_metadata/description | 2 ++ data/stunnel/_metadata/license | 19 +++++++++++++ data/stunnel/_metadata/maintainer | 1 + data/stunnel/_metadata/priority | 1 + data/stunnel/_metadata/section | 1 + data/stunnel/_metadata/version | 1 + data/stunnel/dylib.diff | 53 +++++++++++++++++++++++++++++++++++++ data/stunnel/make.sh | 7 +++++ data/stunnel/stunnel-3.26.tar.gz | Bin 0 -> 228923 bytes 9 files changed, 85 insertions(+) create mode 100644 data/stunnel/_metadata/description create mode 100644 data/stunnel/_metadata/license create mode 120000 data/stunnel/_metadata/maintainer create mode 100644 data/stunnel/_metadata/priority create mode 100644 data/stunnel/_metadata/section create mode 100644 data/stunnel/_metadata/version create mode 100644 data/stunnel/dylib.diff create mode 100644 data/stunnel/make.sh create mode 100644 data/stunnel/stunnel-3.26.tar.gz (limited to 'data/stunnel') diff --git a/data/stunnel/_metadata/description b/data/stunnel/_metadata/description new file mode 100644 index 000000000..005d9a0c9 --- /dev/null +++ b/data/stunnel/_metadata/description @@ -0,0 +1,2 @@ +this package isn't described yet +This package, which I'm certain is incredibly interesting, has yet to be described. This is probably because Jay has spent days getting all kinds of bookkeeping issues, like copyright notifications, all in their correct places, and descriptions just aren't the most important thing he could be working on. If this is a problem, please come back later. diff --git a/data/stunnel/_metadata/license b/data/stunnel/_metadata/license new file mode 100644 index 000000000..debb659f6 --- /dev/null +++ b/data/stunnel/_metadata/license @@ -0,0 +1,19 @@ +stunnel Universal SSL tunnel + +Distribution methods: + + Source code is distributed under GPL license. + See COPYRIGHT.GPL file. + + In addition, as a special exception, Michal Trojnara gives + permission to link the code of this program with the OpenSSL + library (or with modified versions of OpenSSL that use the same + license as OpenSSL), and distribute linked combinations including + the two. You must obey the GNU General Public License in all + respects for all of the code used other than OpenSSL. If you modify + this file, you may extend this exception to your version of the + file, but you are not obligated to do so. If you do not wish to + do so, delete this exception statement from your version. + + Precompiled Windows binary is distributed under SSLeay license. + See COPYRIGHT.SSLeay file. diff --git a/data/stunnel/_metadata/maintainer b/data/stunnel/_metadata/maintainer new file mode 120000 index 000000000..0fa66e077 --- /dev/null +++ b/data/stunnel/_metadata/maintainer @@ -0,0 +1 @@ +../../../people/saurik \ No newline at end of file diff --git a/data/stunnel/_metadata/priority b/data/stunnel/_metadata/priority new file mode 100644 index 000000000..a6a7b9cd7 --- /dev/null +++ b/data/stunnel/_metadata/priority @@ -0,0 +1 @@ +standard diff --git a/data/stunnel/_metadata/section b/data/stunnel/_metadata/section new file mode 100644 index 000000000..992ae1298 --- /dev/null +++ b/data/stunnel/_metadata/section @@ -0,0 +1 @@ +network diff --git a/data/stunnel/_metadata/version b/data/stunnel/_metadata/version new file mode 100644 index 000000000..cf6715346 --- /dev/null +++ b/data/stunnel/_metadata/version @@ -0,0 +1 @@ +3.26 diff --git a/data/stunnel/dylib.diff b/data/stunnel/dylib.diff new file mode 100644 index 000000000..afe8d48e9 --- /dev/null +++ b/data/stunnel/dylib.diff @@ -0,0 +1,53 @@ +diff -ru stunnel-3.26/Makefile.in stunnel-3.26+iPhone/Makefile.in +--- stunnel-3.26/Makefile.in 2003-04-03 01:43:47.000000000 +0000 ++++ stunnel-3.26+iPhone/Makefile.in 2008-01-02 01:33:45.000000000 +0000 +@@ -24,7 +24,7 @@ + LIBS=@LIBS@ + HEADERS=common.h prototypes.h client.h + OBJS=client.o stunnel.o ssl.o protocol.o sthreads.o pty.o log.o options.o +-DESTFILES=$(sbindir)/stunnel $(libdir)/stunnel.so $(man8dir)/stunnel.8 $(PEM_DIR)/stunnel.pem ++DESTFILES=$(sbindir)/stunnel $(libdir)/libstunnel.dylib $(man8dir)/stunnel.8 $(PEM_DIR)/stunnel.pem + + # Settings that are probably only useful for creating tarball dists + WINGCC=i586-mingw32msvc-gcc +@@ -37,7 +37,7 @@ + + # standard external rules + +-all: stunnel stunnel.8 stunnel.html stunnel.so stunnel.pem ++all: stunnel stunnel.8 stunnel.html libstunnel.dylib stunnel.pem + + install: all installdirs $(DESTFILES) + +@@ -48,7 +48,7 @@ + $(MAKE) INSTALL='$(INSTALL) -s' install + + clean: +- rm -f stunnel stunnel.so $(OBJS) core config.log stunnel.log ++ rm -f stunnel libstunnel.dylib $(OBJS) core config.log stunnel.log + + distclean: clean + rm -f config.cache config.status Makefile stunnel.pem stunnel.exe +@@ -93,9 +93,8 @@ + stunnel: $(OBJS) + $(CC) $(LDFLAGS) -o stunnel $(OBJS) $(LIBS) + +-stunnel.so: Makefile env.c +- $(CC) -fPIC -shared $(LDFLAGS) -o stunnel.so env.c $(LIBS) || \ +- touch stunnel.so ++libstunnel.dylib: Makefile env.c ++ $(CC) -fPIC -shared $(LDFLAGS) -dynamiclib -o libstunnel.dylib env.c $(LIBS) + + Makefile: configure Makefile.in + ./configure +@@ -119,8 +118,8 @@ + $(sbindir)/stunnel: stunnel + $(INSTALL) -m 711 stunnel $(sbindir) + +-$(libdir)/stunnel.so: stunnel.so +- test ! -s stunnel.so || $(INSTALL) -m 755 stunnel.so $(libdir) ++$(libdir)/libstunnel.dylib: libstunnel.dylib ++ test ! -s libstunnel.dylib || $(INSTALL) -m 755 libstunnel.dylib $(libdir) + + $(man8dir)/stunnel.8: stunnel.8 + $(INSTALLMAN) -m 644 stunnel.8 $(man8dir) diff --git a/data/stunnel/make.sh b/data/stunnel/make.sh new file mode 100644 index 000000000..05f3c03cc --- /dev/null +++ b/data/stunnel/make.sh @@ -0,0 +1,7 @@ +pkg:extract +cd * +pkg:patch +pkg:configure ac_cv_file___dev_urandom_=yes ac_cv_file___dev_ptmx_=yes ac_cv_file___dev_ptc_=no --with-ssl="${PKG_ROOT}/usr" +touch stunnel.pem +make openssl="$(which openssl)" +make install prefix="${PKG_DEST}/usr" diff --git a/data/stunnel/stunnel-3.26.tar.gz b/data/stunnel/stunnel-3.26.tar.gz new file mode 100644 index 000000000..c618afd8c Binary files /dev/null and b/data/stunnel/stunnel-3.26.tar.gz differ -- cgit v1.2.3