From owner-svn-ports-all@FreeBSD.ORG Wed May 7 15:41:34 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45FA85B6; Wed, 7 May 2014 15:41:34 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 33C0C90B; Wed, 7 May 2014 15:41:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s47FfY28042394; Wed, 7 May 2014 15:41:34 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s47FfYMI042393; Wed, 7 May 2014 15:41:34 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201405071541.s47FfYMI042393@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 7 May 2014 15:41:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353168 - 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-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 May 2014 15:41:34 -0000 Author: bapt Date: Wed May 7 15:41:33 2014 New Revision: 353168 URL: http://svnweb.freebsd.org/changeset/ports/353168 QAT: https://qat.redports.org/buildarchive/r353168/ Log: Move updating the desktop database later to make sure it work as expected with pkg_install Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Wed May 7 15:28:14 2014 (r353167) +++ head/Mk/bsd.port.mk Wed May 7 15:41:33 2014 (r353168) @@ -6545,9 +6545,10 @@ _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 desktop-file-post-install \ +_STAGE_SUSEQ= create-users-groups do-install \ kmod-post-install shared-mime-post-install \ webplugin-post-install post-install post-install-script \ + desktop-file-post-install \ move-uniquefiles post-stage compress-man patch-lafiles \ install-rc-script install-ldconfig-file install-license \ install-desktop-entries add-plist-info add-plist-docs \ @@ -6557,9 +6558,10 @@ _STAGE_SUSEQ= create-users-groups do-ins _STAGE_SUSEQ+= stage-qa .endif .else -_STAGE_SEQ+= create-users-groups do-install desktop-file-post-install \ +_STAGE_SEQ+= create-users-groups do-install \ kmod-post-install shared-mime-post-install \ webplugin-post-install post-install post-install-script \ + desktop-file-post-install \ move-uniquefiles post-stage compress-man patch-lafiles \ install-rc-script install-ldconfig-file install-license \ install-desktop-entries add-plist-info add-plist-docs \