Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 150550 - app-editors/scite makefile uses install -o root -g root which fails where there is no root group.
Summary: app-editors/scite makefile uses install -o root -g root which fails where the...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo/Alt
Classification: Unclassified
Component: FreeBSD (show other bugs)
Hardware: All FreeBSD
: High normal (vote)
Assignee: Gentoo/BSD Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-10-09 02:24 UTC by Javier Villavicencio (RETIRED)
Modified: 2006-12-27 02:59 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
scite-install.patch (scite-install.patch,796 bytes, patch)
2006-10-09 02:47 UTC, Javier Villavicencio (RETIRED)
Details | Diff
ebuild.patch (ebuild.patch,671 bytes, patch)
2006-10-09 02:48 UTC, Javier Villavicencio (RETIRED)
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Javier Villavicencio (RETIRED) gentoo-dev 2006-10-09 02:24:07 UTC
The failure:
>>> Install scite-1.71 into /usr/local/tmp/portage/scite-1.71/image/ category app-editors
install -o root -g root -m 755 -d /usr/local/tmp/portage/scite-1.71/image//usr/bin /usr/local/tmp/portage/scite-1.71/image//usr/share/scite
install: root: Invalid argument
gmake: *** [install] Error 67

The fix for this can be to change -g root for -g wheel or just use -g 0.
Comment 1 Javier Villavicencio (RETIRED) gentoo-dev 2006-10-09 02:47:15 UTC
Created attachment 99180 [details, diff]
scite-install.patch

Found this one afterwards, -D is not supported on freebsd install, this patch just splits the command in two, first creating the directory and then copying the file.
Comment 2 Javier Villavicencio (RETIRED) gentoo-dev 2006-10-09 02:48:08 UTC
Created attachment 99181 [details, diff]
ebuild.patch

patch for the ebuild to fix both problems above noted.
Comment 3 Krzysztof Pawlik (RETIRED) gentoo-dev 2006-12-27 02:59:53 UTC
Fixed, thanks for the patches.