diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-27 23:38:38 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-27 23:38:38 +0000 |
commit | 9f12e7dd46191d72f138882b322199adf44fa225 (patch) | |
tree | af791e55c2f00a44aa2294f68c20bf61c64c0e22 /net-misc/tn5250 | |
parent | Fix dependency on slang 1, see bug #141947. (diff) | |
download | gentoo-2-9f12e7dd46191d72f138882b322199adf44fa225.tar.gz gentoo-2-9f12e7dd46191d72f138882b322199adf44fa225.tar.bz2 gentoo-2-9f12e7dd46191d72f138882b322199adf44fa225.zip |
Fix dependency on slang 1, see bug #141947.
(Portage version: 2.1.1_pre3-r5)
Diffstat (limited to 'net-misc/tn5250')
-rw-r--r-- | net-misc/tn5250/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/tn5250/tn5250-0.16.5.ebuild | 18 |
2 files changed, 13 insertions, 10 deletions
diff --git a/net-misc/tn5250/ChangeLog b/net-misc/tn5250/ChangeLog index f37ea88dd4fb..29e00db9584a 100644 --- a/net-misc/tn5250/ChangeLog +++ b/net-misc/tn5250/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/tn5250 # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tn5250/ChangeLog,v 1.9 2006/06/19 14:43:16 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tn5250/ChangeLog,v 1.10 2006/07/27 23:38:38 flameeyes Exp $ + + 27 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> tn5250-0.16.5.ebuild: + Fix dependency on slang 1, see bug #141947. 19 Jun 2006; Brent Baude <ranger@gentoo.org> tn5250-0.16.5.ebuild: stablizing tn5250-0.16.5 for ppc diff --git a/net-misc/tn5250/tn5250-0.16.5.ebuild b/net-misc/tn5250/tn5250-0.16.5.ebuild index d250479c0c61..32dcf8730a60 100644 --- a/net-misc/tn5250/tn5250-0.16.5.ebuild +++ b/net-misc/tn5250/tn5250-0.16.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 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.10 2006/06/19 14:43:16 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/tn5250/tn5250-0.16.5.ebuild,v 1.11 2006/07/27 23:38:38 flameeyes Exp $ inherit eutils @@ -15,7 +15,7 @@ IUSE="X ssl slang" RDEPEND="sys-libs/ncurses ssl? ( dev-libs/openssl ) - slang? ( sys-libs/slang )" + slang? ( =sys-libs/slang-1* )" DEPEND="${RDEPEND} X? ( || ( x11-libs/libXt virtual/x11 ) )" @@ -23,14 +23,14 @@ 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" + # 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" + 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 + # some files it doesn't have access to. We can just remove those # lines. cd "${S}/linux" sed -i \ @@ -50,11 +50,11 @@ src_compile() { src_install() { # The TERMINFO variable needs to be defined for the install - # to work, because the install calls "tic." man tic for + # to work, because the install calls "tic." man tic for # details. dodir /usr/share/terminfo make DESTDIR="${D}" \ - TERMINFO="${D}/usr/share/terminfo" install \ + TERMINFO="${D}/usr/share/terminfo" install \ || die "make install failed" dodoc AUTHORS BUGS NEWS README README.ssl TODO dohtml -r doc/* |