From owner-svn-ports-all@freebsd.org Fri Apr 1 13:04:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 188DBAECC89; Fri, 1 Apr 2016 13:04:17 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 DA52D1162; Fri, 1 Apr 2016 13:04:16 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u31D4Gej037630; Fri, 1 Apr 2016 13:04:16 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u31D4GWJ037629; Fri, 1 Apr 2016 13:04:16 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201604011304.u31D4GWJ037629@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 1 Apr 2016 13:04:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412339 - head/graphics/urt 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.21 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: Fri, 01 Apr 2016 13:04:17 -0000 Author: amdmi3 Date: Fri Apr 1 13:04:15 2016 New Revision: 412339 URL: https://svnweb.freebsd.org/changeset/ports/412339 Log: - Switch to options helpers Modified: head/graphics/urt/Makefile Modified: head/graphics/urt/Makefile ============================================================================== --- head/graphics/urt/Makefile Fri Apr 1 13:03:54 2016 (r412338) +++ head/graphics/urt/Makefile Fri Apr 1 13:04:15 2016 (r412339) @@ -32,17 +32,15 @@ MAKE_ARGS= PREFIX=${STAGEDIR}${PREFIX} ALL_TARGET= # none USE_LDCONFIG= yes -.include - post-install: -.if ${PORT_OPTIONS:MDOCS} + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librle.so + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) -.endif -.if ${PORT_OPTIONS:MEXAMPLES} + +post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/img @(cd ${WRKSRC}/img && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/img) -.endif - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librle.so .include