From owner-svn-ports-head@FreeBSD.ORG Sun Feb 16 18:39:00 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 165E5361; Sun, 16 Feb 2014 18:39:00 +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 EEECB141A; Sun, 16 Feb 2014 18:38:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1GIcxPr078971; Sun, 16 Feb 2014 18:38:59 GMT (envelope-from danilo@svn.freebsd.org) Received: (from danilo@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1GIcx6c078969; Sun, 16 Feb 2014 18:38:59 GMT (envelope-from danilo@svn.freebsd.org) Message-Id: <201402161838.s1GIcx6c078969@svn.freebsd.org> From: Danilo Egea Gondolfo Date: Sun, 16 Feb 2014 18:38:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344619 - in head/math/gexpr: . files 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.17 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, 16 Feb 2014 18:39:00 -0000 Author: danilo Date: Sun Feb 16 18:38:59 2014 New Revision: 344619 URL: http://svnweb.freebsd.org/changeset/ports/344619 QAT: https://qat.redports.org/buildarchive/r344619/ Log: - Add stage support - Improve COMMENT - Add LICENSE Modified: head/math/gexpr/Makefile head/math/gexpr/files/patch-Makefile Modified: head/math/gexpr/Makefile ============================================================================== --- head/math/gexpr/Makefile Sun Feb 16 18:35:45 2014 (r344618) +++ head/math/gexpr/Makefile Sun Feb 16 18:38:59 2014 (r344619) @@ -9,12 +9,12 @@ MASTER_SITES= ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= apps/math/calc MAINTAINER= ports@FreeBSD.org -COMMENT= A shell calculator +COMMENT= Shell calculator -MAN1= gexpr.1 -PLIST_FILES= bin/gexpr +LICENSE= GPLv2 + +PLIST_FILES= bin/gexpr man/man1/gexpr.1.gz -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s,/usr/local,${PREFIX}," ${WRKSRC}/Makefile Modified: head/math/gexpr/files/patch-Makefile ============================================================================== --- head/math/gexpr/files/patch-Makefile Sun Feb 16 18:35:45 2014 (r344618) +++ head/math/gexpr/files/patch-Makefile Sun Feb 16 18:38:59 2014 (r344619) @@ -1,5 +1,5 @@ ---- Makefile.orig Sat Feb 13 02:28:35 1999 -+++ Makefile Sun Jul 6 20:06:03 2003 +--- ./Makefile.orig 1999-02-12 15:28:35.000000000 -0200 ++++ ./Makefile 2014-02-16 15:38:19.000000000 -0300 @@ -1,11 +1,10 @@ # Makefile for gexpr # Last updated: 10 February 1999 @@ -14,3 +14,14 @@ all: $(GEXPR) +@@ -31,8 +30,8 @@ + $(CC) $(OPTS) -c gexpr.c + + install: +- cp -f gexpr /usr/local/bin; +- cp -f gexpr.1 /usr/local/man/man1 ++ install -s gexpr ${DESTDIR}/usr/local/bin; ++ install gexpr.1 ${DESTDIR}/usr/local/man/man1 + + clean: + rm -f *.o core