First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 66842
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: Robin Johnson <robbat2@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Leonid Kabanov <lkabanov@mail.ru>
Add CC:
CC:
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 66842 depends on: Show dependency tree
Show dependency graph
Bug 66842 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)







View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2004-10-08 21:37 0000
Here is output of `./configure':

checking for gtar... no
checking for gnutar... /usr/bin/gnutar
configure: WARNING: *** /usr/bin/gnutar is not GNU tar, so it will not be used.

The script search for `gtar gnutar tar' in $PATH. Search stopped if one found. /usr/bin/gnutar is a part of `star' package so it is not GNU tar program and is not used by amanda.

This can be easily fixed by this patch:
--- amanda-2.4.4_p2-r1.ebuild.orig      2004-10-09 12:35:23.000000000 +0800
+++ amanda-2.4.4_p2-r1.ebuild   2004-10-09 12:36:24.000000000 +0800
@@ -170,6 +170,8 @@
        # Samba support
        use samba && myconf="${myconf} --with-smbclient=/usr/bin/smbclient" || myconf="${myconf} --without-smbclient"

+       myconf="${myconf} --with-gnutar=/bin/tar"
+
        econf ${myconf} || die "econf failed!"
        emake || die "emake failed!"



Reproducible: Always
Steps to Reproduce:
1. emerge sync
2. emerge star
3. emerge amanda


Actual Results:  
checking for gtar... no
checking for gnutar... /usr/bin/gnutar
configure: WARNING: *** /usr/bin/gnutar is not GNU tar, so it will not be used.


Expected Results:  
checking for gtar... /bin/tar

------- Comment #1 From Robin Johnson 2004-11-21 19:36:37 0000 -------
fixed in cvs.

------- Comment #2 From Leonid Kabanov 2004-11-23 23:26:19 0000 -------
If you mean patch-tar-1.14.90 then it is not fixed the problem. Please change
ebuild as specified in my bugreport.  Amanda's `configure' script search for 3
names in `$PATH' - `gtar', `gnutar', `tar', in that order. It find `gnutar'
(from star package), then check that it is not `GNU tar' and search stopped. It
does not even try seearching for `tar' executable in `$PATH'. `--with-gnutar'
option change this behavior - `configure' script check specified only binary.

------- Comment #3 From Robin Johnson 2004-11-24 01:31:02 0000 -------
my bad.
there was another very similar bug report to this due to tar-1.14.90 where your solution here was suggested.

fixed properly in cvs now (with your patch).

First Last Prev Next    No search results available      Search page      Enter new bug