summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-04-29 20:29:23 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-04-29 20:29:23 +0000
commitdec5603a0a1c88ff77195f6b242c076ebdaf7a92 (patch)
treeffcc35d293bec1b38a5043d9bdc1ec579430a7fe /net-ftp
parentRemove old. (diff)
downloadgentoo-2-dec5603a0a1c88ff77195f6b242c076ebdaf7a92.tar.gz
gentoo-2-dec5603a0a1c88ff77195f6b242c076ebdaf7a92.tar.bz2
gentoo-2-dec5603a0a1c88ff77195f6b242c076ebdaf7a92.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-ftp')
-rw-r--r--net-ftp/tlswrap/ChangeLog11
-rw-r--r--net-ftp/tlswrap/files/tlswrap-1.02-quiet-stderr.patch24
-rw-r--r--net-ftp/tlswrap/tlswrap-1.02.ebuild34
3 files changed, 7 insertions, 62 deletions
diff --git a/net-ftp/tlswrap/ChangeLog b/net-ftp/tlswrap/ChangeLog
index ff855ba7ed9f..1bab7d901455 100644
--- a/net-ftp/tlswrap/ChangeLog
+++ b/net-ftp/tlswrap/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-ftp/tlswrap
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/tlswrap/ChangeLog,v 1.6 2012/07/12 08:42:03 voyageur Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/tlswrap/ChangeLog,v 1.7 2015/04/29 20:29:23 mrueg Exp $
+
+ 29 Apr 2015; Manuel Rüger <mrueg@gentoo.org>
+ -files/tlswrap-1.02-quiet-stderr.patch, -tlswrap-1.02.ebuild:
+ Remove old.
12 Jul 2012; Bernard Cafarelli <voyageur@gentoo.org> tlswrap-1.02.ebuild,
tlswrap-1.04.ebuild:
@@ -19,7 +23,7 @@
Removing uberlord from metadata.xml as per #199318.
14 Nov 2007; Robin H. Johnson <robbat2@gentoo.org> tlswrap-1.02.ebuild:
- Fix $Header: /var/cvsroot/gentoo-x86/net-ftp/tlswrap/ChangeLog,v 1.6 2012/07/12 08:42:03 voyageur Exp $ string.
+ Fix $Header: /var/cvsroot/gentoo-x86/net-ftp/tlswrap/ChangeLog,v 1.7 2015/04/29 20:29:23 mrueg Exp $ string.
*tlswrap-1.02 (11 Jul 2006)
@@ -27,4 +31,3 @@
+files/tlswrap-1.02-quiet-stderr.patch, +files/tlswrap.init,
+metadata.xml, +tlswrap-1.02.ebuild:
Initial import, #89131 thanks to Boris and Daniel Persson.
-
diff --git a/net-ftp/tlswrap/files/tlswrap-1.02-quiet-stderr.patch b/net-ftp/tlswrap/files/tlswrap-1.02-quiet-stderr.patch
deleted file mode 100644
index 124ed35ac434..000000000000
--- a/net-ftp/tlswrap/files/tlswrap-1.02-quiet-stderr.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -Naur tlswrap-1.02/tlswrap.c tlswrap-1.02-new/tlswrap.c
---- tlswrap-1.02/tlswrap.c 2005-07-09 16:11:37.000000000 +0200
-+++ tlswrap-1.02-new/tlswrap.c 2006-05-09 22:38:58.000000000 +0200
-@@ -358,9 +358,9 @@
-
- listen_fd = setup_listen(5, cfg_listenhost, cfg_listenport, 0);
-
-- fprintf(stderr,
-+ fprintf(stdout,
- "TLSWrap %s (c) 2002-2005 Tomas Svensson <ts@unix1.net>\n", TLSWRAP_VERSION_TEXT);
-- fprintf(stderr, "Servicing up to %u clients on %s:%s\n", cfg_max_users, cfg_listenhost, cfg_listenport);
-+ fprintf(stdout, "Servicing up to %u clients on %s:%s\n", cfg_max_users, cfg_listenhost, cfg_listenport);
- #if !defined __CYGWIN__ && !defined WIN32
- #ifdef __HAVE_DAEMON
- if (!debug)
-@@ -370,7 +370,7 @@
- if ( (childpid = fork()) < 0)
- sys_err("fork()");
- else if (childpid != 0) {
-- fprintf(stderr, "Running as process %u\n", (unsigned int)childpid);
-+ fprintf(stdout, "Running as process %u\n", (unsigned int)childpid);
- exit(0); /* parent */
- }
- (void)setsid();
diff --git a/net-ftp/tlswrap/tlswrap-1.02.ebuild b/net-ftp/tlswrap/tlswrap-1.02.ebuild
deleted file mode 100644
index 14087691a74b..000000000000
--- a/net-ftp/tlswrap/tlswrap-1.02.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/tlswrap/tlswrap-1.02.ebuild,v 1.4 2012/07/12 08:42:03 voyageur Exp $
-
-inherit eutils
-
-DESCRIPTION="TLSWRAP is a TLS/SSL FTP wrapper/proxy which allows to use TLS with every FTP client"
-HOMEPAGE="http://tlswrap.sunsite.dk"
-SRC_URI="http://tlswrap.sunsite.dk/${P}.tar.gz"
-
-# GPL-2 for Gentoo init script
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
-
-DEPEND=">=dev-libs/openssl-0.9.7"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${P}-quiet-stderr.patch"
-}
-
-src_compile() {
- econf || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- dodoc ChangeLog README
- einstall || die "einstall failed"
- newinitd "${FILESDIR}/tlswrap.init" tlswrap
-}