Bug 150550 - app-editors/scite makefile uses install -o root -g root which fails where there is no root group.
Bug#: 150550 Product:  Gentoo/Alt Version: unspecified Platform: All
OS/Version: FreeBSD Status: RESOLVED Severity: normal Priority: P2
Resolution: FIXED Assigned To: bsd@gentoo.org Reported By: the_paya@gentoo.org
Component: FreeBSD
URL: 
Summary: app-editors/scite makefile uses install -o root -g root which fails where there is no root group.
Keywords:  
Status Whiteboard: 
Opened: 2006-10-09 02:24 0000
Description:   Opened: 2006-10-09 02:24 0000
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 From Javier Villavicencio 2006-10-09 02:47:15 0000 -------
Created an attachment (id=99180) [details]
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 From Javier Villavicencio 2006-10-09 02:48:08 0000 -------
Created an attachment (id=99181) [details]
ebuild.patch

patch for the ebuild to fix both problems above noted.

------- Comment #3 From Krzysiek Pawlik 2006-12-27 02:59:53 0000 -------
Fixed, thanks for the patches.