From owner-svn-ports-head@FreeBSD.ORG Tue Nov 12 20:53:46 2013 Return-Path: Delivered-To: svn-ports-head@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 D822794B; Tue, 12 Nov 2013 20:53:46 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C7247259F; Tue, 12 Nov 2013 20:53:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rACKrkbH003162; Tue, 12 Nov 2013 20:53:46 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rACKrk27003161; Tue, 12 Nov 2013 20:53:46 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201311122053.rACKrk27003161@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Tue, 12 Nov 2013 20:53:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r333620 - head/games/xasteroids X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Nov 2013 20:53:46 -0000 Author: danilo Date: Tue Nov 12 20:53:46 2013 New Revision: 333620 URL: http://svnweb.freebsd.org/changeset/ports/333620 Log: - Add stage support Modified: head/games/xasteroids/Makefile Modified: head/games/xasteroids/Makefile ============================================================================== --- head/games/xasteroids/Makefile Tue Nov 12 20:50:59 2013 (r333619) +++ head/games/xasteroids/Makefile Tue Nov 12 20:53:46 2013 (r333620) @@ -23,10 +23,9 @@ USE_XORG= x11 xext CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -lXext -lX11 -lm -MAN6= xasteroids.6 -PLIST_FILES= bin/xasteroids +PLIST_FILES= bin/xasteroids \ + man/man6/xasteroids.6.gz -NO_STAGE= yes post-extract: @${LN} -sf xast.man ${WRKSRC}/xasteroids.6 @@ -35,7 +34,7 @@ do-build: ${LDFLAGS}) do-install: - (cd ${WRKSRC} && ${INSTALL_PROGRAM} xasteroids ${PREFIX}/bin) - (cd ${WRKSRC} && ${INSTALL_MAN} xasteroids.6 ${MAN6PREFIX}/man/man6) + (cd ${WRKSRC} && ${INSTALL_PROGRAM} xasteroids ${STAGEDIR}${PREFIX}/bin) + (cd ${WRKSRC} && ${INSTALL_MAN} xasteroids.6 ${STAGEDIR}${MAN6PREFIX}/man/man6) .include