On Thu, 2006-09-28 at 19:04 +0200, Grobian wrote:
> On 27-09-2006 23:06:44 +0200, Michael Haubenwallner wrote:
> > Hi,
> >
> > here's a patch to install perl-modules correctly, tested with
> > perl-core/Test-Harness and perl-core/PodParser.
>
> I think you missed some items to eprefix. Anyway, applied, thanks!
You mean that I did not emerge gcc yet ?
Well, I'm on the way for that.
But to get gcc emerging, I need binutils-config to work, or GNU as/ld
won't be found.
And binutils-config requires baselayout-prefix for /etc/functions.sh,
as well as bash, because it might not work using "#!/bin/bash".
Added attached patch to binutils-config.ebuild, but could not try yet...
/haubi/
--
Michael Haubenwallner SALOMON Automation GmbH
Forschung & Entwicklung A-8114 Friesach bei Graz
mailto:[EMAIL PROTECTED] http://www.salomon.at
No HTML/MIME please, see http://expita.com/nomime.html
Index: sys-devel/binutils-config/binutils-config-1.9-r1.ebuild
===================================================================
--- sys-devel/binutils-config/binutils-config-1.9-r1.ebuild (revision 1663)
+++ sys-devel/binutils-config/binutils-config-1.9-r1.ebuild (working copy)
@@ -15,7 +15,8 @@
KEYWORDS="~amd64 ~x86"
IUSE=""
-DEPEND=""
+DEPEND="app-shells/bash"
+RDEPEND="virtual/baselayout"
src_unpack() {
cp "${FILESDIR}"/${PN}-${PV} "${T}"/
@@ -24,6 +25,7 @@
ebegin "Adjusting to prefix"
sed -i \
-e "s|GENTOO_PORTAGE_EPREFIX|${EPREFIX}|g" \
+ -e "s|#!/bin/bash|$(type -p bash)|" \
"${T}"/${PN}-${PV}
eend $?
}