From owner-svn-ports-head@FreeBSD.ORG Tue Jan 28 14:31:24 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 12089772; Tue, 28 Jan 2014 14:31:24 +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 D94A012EB; Tue, 28 Jan 2014 14:31:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0SEVN70014517; Tue, 28 Jan 2014 14:31:23 GMT (envelope-from mat@svn.freebsd.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0SEVNJ5014513; Tue, 28 Jan 2014 14:31:23 GMT (envelope-from mat@svn.freebsd.org) Message-Id: <201401281431.s0SEVNJ5014513@svn.freebsd.org> From: Mathieu Arnold Date: Tue, 28 Jan 2014 14:31:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341579 - in head/textproc/hgrep: . 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: Tue, 28 Jan 2014 14:31:24 -0000 Author: mat Date: Tue Jan 28 14:31:22 2014 New Revision: 341579 URL: http://svnweb.freebsd.org/changeset/ports/341579 QAT: https://qat.redports.org/buildarchive/r341579/ Log: Support staging. Sponsored by: Absolight Added: head/textproc/hgrep/files/ head/textproc/hgrep/files/patch-Makefile (contents, props changed) Modified: head/textproc/hgrep/Makefile head/textproc/hgrep/pkg-plist Modified: head/textproc/hgrep/Makefile ============================================================================== --- head/textproc/hgrep/Makefile Tue Jan 28 14:26:43 2014 (r341578) +++ head/textproc/hgrep/Makefile Tue Jan 28 14:31:22 2014 (r341579) @@ -12,8 +12,4 @@ COMMENT= A nice Highlighting Hack for gr WRKSRC= ${WRKDIR}/hgrep -MAN1= hgrep.1 -MANCOMPRESSED= no - -NO_STAGE= yes .include Added: head/textproc/hgrep/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/hgrep/files/patch-Makefile Tue Jan 28 14:31:22 2014 (r341579) @@ -0,0 +1,39 @@ +--- ./Makefile.orig 1999-10-05 02:43:40.000000000 +0000 ++++ ./Makefile 2014-01-28 14:29:53.000000000 +0000 +@@ -8,10 +8,9 @@ + + # CONFIGURE: your favorite C compiler + #CC = cc +-CC = gcc -ansi -pedantic -fpcc-struct-return + + # CONFIGURE: your favorite C flags +-CFLAGS = -O ++CFLAGS = -O -ansi -pedantic -fpcc-struct-return + #CFLAGS = -g -O + + # CONFIGURE: your favorite loader flags +@@ -51,18 +50,18 @@ + + install.bin: all + for i in $(EXES) ; do \ +- rm -f $(BINDIR)/$$i ; \ +- cp $$i $(BINDIR) ; \ ++ rm -f $(DESTDIR)$(BINDIR)/$$i ; \ ++ cp $$i $(DESTDIR)$(BINDIR) ; \ + done + for l in a e f n ; do \ +- rm -f $(BINDIR)/h$${l}grep ; \ +- ln -s $(BINDIR)/hgrep $(BINDIR)/h$${l}grep ; \ ++ rm -f $(DESTDIR)$(BINDIR)/h$${l}grep ; \ ++ ln -s $(BINDIR)/hgrep $(DESTDIR)$(BINDIR)/h$${l}grep ; \ + done + + install.man: + for i in $(MANS) ; do \ +- rm -f $(MANDIR)/$$i.1 ; \ +- cp $$i.1 $(MANDIR) ; \ ++ rm -f $(DESTDIR)$(MANDIR)/$$i.1 ; \ ++ cp $$i.1 $(DESTDIR)$(MANDIR) ; \ + done + + clean: Modified: head/textproc/hgrep/pkg-plist ============================================================================== --- head/textproc/hgrep/pkg-plist Tue Jan 28 14:26:43 2014 (r341578) +++ head/textproc/hgrep/pkg-plist Tue Jan 28 14:31:22 2014 (r341579) @@ -3,3 +3,4 @@ bin/hagrep bin/hegrep bin/hfgrep bin/hngrep +man/man1/hgrep.1.gz