Gentoo Archives: gentoo-dev

From: Sean Mitchell <SMitchell@×××××××××××××××××××.com>
To: gentoo-dev@××××××××××.org
Subject: RE: [gentoo-dev] IBTK/GATOS
Date: Mon, 23 Jul 2001 10:15:18
Message-Id: 1DCB85BD45DED211B12D009027279E4F47680F@murcury
1 > You want to build it with --prefix=/usr, and install it with
2 > prefix=${D}/usr. Like so:
3 >
4 > src_compile() {
5 > try ./configure --prefix=/usr
6 > try make
7 > }
8 >
9 > src_install() {
10 > try make prefix=${D}/usr install
11 > }
12 >
13 > That has worked for me on xbatt and nmh.
14
15 Works like a charm. Better, in fact, as I've never really seen a charm work
16 at all.
17
18 I've never seen that invokation of make install before... thanks!
19
20 Sean