From 4ca1563a322de2c55a670a1b55a8a02f3da30011 Mon Sep 17 00:00:00 2001 From: Samuli Suominen Date: Mon, 17 Mar 2008 04:34:34 +0000 Subject: old Package-Manager: portage-2.1.4.4 --- net-misc/tn5250/Manifest | 4 -- net-misc/tn5250/files/gcc3.patch | 76 ------------------------------------ net-misc/tn5250/tn5250-0.16.5.ebuild | 61 ----------------------------- net-misc/tn5250/tn5250-0.17.3.ebuild | 60 ---------------------------- 4 files changed, 201 deletions(-) delete mode 100644 net-misc/tn5250/files/gcc3.patch delete mode 100644 net-misc/tn5250/tn5250-0.16.5.ebuild delete mode 100644 net-misc/tn5250/tn5250-0.17.3.ebuild (limited to 'net-misc/tn5250') diff --git a/net-misc/tn5250/Manifest b/net-misc/tn5250/Manifest index 298203b67163..4d683a112602 100644 --- a/net-misc/tn5250/Manifest +++ b/net-misc/tn5250/Manifest @@ -1,8 +1,4 @@ -AUX gcc3.patch 3353 RMD160 ecf896ea105fd17349594822c36f650b2a9a1eab SHA1 9d25396f248030b694baa23f03be85537f88eff1 SHA256 7ada1b087bc2ea55139bcb42a74a14e525b8525241126ab7b51f2f459ea16fed -DIST tn5250-0.16.5.tar.gz 455546 RMD160 28428cc115a78263191942acaf966715d3b096f8 SHA1 93de53de31b4dd1d13bcbda3199cd4c050d94065 SHA256 794687ae1b34aba9a3cf6f9b118d0ba91b8f83858fe92a9ded0611225db3ca0e DIST tn5250-0.17.3.tar.gz 999938 RMD160 554eac8a5b4ae690caab1ee3c4a9cf7e48a37b85 SHA1 a60a237e13f4531b3c918076fc009019d9522851 SHA256 956fbcb1eac6b2b2faa0a51733cdfc370103898eaffab61128608b3916061a36 -EBUILD tn5250-0.16.5.ebuild 1783 RMD160 beb020e9c721206aa71c725a7d571b46f8b3b3b3 SHA1 b5ebebe55d9c3af9152e36d103c2d569c1c1d679 SHA256 71e5733c86582a568a1c690d115564d43f3962a8f47b3a3bc3ae34122df06a27 EBUILD tn5250-0.17.3-r1.ebuild 1721 RMD160 b05a75f53ef5b29e7ba6d9be50e3367eaf7a65c4 SHA1 b3fcaf2436df742e7a501de16d93a25bcddec831 SHA256 7206e6b46a11536e1ed04683ef0cfc0dc87244ed0e097449b7cc6034e43c5a4b -EBUILD tn5250-0.17.3.ebuild 1758 RMD160 90cb23441adee5784ff1253b8b44101d8b407a79 SHA1 3c12854b89329c9fd14429d26e27d3e1e4221167 SHA256 b86064100c218d1a407dee41c39307eb8f94b0094b6cf5145dd15f4939b1e384 MISC ChangeLog 2225 RMD160 6bbae37313a39ee540d3350d1e79299212f737af SHA1 fc0e953810da7d6f466cf5e6ae3955a43cf1bda9 SHA256 9a3cc2ce4a723fb872ec3d89f6ca463c3040c71179697d3d1866c90dbd51ea3d MISC metadata.xml 236 RMD160 92f49f8275e75caf57b88a3172d5204eaa4e33ae SHA1 dd1a8550a514e55ab0ed6190ab4794bb090994f8 SHA256 56075995f83836ae824c7cb01931b98d6745f6d5a7764299c8262e801486b829 diff --git a/net-misc/tn5250/files/gcc3.patch b/net-misc/tn5250/files/gcc3.patch deleted file mode 100644 index c2ac5c03d11a..000000000000 --- a/net-misc/tn5250/files/gcc3.patch +++ /dev/null @@ -1,76 +0,0 @@ ---- tn5250.c.orig 2004-06-07 00:24:59.000000000 -0700 -+++ tn5250.c 2004-06-07 00:28:22.000000000 -0700 -@@ -174,17 +174,17 @@ - Tn5250CharMap *m; - int i = 0; - -- printf ("tn5250 - TCP/IP 5250 emulator\n\ --Syntax:\n\ -- tn5250 [options] HOST[:PORT]\n"); -+ printf ("tn5250 - TCP/IP 5250 emulator\n" -+ "Syntax:\n" -+ " tn5250 [options] HOST[:PORT]\n"); - #ifdef HAVE_LIBSSL -- printf("\ -- To connect using ssl prefix HOST with 'ssl:'. Example: -- tn5250 +ssl_verify_server ssl:as400.example.com\n"); -+ printf("\n" -+ " To connect using ssl prefix HOST with 'ssl:'. Example:\n" -+ " tn5250 +ssl_verify_server ssl:as400.example.com\n"); - #endif -- printf ("\n\ --Options:\n\ -- map=NAME Character map (default is '37'):"); -+ printf ("\n" -+ "Options:\n" -+ " map=NAME Character map (default is '37'):"); - m = tn5250_transmaps; - while (m->name != NULL) { - if (i % 5 == 0) -@@ -192,28 +192,28 @@ - printf ("%s, ", m->name); - m++; i++; - } -- printf ("\n\ -- env.DEVNAME=NAME Use NAME as session name (default: none).\n"); -+ printf ("\n" -+ " env.DEVNAME=NAME Use NAME as session name (default: none).\n"); - #ifndef NDEBUG -- printf ("\ -- trace=FILE Log session to FILE.\n"); -+ printf ( -+ " trace=FILE Log session to FILE.\n"); - #endif - #ifdef HAVE_LIBSSL -- printf ("\ -- +/-ssl_verify_server Verify/don't verify the server's SSL certificate\n\ -- ssl_ca_file=FILE Use certificate authority (CA) certs from FILE\n\ -- ssl_cert_file=FILE File containing SSL certificate in PEM format to\n\ -- use if the AS/400 requires client authentication.\n\ -- ssl_pem_pass=PHRASE Passphrase to use when decrypting a PEM private\n\ -- key. Used in conjunction with ssl_cert_file\n"); -+ printf ( -+" +/-ssl_verify_server Verify/don't verify the server's SSL certificate\n" -+" ssl_ca_file=FILE Use certificate authority (CA) certs from FILE\n" -+" ssl_cert_file=FILE File containing SSL certificate in PEM format to\n" -+" use if the AS/400 requires client authentication.\n" -+" ssl_pem_pass=PHRASE Passphrase to use when decrypting a PEM private\n" -+" key. Used in conjunction with ssl_cert_file\n"); - #endif -- printf ("\ -- +/-underscores Use/don't use underscores instead of underline\n\ -- attribute.\n\ -- +/-ruler Draw a ruler pointing to the cursor position\n\ -- +/-version Show emulator version and exit.\n\ -- env.NAME=VALUE Set telnet environment string NAME to VALUE.\n\ -- env.TERM=TYPE Emulate IBM terminal type (default: depends)"); -+ printf ( -+" +/-underscores Use/don't use underscores instead of underline\n" -+" attribute.\n" -+" +/-ruler Draw a ruler pointing to the cursor position\n" -+" +/-version Show emulator version and exit.\n" -+" env.NAME=VALUE Set telnet environment string NAME to VALUE.\n" -+" env.TERM=TYPE Emulate IBM terminal type (default: depends)"); - p = valid_terms; - while (p->name) { - printf ("\n %s (%s)", p->name, p->descr); diff --git a/net-misc/tn5250/tn5250-0.16.5.ebuild b/net-misc/tn5250/tn5250-0.16.5.ebuild deleted file mode 100644 index 6b042c40183e..000000000000 --- a/net-misc/tn5250/tn5250-0.16.5.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tn5250/tn5250-0.16.5.ebuild,v 1.12 2007/07/22 08:11:44 dberkholz Exp $ - -inherit eutils - -DESCRIPTION="Telnet client for the IBM AS/400 that emulates 5250 terminals and printers." -HOMEPAGE="http://tn5250.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ppc x86" -IUSE="X ssl slang" - -RDEPEND="sys-libs/ncurses - ssl? ( dev-libs/openssl ) - slang? ( =sys-libs/slang-1* )" -DEPEND="${RDEPEND} - X? ( x11-libs/libXt )" - -src_unpack() { - unpack ${A} - - # First, for some reason, TRUE and FALSE aren't defined - # for the compile. This causes some problems. ??? - echo >> "${S}/src/tn5250-config.h.in" - echo "/* Define TRUE and FALSE */" >> "${S}/src/tn5250-config.h.in" - echo "#define FALSE 0" >> "${S}/src/tn5250-config.h.in" - echo "#define TRUE !FALSE" >> "${S}/src/tn5250-config.h.in" - - # Next, the Makefile for the terminfo settings tries to remove - # some files it doesn't have access to. We can just remove those - # lines. - cd "${S}/linux" - sed -i \ - -e "/rm -f \/usr\/.*\/terminfo.*5250/d" Makefile.in \ - || die "sed Makefile.in failed" - cd "${S}/src" - epatch "${FILESDIR}/gcc3.patch" -} - -src_compile() { - econf \ - $(use_with X x) \ - $(use_with ssl) \ - $(use_with slang) || die - emake || die "emake failed" -} - -src_install() { - # The TERMINFO variable needs to be defined for the install - # to work, because the install calls "tic." man tic for - # details. - dodir /usr/share/terminfo - make DESTDIR="${D}" \ - TERMINFO="${D}/usr/share/terminfo" install \ - || die "make install failed" - dodoc AUTHORS BUGS NEWS README README.ssl TODO - dohtml -r doc/* -} diff --git a/net-misc/tn5250/tn5250-0.17.3.ebuild b/net-misc/tn5250/tn5250-0.17.3.ebuild deleted file mode 100644 index 2396ba24deed..000000000000 --- a/net-misc/tn5250/tn5250-0.17.3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tn5250/tn5250-0.17.3.ebuild,v 1.3 2007/07/22 08:11:44 dberkholz Exp $ - -inherit eutils - -DESCRIPTION="Telnet client for the IBM AS/400 that emulates 5250 terminals and printers." -HOMEPAGE="http://tn5250.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="X ssl slang" - -RDEPEND="sys-libs/ncurses - ssl? ( dev-libs/openssl ) - slang? ( =sys-libs/slang-1* )" -DEPEND="${RDEPEND} - X? ( x11-libs/libXt )" - -src_unpack() { - unpack ${A} - - # First, for some reason, TRUE and FALSE aren't defined - # for the compile. This causes some problems. ??? - echo >> "${S}/src/tn5250-config.h.in" - echo "/* Define TRUE and FALSE */" >> "${S}/src/tn5250-config.h.in" - echo "#define FALSE 0" >> "${S}/src/tn5250-config.h.in" - echo "#define TRUE !FALSE" >> "${S}/src/tn5250-config.h.in" - - # Next, the Makefile for the terminfo settings tries to remove - # some files it doesn't have access to. We can just remove those - # lines. - cd "${S}/linux" - sed -i \ - -e "/rm -f \/usr\/.*\/terminfo.*5250/d" Makefile.in \ - || die "sed Makefile.in failed" - cd "${S}/src" -} - -src_compile() { - econf \ - $(use_with X x) \ - $(use_with ssl) \ - $(use_with slang) || die - emake || die "emake failed" -} - -src_install() { - # The TERMINFO variable needs to be defined for the install - # to work, because the install calls "tic." man tic for - # details. - dodir /usr/share/terminfo - make DESTDIR="${D}" \ - TERMINFO="${D}/usr/share/terminfo" install \ - || die "make install failed" - dodoc AUTHORS BUGS NEWS README README.ssl TODO - dohtml -r doc/* -} -- cgit v1.2.3-65-gdbad