From owner-svn-ports-head@FreeBSD.ORG Sun Jun 8 03:25:44 2014 Return-Path: Delivered-To: svn-ports-head@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 A8F3F8D7; Sun, 8 Jun 2014 03:25:44 +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 95FE42D11; Sun, 8 Jun 2014 03:25:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s583PiuC099023; Sun, 8 Jun 2014 03:25:44 GMT (envelope-from vanilla@svn.freebsd.org) Received: (from vanilla@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s583Pi6w099022; Sun, 8 Jun 2014 03:25:44 GMT (envelope-from vanilla@svn.freebsd.org) Message-Id: <201406080325.s583Pi6w099022@svn.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Jun 2014 03:25:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356969 - head/games/super_methane_brothers 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.18 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: Sun, 08 Jun 2014 03:25:44 -0000 Author: vanilla Date: Sun Jun 8 03:25:44 2014 New Revision: 356969 URL: http://svnweb.freebsd.org/changeset/ports/356969 QAT: https://qat.redports.org/buildarchive/r356969/ Log: 1: Stagify. 2: convert to new LIB_DEPENDS format. Modified: head/games/super_methane_brothers/Makefile Modified: head/games/super_methane_brothers/Makefile ============================================================================== --- head/games/super_methane_brothers/Makefile Sun Jun 8 03:11:56 2014 (r356968) +++ head/games/super_methane_brothers/Makefile Sun Jun 8 03:25:44 2014 (r356969) @@ -14,8 +14,8 @@ COMMENT= Port of the Amiga platform game LICENSE= GPLv2 -LIB_DEPENDS= clan23Core:${PORTSDIR}/devel/clanlib \ - execinfo:${PORTSDIR}/devel/libexecinfo +LIB_DEPENDS= libclan23Core.so:${PORTSDIR}/devel/clanlib \ + libexecinfo.so:${PORTSDIR}/devel/libexecinfo USES= gmake pkgconfig USE_GCC= yes @@ -29,8 +29,6 @@ LDFLAGS+= -L${LOCALBASE}/lib -lexecinfo PORTDOCS= * PLIST_FILES= bin/methane -NO_STAGE= yes - OPTIONS_DEFINE= DOCS .include @@ -44,12 +42,12 @@ post-patch: s|gcc|$${CXX}|' ${WRKSRC}/Makefile do-install: - (cd ${WRKDIR}/${DISTNAME} && ${INSTALL_PROGRAM} methane ${PREFIX}/bin) - ${CHGRP} games ${PREFIX}/bin/methane - ${CHMOD} g+s ${PREFIX}/bin/methane + (cd ${WRKDIR}/${DISTNAME} && ${INSTALL_PROGRAM} methane ${STAGEDIR}${PREFIX}/bin) + ${CHGRP} games ${STAGEDIR}${PREFIX}/bin/methane + ${CHMOD} g+s ${STAGEDIR}${PREFIX}/bin/methane .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @(cd ${WRKDIR}/${DISTNAME}/docs && ${COPYTREE_SHARE} . ${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @(cd ${WRKDIR}/${DISTNAME}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) .endif @${SETENV} PKG_PREFIX=${PREFIX} \ ${SH} ${PKGREQ} ${PKGNAME} POST-INSTALL