From owner-svn-ports-head@FreeBSD.ORG Thu Oct 17 13:09:59 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BEBB8D75; Thu, 17 Oct 2013 13:09:59 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AC61C2E3B; Thu, 17 Oct 2013 13:09:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9HD9xWT088826; Thu, 17 Oct 2013 13:09:59 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9HD9xlh088823; Thu, 17 Oct 2013 13:09:59 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201310171309.r9HD9xlh088823@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 17 Oct 2013 13:09:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330637 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Oct 2013 13:09:59 -0000 Author: bapt Date: Thu Oct 17 13:09:58 2013 New Revision: 330637 URL: http://svnweb.freebsd.org/changeset/ports/330637 Log: Readd forgotten port-install-script in the stage seq. Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Thu Oct 17 12:58:06 2013 (r330636) +++ head/Mk/bsd.port.mk Thu Oct 17 13:09:58 2013 (r330637) @@ -4339,7 +4339,7 @@ _STAGE_DEP= build _STAGE_SEQ= stage-message stage-dir run-depends lib-depends apply-slist pre-install generate-plist \ pre-su-install .if defined(NEED_ROOT) -_STAGE_SUSEQ= create-users-groups do-install post-install post-stage compress-man \ +_STAGE_SUSEQ= create-users-groups do-install post-install post-install-script post-stage compress-man \ install-rc-script install-ldconfig-file install-license \ install-desktop-entries add-plist-info add-plist-docs add-plist-examples \ add-plist-data add-plist-post fix-plist-sequence @@ -4347,7 +4347,7 @@ _STAGE_SUSEQ= create-users-groups do-ins _STAGE_SUSEQ+= stage-qa .endif .else -_STAGE_SEQ+= create-users-groups do-install post-install post-stage compress-man \ +_STAGE_SEQ+= create-users-groups do-install post-install post-install-script post-stage compress-man \ install-rc-script install-ldconfig-file install-license \ install-desktop-entries add-plist-info add-plist-docs add-plist-examples \ add-plist-data add-plist-post fix-plist-sequence