Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 127488 - xfishtank installs to /usr/X11R6
Summary: xfishtank installs to /usr/X11R6
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Desktop Misc. Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-03-24 16:51 UTC by Ed Catmur
Modified: 2006-04-14 09:02 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 Ed Catmur 2006-03-24 16:51:56 UTC
xfishtank installs to /usr/X11R6/bin, which is a no-no.

To fix: add BINDIR=/usr/bin to make install:

--- xfishtank-2.1.ebuild        (revision 266)
+++ xfishtank-2.1.ebuild        (working copy)
@@ -38,6 +38,6 @@
 }

 src_install() {
-       make DESTDIR=${D} install || die "install failed"
+       make BINDIR=/usr/bin DESTDIR=${D} install || die "install failed"
        dodoc README README.Linux README.TrueColor README.Why.2.1tp
 }
Comment 1 Jeff Patterson 2006-03-28 09:36:56 UTC
(In reply to comment #0)
> xfishtank installs to /usr/X11R6/bin, which is a no-no.

just another note about this ebuild,  other distros seem to have a version 2.2 (debian, suse, hp) and debian seems to have a amd64 version.  Could it be possible to have an updated version of xfishtank?
Comment 2 Krzysztof Pawlik (RETIRED) gentoo-dev 2006-04-14 09:02:54 UTC
(In reply to comment #0)
> xfishtank installs to /usr/X11R6/bin, which is a no-no.

Fixed, thanks.