From owner-svn-ports-all@FreeBSD.ORG Sun Jun 1 17:06:56 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 321A9C95; Sun, 1 Jun 2014 17:06:56 +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 1ED0D2E19; Sun, 1 Jun 2014 17:06:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s51H6tGH070924; Sun, 1 Jun 2014 17:06:55 GMT (envelope-from grembo@svn.freebsd.org) Received: (from grembo@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s51H6t3D070923; Sun, 1 Jun 2014 17:06:55 GMT (envelope-from grembo@svn.freebsd.org) Message-Id: <201406011706.s51H6t3D070923@svn.freebsd.org> From: Michael Gmelin Date: Sun, 1 Jun 2014 17:06:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356157 - head/emulators/zsnes 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: Sun, 01 Jun 2014 17:06:56 -0000 Author: grembo Date: Sun Jun 1 17:06:55 2014 New Revision: 356157 URL: http://svnweb.freebsd.org/changeset/ports/356157 QAT: https://qat.redports.org/buildarchive/r356157/ Log: Stagify. Note that this won't fix the port to build on 10 or 11. Reviewed by: flo (mentor) Approved by: flo (mentor) Modified: head/emulators/zsnes/Makefile Modified: head/emulators/zsnes/Makefile ============================================================================== --- head/emulators/zsnes/Makefile Sun Jun 1 16:43:03 2014 (r356156) +++ head/emulators/zsnes/Makefile Sun Jun 1 17:06:55 2014 (r356157) @@ -14,7 +14,7 @@ COMMENT= Intel x86 only Super Nintendo E # This must be >= 0.98! BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm -LIB_DEPENDS= png15:${PORTSDIR}/graphics/png +LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png ONLY_FOR_ARCHS= i386 ONLY_FOR_ARCHS_REASON= non-portable, for a portable emulator see emulators/snes9x @@ -32,14 +32,12 @@ USES= gmake tar:bzip2 GNU_CONFIGURE= yes CONFIGURE_ARGS+= --disable-cpucheck -MAN1= zsnes.1 -PLIST_FILES= bin/zsnes +PLIST_FILES= bin/zsnes man/man1/zsnes.1.gz CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15 CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15 LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes .include .if ${PORT_OPTIONS:MDEBUGGER} @@ -83,7 +81,7 @@ post-patch: 's|-O3||g' ${WRKSRC}/${CONFIGURE_SCRIPT} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/zsnes ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/linux/zsnes.1 ${MANPREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/zsnes ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/linux/zsnes.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include