From owner-svn-ports-head@FreeBSD.ORG Thu Jun 5 11:10:09 2014 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 9F350D5F; Thu, 5 Jun 2014 11:10:09 +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 8D4412BDA; Thu, 5 Jun 2014 11:10:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s55BA9H5099974; Thu, 5 Jun 2014 11:10:09 GMT (envelope-from pawel@svn.freebsd.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s55BA97d099972; Thu, 5 Jun 2014 11:10:09 GMT (envelope-from pawel@svn.freebsd.org) Message-Id: <201406051110.s55BA97d099972@svn.freebsd.org> From: Pawel Pekala Date: Thu, 5 Jun 2014 11:10:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356626 - in head/mail/pop3gwd: . 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.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: Thu, 05 Jun 2014 11:10:09 -0000 Author: pawel Date: Thu Jun 5 11:10:08 2014 New Revision: 356626 URL: http://svnweb.freebsd.org/changeset/ports/356626 QAT: https://qat.redports.org/buildarchive/r356626/ Log: Add staging support Modified: head/mail/pop3gwd/Makefile head/mail/pop3gwd/files/patch-makefile Modified: head/mail/pop3gwd/Makefile ============================================================================== --- head/mail/pop3gwd/Makefile Thu Jun 5 10:36:17 2014 (r356625) +++ head/mail/pop3gwd/Makefile Thu Jun 5 11:10:08 2014 (r356626) @@ -11,5 +11,4 @@ COMMENT= App-level proxy for Mail retrie WRKSRC= ${WRKDIR}/${PORTNAME} -NO_STAGE= yes .include Modified: head/mail/pop3gwd/files/patch-makefile ============================================================================== --- head/mail/pop3gwd/files/patch-makefile Thu Jun 5 10:36:17 2014 (r356625) +++ head/mail/pop3gwd/files/patch-makefile Thu Jun 5 11:10:08 2014 (r356626) @@ -1,12 +1,12 @@ -# $OpenBSD: patch-makefile,v 1.1.1.1 2000/01/03 02:22:43 kevlo Exp $ ---- Makefile.orig Thu Jun 19 19:06:28 1997 -+++ Makefile Wed Dec 29 12:25:33 1999 -@@ -3,22 +3,23 @@ +--- Makefile.orig 1997-06-19 11:06:28.000000000 +0200 ++++ Makefile 2014-06-05 12:12:33.861436472 +0200 +@@ -2,25 +2,26 @@ + # ------------------- -CC=gcc -+#CC=gcc -CFLAGS= -O2 ++#CC=gcc +CFLAGS+= -Wall MODULES=main.o parse_cmd_line.o get_remote_data.o connect_login.o io.o relay_data.o DOCS=README COPYING HISTORY @@ -27,7 +27,11 @@ install: - make - cp -f in.pop3gwd $(INSTALL_DIR)/ -+ cp -f in.pop3gwd $(INSTALL_DIR)/pop3gwd - [ -d $(DOC_DIR) ] || mkdir $(DOC_DIR) - cp -f $(DOCS) $(DOC_DIR) +- [ -d $(DOC_DIR) ] || mkdir $(DOC_DIR) +- cp -f $(DOCS) $(DOC_DIR) ++ $(BSD_INSTALL_PROGRAM) in.pop3gwd $(DESTDIR)$(INSTALL_DIR)/pop3gwd ++ [ -d $(DOC_DIR) ] || mkdir $(DESTDIR)$(DOC_DIR) ++ $(BSD_INSTALL_DATA) $(DOCS) $(DESTDIR)$(DOC_DIR) + main.o: pop3-gw.h main.c + $(CC) $(CFLAGS) -c -o main.o main.c