From owner-svn-ports-all@FreeBSD.ORG Thu Jun 26 20:06:38 2014 Return-Path: Delivered-To: svn-ports-all@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 1A22E343; Thu, 26 Jun 2014 20:06:38 +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 07A862322; Thu, 26 Jun 2014 20:06:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5QK6bef088867; Thu, 26 Jun 2014 20:06:37 GMT (envelope-from lth@svn.freebsd.org) Received: (from lth@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5QK6bIX088866; Thu, 26 Jun 2014 20:06:37 GMT (envelope-from lth@svn.freebsd.org) Message-Id: <201406262006.s5QK6bIX088866@svn.freebsd.org> From: Lars Thegler Date: Thu, 26 Jun 2014 20:06:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r359416 - head/devel/easygit 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: Thu, 26 Jun 2014 20:06:38 -0000 Author: lth Date: Thu Jun 26 20:06:37 2014 New Revision: 359416 URL: http://svnweb.freebsd.org/changeset/ports/359416 QAT: https://qat.redports.org/buildarchive/r359416/ Log: - Added stage support [1] - Drop maintainership PR: 191289 [1] Submitted by: joe@thrallingpenguin.com Modified: head/devel/easygit/Makefile Modified: head/devel/easygit/Makefile ============================================================================== --- head/devel/easygit/Makefile Thu Jun 26 20:04:03 2014 (r359415) +++ head/devel/easygit/Makefile Thu Jun 26 20:06:37 2014 (r359416) @@ -9,21 +9,22 @@ DISTNAME= eg EXTRACT_SUFX= # none EXTRACT_ONLY= # none -MAINTAINER= lth@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Easy wrapper for git RUN_DEPENDS= git:${PORTSDIR}/devel/git DIST_SUBDIR= eg/${PORTVERSION}_${PORTREVISION} -USES= perl5 +USES= perl5 shebangfix +SHEBANG_FILES= ${_DISTDIR}/eg USE_PERL5= run NO_WRKSUBDIR= yes NO_BUILD= yes PLIST_FILES= bin/eg bin/easygit -NO_STAGE= yes do-install: - ${INSTALL_SCRIPT} ${_DISTDIR}/eg ${PREFIX}/bin/ - ${LN} -s ${PREFIX}/bin/eg ${PREFIX}/bin/easygit + ${MKDIR} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${_DISTDIR}/eg ${STAGEDIR}${PREFIX}/bin/ + cd ${STAGEDIR}${PREFIX}/bin && ${LN} -s ./eg ${STAGEDIR}${PREFIX}/bin/easygit .include