Permissions are wrong on a key dir. The correct ones are documented in the BUILDING file in the root of the distfile.
Class Changed From-To: sw-bug->maintainer-update Ports PR.
Responsible Changed From-To: freebsd-bugs->freebsd-ports-bugs Ports PR.
Responsible Changed From-To: freebsd-ports-bugs->tijl Take.
Hi, Can you test the attached patch? It should accomplish the same results without creating a pkg-install script.
Author: tijl Date: Sun Dec 1 17:44:38 2013 New Revision: 335408 URL: http://svnweb.freebsd.org/changeset/ports/335408 Log: Fix owner/group of PREFIX/com/aegis directory. PR: ports/183913 Submitted by: "Aryeh M. Friedman" <aryeh.friedman@gmail.com> (maintainer) Modified: head/devel/aegis/Makefile head/devel/aegis/pkg-plist Modified: head/devel/aegis/Makefile ============================================================================== --- head/devel/aegis/Makefile Sun Dec 1 17:42:52 2013 (r335407) +++ head/devel/aegis/Makefile Sun Dec 1 17:44:38 2013 (r335408) @@ -3,7 +3,7 @@ PORTNAME= aegis PORTVERSION= 4.24.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= SF Modified: head/devel/aegis/pkg-plist ============================================================================== --- head/devel/aegis/pkg-plist Sun Dec 1 17:42:52 2013 (r335407) +++ head/devel/aegis/pkg-plist Sun Dec 1 17:44:38 2013 (r335408) @@ -1,4 +1,3 @@ -@exec mkdir -p %D/com/aegis man/man1/ae-cvs-ci.1.gz man/man1/ae-repo-ci.1.gz man/man1/ae-sccs-put.1.gz @@ -178,6 +177,8 @@ etc/profile.d/aegis.csh %%NLS%%share/locale/ro/LC_MESSAGES/aegis.mo %%NLS%%share/locale/ru/LC_MESSAGES/aegis.mo %%NLS%%share/locale/vi/LC_MESSAGES/aegis.mo +@exec mkdir -p %D/com +@exec install -d -o 3 -g 3 -m 0755 %D/com/aegis +@unexec rm -d %D/com/aegis 2>/dev/null || true @dirrmtry etc/profile.d -@dirrmtry com/aegis @dirrmtry com _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed in r335408.