From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Mar 23 23:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.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 C57EC2B6 for ; Sun, 23 Mar 2014 23:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 A2F8516B for ; Sun, 23 Mar 2014 23:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2NNK0C4068449 for ; Sun, 23 Mar 2014 23:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2NNK0UC068448; Sun, 23 Mar 2014 23:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 23 Mar 2014 23:20:00 GMT Resent-Message-Id: <201403232320.s2NNK0UC068448@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Johannes Jost Meixner 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 DEE7016F for ; Sun, 23 Mar 2014 23:14:26 +0000 (UTC) Received: from dd16522.kasserver.com (dd16522.kasserver.com [85.13.137.124]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A2DE0147 for ; Sun, 23 Mar 2014 23:14:26 +0000 (UTC) Received: from mx12.chaot.net (82.131.59.205.cable.starman.ee [82.131.59.205]) by dd16522.kasserver.com (Postfix) with ESMTPSA id 1D2F98D4016 for ; Mon, 24 Mar 2014 00:14:25 +0100 (CET) Received: from localhost (1003@localhost [local]); by localhost (OpenSMTPD) with ESMTPA id 9c311525; for ; Mon, 24 Mar 2014 00:56:57 +0200 (EET) Message-Id: <2731915287777139587.enqueue@mx12.chaot.net> Date: Mon, 24 Mar 2014 00:56:57 +0200 (EET) From: Johannes Jost Meixner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/187873: [PATCH] games/linux-worldofgoo: Stage X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Mar 2014 23:20:00 -0000 >Number: 187873 >Category: ports >Synopsis: [PATCH] games/linux-worldofgoo: Stage >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Mar 23 23:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Johannes Jost Meixner >Release: FreeBSD 11.0-CURRENT amd64 >Organization: Goldener Grund OUe >Environment: System: FreeBSD mx12.chaot.net 11.0-CURRENT FreeBSD 11.0-CURRENT #6: Wed Mar 19 11:02:48 EET 2014 >Description: - Stagify - Make DOCS into an option, deprecating NOPORTDOCS Generated with FreeBSD Port Tools 1.00.2014.03.22 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- linux-worldofgoo-1.41.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 348896) +++ Makefile (working copy) @@ -21,6 +21,8 @@ DATADIR= ${PREFIX}/share/WorldOfGoo DOCSDIR= ${PREFIX}/share/doc/WorldOfGoo +OPTIONS_DEFINE= DOCS + .if defined(WITH_NVIDIA_GL) RUN_DEPENDS= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver USE_LINUX_APPS+= libglu @@ -28,7 +30,6 @@ USE_LINUX_APPS+= dri .endif -NO_STAGE= yes .include .if ${ARCH} == "i386" @@ -52,12 +53,12 @@ >> ${WRKSRC}/WorldOfGoo do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${TARGET_BIN} ${PREFIX}/bin - ${INSTALL_SCRIPT} ${WRKSRC}/WorldOfGoo ${PREFIX}/bin - cd ${WRKSRC} && ${COPYTREE_SHARE} "properties res" ${DATADIR} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} + ${INSTALL_PROGRAM} ${WRKSRC}/${TARGET_BIN} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/WorldOfGoo ${STAGEDIR}${PREFIX}/bin + cd ${WRKSRC} && ${COPYTREE_SHARE} "properties res" ${STAGEDIR}${DATADIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .endif .include --- linux-worldofgoo-1.41.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: