From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 15 00:40: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 8389B23F for ; Sat, 15 Mar 2014 00:40: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 5F87D1F3 for ; Sat, 15 Mar 2014 00:40: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 s2F0e0GL013211 for ; Sat, 15 Mar 2014 00:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2F0e0h1013209; Sat, 15 Mar 2014 00:40:00 GMT (envelope-from gnats) Resent-Date: Sat, 15 Mar 2014 00:40:00 GMT Resent-Message-Id: <201403150040.s2F0e0h1013209@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, Craig Leres 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 19F10172 for ; Sat, 15 Mar 2014 00:35:11 +0000 (UTC) Received: from fun.ee.lbl.gov (fun.ee.lbl.gov [IPv6:2620:83:8000:102::ca]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 04A6E1B5 for ; Sat, 15 Mar 2014 00:35:11 +0000 (UTC) Received: from fun.ee.lbl.gov (localhost [127.0.0.1]) by fun.ee.lbl.gov (8.14.8/8.14.8) with ESMTP id s2F0ZATa021771 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Mar 2014 17:35:10 -0700 (PDT) Received: (from leres@localhost) by fun.ee.lbl.gov (8.14.8/8.14.8/Submit) id s2F0ZA5G021770; Fri, 14 Mar 2014 17:35:10 -0700 (PDT) Message-Id: <201403150035.s2F0ZA5G021770@fun.ee.lbl.gov> Date: Fri, 14 Mar 2014 17:35:10 -0700 (PDT) From: Craig Leres To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/187598: [PATCH] devel/arduino-irremote: Add stage support Cc: leres@ee.lbl.gov X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Craig Leres List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Mar 2014 00:40:00 -0000 >Number: 187598 >Category: ports >Synopsis: [PATCH] devel/arduino-irremote: Add stage support >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Mar 15 00:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Craig Leres >Release: FreeBSD 9.1-RELEASE amd64 >Organization: Lawrence Berkeley National Laboratory >Environment: System: FreeBSD fun.ee.lbl.gov 9.1-RELEASE FreeBSD 9.1-RELEASE #13 r30: Fri Feb 14 15:03:31 PST 2014 leres@fun.ee.lbl.gov:/sys/amd64/compile/LBL amd64 >Description: Add stage support. >How-To-Repeat: >Fix: Please see the attached patch. --- patch.txt begins here --- --- Makefile.orig 2014-03-08 04:25:26.000000000 -0800 +++ Makefile 2014-03-14 17:28:36.000000000 -0700 @@ -26,8 +26,6 @@ arduino/libraries/IRremote/keywords.txt PLIST_DIRS= arduino/libraries/IRremote -NO_STAGE= yes - OPTIONS_DEFINE= EXAMPLES .include @@ -49,14 +47,14 @@ .endif do-install: - ${MKDIR} ${PREFIX}/arduino/libraries/IRremote - ${INSTALL_DATA} ${WRKSRC}/IRremote.cpp ${PREFIX}/arduino/libraries/IRremote - ${INSTALL_DATA} ${WRKSRC}/IRremote.h ${PREFIX}/arduino/libraries/IRremote - ${INSTALL_DATA} ${WRKSRC}/IRremoteInt.h ${PREFIX}/arduino/libraries/IRremote - ${INSTALL_DATA} ${WRKSRC}/keywords.txt ${PREFIX}/arduino/libraries/IRremote + ${MKDIR} ${STAGEDIR}${PREFIX}/arduino/libraries/IRremote + ${INSTALL_DATA} ${WRKSRC}/IRremote.cpp ${STAGEDIR}${PREFIX}/arduino/libraries/IRremote + ${INSTALL_DATA} ${WRKSRC}/IRremote.h ${STAGEDIR}${PREFIX}/arduino/libraries/IRremote + ${INSTALL_DATA} ${WRKSRC}/IRremoteInt.h ${STAGEDIR}${PREFIX}/arduino/libraries/IRremote + ${INSTALL_DATA} ${WRKSRC}/keywords.txt ${STAGEDIR}${PREFIX}/arduino/libraries/IRremote .if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR} - cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .endif .include --- patch.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: