diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2008-02-28 16:52:52 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2008-02-28 16:52:52 +0000 |
commit | a3b52f648151892c962cce54d3a68737a5010566 (patch) | |
tree | 57b1e39ffd064c3ac2f77beb5656447ccbc2c7f5 /devel/rhtvision | |
parent | 73662b16799649b1dd416969fb3c039262bff071 (diff) | |
download | ports-a3b52f648151892c962cce54d3a68737a5010566.tar.gz ports-a3b52f648151892c962cce54d3a68737a5010566.zip |
Notes
Diffstat (limited to 'devel/rhtvision')
-rw-r--r-- | devel/rhtvision/files/patch-conflib.pl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/devel/rhtvision/files/patch-conflib.pl b/devel/rhtvision/files/patch-conflib.pl new file mode 100644 index 000000000000..5248120969a8 --- /dev/null +++ b/devel/rhtvision/files/patch-conflib.pl @@ -0,0 +1,22 @@ +On Thu, Jan 31, 2008 at 02:02:31PM +0100, Erwin Lansing wrote: +> This looks like the port itself needs fixing, either by making it use +> bsdar, or having a mechanism to install GNU ar from a port. Anyway, not +> a problem with bsdar itself :-) + +This one is less-common, it has a its own perl script to grep string +"GNU ar" out of `ar --version`. However later it listed acceptable 'ar' of +several OSes. So I tried a fix like this and it works: + +--- conflib.pl.orig 2008-01-31 20:44:29.000000000 +0100 ++++ conflib.pl 2008-01-31 20:45:31.000000000 +0100 +@@ -1407,7 +1407,7 @@ + } + # I think all ar tools are usable but ... + if (($OSf eq 'Darwin') || ($OSf eq 'HP-UX') || ($OSf eq 'Tru64') || +- ($OSf eq 'Solaris')) ++ ($OSf eq 'Solaris') || ($OSf eq 'FreeBSD')) + { + $conf{'GNU_AR'}='ar'; + $conf{'UseRanLib'}=1; + + |