Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 40645 - xterm ebuild broken
Summary: xterm ebuild broken
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo X packagers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-02-06 14:32 UTC by Bob Bell
Modified: 2004-04-09 14:20 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Bob Bell 2004-02-06 14:32:29 UTC
I needed to make the following change to the xterm sources in order to get the xterm-184.ebuild to work properly.  This is because otherwise the xterm build returned false, which stops the ebuild from proceeding.



--- Makefile.in.orig	2004-02-06 17:09:06.000000000 -0500
+++ Makefile.in	2004-02-06 17:09:28.000000000 -0500
@@ -182,7 +182,7 @@
 
 install-full \
 install-tc ::
-	@test -f /etc/termcap && echo 'You must install the termcap entry manually by editing /etc/termcap'
+	@test -f /etc/termcap && echo 'You must install the termcap entry manually by editing /etc/termcap' || true
 
 installdirs: $(INSTALL_DIRS)


Reproducible: Always
Steps to Reproduce:
1. Compile xterm from the xterm-184.ebuild

Actual Results:  
Failed to compile because make returned a non-zero exit status

Expected Results:  
Finish compilation and install xterm
Comment 1 Donnie Berkholz (RETIRED) gentoo-dev 2004-04-09 14:20:00 UTC
Fixed in current CVS by removing the test and termcap stuff altogether.