From owner-svn-ports-all@FreeBSD.ORG Tue Jul 15 18:07:09 2014 Return-Path: Delivered-To: svn-ports-all@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 ESMTPS id 2ECFEC49; Tue, 15 Jul 2014 18:07:09 +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 0118822EC; Tue, 15 Jul 2014 18:07:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6FI78pp016625; Tue, 15 Jul 2014 18:07:08 GMT (envelope-from kmoore@svn.freebsd.org) Received: (from kmoore@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6FI78Vf016624; Tue, 15 Jul 2014 18:07:08 GMT (envelope-from kmoore@svn.freebsd.org) Message-Id: <201407151807.s6FI78Vf016624@svn.freebsd.org> From: Kris Moore Date: Tue, 15 Jul 2014 18:07:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361993 - head/emulators/pipelight 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: Tue, 15 Jul 2014 18:07:09 -0000 Author: kmoore Date: Tue Jul 15 18:07:08 2014 New Revision: 361993 URL: http://svnweb.freebsd.org/changeset/ports/361993 QAT: https://qat.redports.org/buildarchive/r361993/ Log: - Cleanup Makefile includes, remove depreciated MAN1= entry Modified: head/emulators/pipelight/Makefile Modified: head/emulators/pipelight/Makefile ============================================================================== --- head/emulators/pipelight/Makefile Tue Jul 15 18:06:28 2014 (r361992) +++ head/emulators/pipelight/Makefile Tue Jul 15 18:07:08 2014 (r361993) @@ -3,6 +3,7 @@ PORTNAME= pipelight DISTVERSION= 0.2.7.1 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= https://bitbucket.org/mmueller2012/pipelight/get/ DISTNAME= v${DISTVERSION} @@ -22,16 +23,6 @@ RUN_DEPENDS= ${LOCALBASE}/bin/bash:${POR ${LOCALBASE}/bin/flock:${PORTSDIR}/sysutils/flock \ ${LOCALBASE}/bin/gpg2:${PORTSDIR}/security/gnupg -.include - -.if ${ARCH} == "i386" -BUILD_DEPENDS+= ${LOCALBASE}/bin/wine:${PORTSDIR}/emulators/wine-devel -RUN_DEPENDS+= ${LOCALBASE}/bin/wine:${PORTSDIR}/emulators/wine-devel -.elif ${ARCH} == "amd64" -BUILD_DEPENDS+= ${LOCALBASE}/bin/wine:${PORTSDIR}/emulators/i386-wine-devel -RUN_DEPENDS+= ${LOCALBASE}/bin/wine:${PORTSDIR}/emulators/i386-wine-devel -.endif - WRKSRC= ${WRKDIR}/mmueller2012-pipelight-e2362eb15df6 USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include @@ -42,11 +33,19 @@ CONFIGURE_ARGS+=--verbose --wine-path=${ USES= compiler:c11 gmake MAKE_JOBS_UNSAFE=yes -MAN1= pipelight-plugin.1 +.include + +.if ${ARCH} == "i386" +BUILD_DEPENDS+= ${LOCALBASE}/bin/wine:${PORTSDIR}/emulators/wine-devel +RUN_DEPENDS+= ${LOCALBASE}/bin/wine:${PORTSDIR}/emulators/wine-devel +.elif ${ARCH} == "amd64" +BUILD_DEPENDS+= ${LOCALBASE}/bin/wine:${PORTSDIR}/emulators/i386-wine-devel +RUN_DEPENDS+= ${LOCALBASE}/bin/wine:${PORTSDIR}/emulators/i386-wine-devel +.endif pre-configure: ${REINPLACE_CMD} "s|DISTVERSION|v${DISTVERSION}|g" ${WRKSRC}/src/windows/Makefile ${REINPLACE_CMD} "s|DISTVERSION|v${DISTVERSION}|g" ${WRKSRC}/src/winecheck/Makefile ${REINPLACE_CMD} "s|/share/man/man1|/man/man1|g" ${WRKSRC}/Makefile -.include +.include