Home | Docs | Forums | Lists | Bugs | Planet | Store | GMN | Get Gentoo!
Not eligible to see or edit group visibility for this bug.
View Bug Activity | Format For Printing | XML | Clone This Bug
the current ebuild won't create the goggles with the right prefix. The ebuild insert the /var/tmp/portage/gogglesblabla instead of just /usr so I changed the ebuild and now it works. here my diff -0.8.0.ebuild_old goggles-0.8.0.ebuild --- goggles-0.8.0.ebuild_old 2005-04-02 04:30:57.755316624 +0200 +++ goggles-0.8.0.ebuild 2005-04-02 04:48:06.825874120 +0200 @@ -33,7 +33,7 @@ ./gb || die "build failed" # we do it now manually, to avoid calling 'gb install' - sed "s|@prefix@|/${D}${DESTTREE}|" scripts/goggles.in > scripts/goggles + sed "s|@prefix@|/usr|" scripts/goggles.in > scripts/goggles } src_install() {
Created an attachment (id=55269) [details] patch to adjust the generated destdir in script googles now the variable $DESTTREE is used instead of the fixed path /usr (like in the original ebuild)
fixed in cvs, thanks.