summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <fauli@gentoo.org>2009-05-06 10:26:09 +0000
committerChristian Faulhammer <fauli@gentoo.org>2009-05-06 10:26:09 +0000
commitf4c78c9395297d3acd066e1848e4ca980760f1de (patch)
tree898ff598c786fe422a5e9d82649f9d0f829752b0 /net-misc/tn5250
parentstable x86, bug 267968 (diff)
downloadgentoo-2-f4c78c9395297d3acd066e1848e4ca980760f1de.tar.gz
gentoo-2-f4c78c9395297d3acd066e1848e4ca980760f1de.tar.bz2
gentoo-2-f4c78c9395297d3acd066e1848e4ca980760f1de.zip
clean up
(Portage version: 2.1.6.11/cvs/Linux i686)
Diffstat (limited to 'net-misc/tn5250')
-rw-r--r--net-misc/tn5250/ChangeLog6
-rw-r--r--net-misc/tn5250/tn5250-0.17.3-r1.ebuild59
2 files changed, 5 insertions, 60 deletions
diff --git a/net-misc/tn5250/ChangeLog b/net-misc/tn5250/ChangeLog
index fd660b2eba56..7500a8e70762 100644
--- a/net-misc/tn5250/ChangeLog
+++ b/net-misc/tn5250/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/tn5250
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/tn5250/ChangeLog,v 1.22 2009/05/06 10:20:25 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/tn5250/ChangeLog,v 1.23 2009/05/06 10:26:09 fauli Exp $
+
+ 06 May 2009; Christian Faulhammer <fauli@gentoo.org>
+ -tn5250-0.17.3-r1.ebuild:
+ clean up
06 May 2009; Christian Faulhammer <fauli@gentoo.org> tn5250-0.17.4.ebuild:
stable x86, bug 267968
diff --git a/net-misc/tn5250/tn5250-0.17.3-r1.ebuild b/net-misc/tn5250/tn5250-0.17.3-r1.ebuild
deleted file mode 100644
index 530d8e385d10..000000000000
--- a/net-misc/tn5250/tn5250-0.17.3-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2008 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-r1.ebuild,v 1.3 2008/03/15 22:32:05 dertobi123 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"
-
-RDEPEND="sys-libs/ncurses
- ssl? ( dev-libs/openssl )"
-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) \
- --without-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/*
-}